Skip to content

Commit

Permalink
Updated Flash Video upload paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Andre Engelbrecht committed Jun 3, 2010
1 parent c9de8b8 commit 1b7d781
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/videostream/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,19 +96,19 @@ class EmbedVideo(Video):

class FlashVideo(Video):
"""
This model is what was once called "VideoStream". Since we want to support videos
from other sources as well, this model was renamed to FlashVideo.
This model is what was once called "VideoStream". Since we want to support
videos from other sources as well, this model was renamed to FlashVideo.
"""
videoupload = models.FileField(
upload_to="videos/source/",
upload_to="videos/flash/source/",
null=True,
blank=True,
help_text="Make sure that the video you are uploading has a audo bitrate of at least 16. The encoding wont function on a lower audio bitrate."
)

flvfile = models.FileField(
upload_to="videos/flv/",
upload_to="videos/flash/flv/",
null=True,
blank=True,
help_text="If you already have an encoded flash video, upload it here (no encoding needed)."
Expand All @@ -117,7 +117,7 @@ class FlashVideo(Video):
thumbnail = models.ImageField(
blank=True,
null=True,
upload_to="videos/thumbnails/",
upload_to="videos/flash/thumbnails/",
help_text="If you uploaded a flv clip that was already encoded, you will need to upload a thumbnail as well. If you are planning use django-video to encode, you dont have to upload a thumbnail, as django-video will create it for you"
)

Expand Down

0 comments on commit 1b7d781

Please sign in to comment.