I'm working on a project where a user can submit a link to a sound file hosted on another site through a form. I'd like to download that file to my server and make it available for streaming. I might have to upload it to Amazon S3. I'm doing this in Django but I'm new to Python. Can anyone point me in the right direction for how to do this?

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Here's how I would do it:

  1. Create a model like SoundUpload like:

    class SoundUpload(models.Model):
        STATUS_CHOICES = (
            (0, 'Unprocessed'),
            (1, 'Ready'),
            (2, 'Bad File'),
        )
        uploaded_by = models.ForeignKey(User)
        original_url = models.URLField(verify_true=False)
        download_url = models.URLField(null=True, blank=True)
        status = models.IntegerField(choices=STATUS_CHOICES, default=0)
    
  2. Next create the view w/a ModelForm and save the info to the database.

  3. Hook up a post-save signal on the SoundUpload model that kicks of a django-celery Task. This will ensure that the UI responds while you're processing all the data.

    def process_new_sound_upload(sender, **kwargs):
       # Bury to prevent circular dependency issues.
       from your_project.tasks import ProcessSoundUploadTask
       if kwargs.get('created', False):
            instance = kwargs.get('instance')
            ProcessSoundUploadTask.delay(instance.id)
    
    
    post_save.connect(process_new_sound_upload, sender=SoundUpload)
    
  4. In the ProcessSoundUploadTask task you'll want to:

    • Lookup the model object based on the passed in id.
    • Using pycurl download the file to a temporary folder (w/very limitied permissions).
    • Use ffmpeg (or similar) to ensure it's a real sound file. Do any other virus style checks here (depends on how much you trust your users). If it turn out to be a bad file set the SoundUpload.status field to 2 (Bad File), save it, and return to stop processing the task. Perhaps send out an email here.

    • Use boto to upload the file to s3. See this example.

    • Update the SoundUpload.download_url to be the s3 url, the status to be "processed" and save the object.
    • Do any other post-processing (sending notification emails, etc.)

The key to this approach is using django-celery. Once the task is kicked off through the post_save signal the UI can return, thus creating a very "snappy" experience. This task gets put onto an AMQP message queue that can be processed by multiple workers (dedicated EC2 instances, etc.), so you'll be able to scale without too much trouble. This may seem like a bit overkill, but it's really not as much work as it seems.

link|improve this answer
Thank you for a very detailed answer. I will try this approach. – knuckfubuck Sep 11 '10 at 1:50
@knuckfubuck: You're welcome. I'm happy to answer any issues you may run into as you develop this, just make sure you mark your comments w/my name, so I'll get notified. – sdolan Sep 11 '10 at 20:40
@sdolan: I tried adding a ChoiceField for status like in your example but I'm getting an error that there is no ChoiceField in models. I did some searching but can't figure out how to fix this. Can you help? – knuckfubuck Oct 4 '10 at 6:38
1  
@knuckfubuck: Sorry, it's IntegerField (ChoiceField is a forms Field, not models Field). I've updated my answer. – sdolan Oct 4 '10 at 7:38
1  
@knuckfubuck: Perhaps it's circular dependency problem? Try burying your from your_project.tasks import ProcessSoundUploadTask inside the process_new_sound_upload method so it gets resolved at runtime. Later you'll want to place that code in it's own signals.py file. – sdolan Oct 6 '10 at 6:48
show 8 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.