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.
youtube-uploadis a Python module, what possible reason could you have for executing it from the command line instead ofimporting it? – agf Aug 3 '11 at 3:24temporary_file_path. Why post a new question if you didn't do this? – agf Aug 3 '11 at 3:26