Possible Duplicate:
Problem accessing user uploaded video in temporary memory

So I've tried this question here and here but I might have been being too specific or misguided in my question.

Essentially I am trying to take a video submitted via <form> <input type='file'/> </form> and submit it to youtube.

I've looked at youtube direct, but it is a nightmare to setup and doesn't really provide the functionality I'm looking for. I've looked at the youtube data api but as stated in the previous question the docs are somewhat lacking in specificity regarding implementation in python.

If anyone could walk me through this or point me in the direction of a great tutorial I would be forever grateful.

My previous questions pretty well outline what I am currently trying but here it is for quick reference:

html:

<form method='post' action='/new/' enctype="multi-part/form-data">{% csrf_token %}
<input type='file' name='file' id='file'/>
<input type='submit' />
</form> 

django view (youtube-upload is a python module that uses the youtube data api to upload a file to youtube using the information specified):

 def upload_video(request):
     if request.method == 'POST':
         video = request.FILE['file']
         v = video.temporary_file_path
         command = 'youtube-upload --email=email@gmail.com --password=password --title=title --description=description --category=Sports ' + v   

         r=subprocess.Popen(command, stdout=subprocess.PIPE)

         vid = r.stdout.read()
     else:
         form = VideoForm()
         request.upload_handlers.pop(0)
     return render_to_response('create_check.html', RequestContext(request, locals() ) )

currently v=video.temporary_file_path draws the error 'InMemoryUploadedFile' object has no attribute 'temporary_file_path'.

Thanks for your help.

link|improve this question

78% accept rate
If youtube-upload is a Python module, what possible reason could you have for executing it from the command line instead of importing it? – agf Aug 3 '11 at 3:24
Also, the comments on your other questions (which you should have UPDATED, not posted again with slight variations) say that you need to save the file to your filesystem before trying to upload it, as smaller files will be stored in memory, and so don't have a temporary_file_path. Why post a new question if you didn't do this? – agf Aug 3 '11 at 3:26
I totally understand your criticism, let me try and explain. Module possibly isn't the right descriptor, youtube upload can be found here code.google.com/p/youtube-upload/wiki/Readme . I did update my old question but hadn't gotten any responses. Shortly after posting this question I learned about bounties so I completely understand if this question is voted to be closed (although I would obviously prefer that it was answered). In my previous question I tried to explain that I didn't understand the answer submitted. Again sorry for any problems. – Daniel Nill Aug 3 '11 at 3:40
feedback

closed as exact duplicate by agf, Mat, Jeff Atwood Aug 7 '11 at 9:59

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

up vote 0 down vote accepted

Your current problem is that your file hasn't been saved to disk, so how could it have a path?

There are two obvious solutions. First, you can change your FILE_UPLOAD_HANDLERS setting to have only one handler, like so:

("django.core.files.uploadhandler.TemporaryFileUploadHandler",)

so it will automatically save all files to disk.

Second, you could save the file manually by doing

with open('some/file/name', 'wb+') as destination:
    for chunk in video.chunks():
        destination.write(chunk)

and then just pass some/file/name in the arguments to youtube_upload.main_upload.

If you had read the Django Docs which answers to both of your first two questions pointed you to, you would know this.

The source of Youtube Upload makes it clear it can certainly be imported. Simply import youtube_upload with it in your path and then call it with youtube_upload.main_upload(arguments, output) where arguments is

['--email=email@gmail.com', '--password=password', '--title=title', '--description=description', '--category=Sports', 'path/to/file']

The output option defaults to sys.stdout, you can redirect it if you need it.

link|improve this answer
Now that I've finally gotten this figured out I agree that this question should probably be deleted as the elements of your answer that ended up working for me are covered in my other questions. – Daniel Nill Aug 7 '11 at 4:06
feedback

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