Re: Celery to process task and modify the model fields

2015-08-04 Thread Robin Lery
Hi, Thank you so very much kind sir. This really helped! On Wed, Jul 15, 2015 at 4:08 PM, 'Tom Evans' via Django users < django-users@googlegroups.com> wrote: > On Tue, Jul 14, 2015 at 9:15 PM, Robin Lery wrote: > > Yes. That time you were the one to guide me. I was looking

Re: Celery to process task and modify the model fields

2015-07-15 Thread 'Tom Evans' via Django users
On Tue, Jul 14, 2015 at 9:15 PM, Robin Lery wrote: > Yes. That time you were the one to guide me. I was looking at other projects > after that. > > I am just confused on how to get the video.mp4_720 to be the converted > video. Will you please help. > This is explained in

Re: Celery to process task and modify the model fields

2015-07-14 Thread Robin Lery
Yes. That time you were the one to guide me. I was looking at other projects after that. I am just confused on how to get the video.mp4_720 to be the converted video. Will you please help. Thank you. On Wed, Jul 15, 2015 at 1:15 AM, Vijay Khemlani wrote: > I remember this

Re: Celery to process task and modify the model fields

2015-07-14 Thread Vijay Khemlani
I remember this question from... february I think, what's changed since then? On Tue, Jul 14, 2015 at 3:29 PM, Robin Lery wrote: > I would like to convert video into mp4 using ffmpeg and celery for the > asynchronous task. When user uploads a video, it will be for the >

Celery to process task and modify the model fields

2015-07-14 Thread Robin Lery
I would like to convert video into mp4 using ffmpeg and celery for the asynchronous task. When user uploads a video, it will be for the original_video and save it. After that I want celery to convert it into a different version for the mp4_720 field. However I am confused on how to apply that