[FFmpeg-user] Uploading output of ffmpeg to AWS S3

2021-03-31 Thread David Power
> On Thu, Jun 07, 2018 at 17:39:06 +0530, tarun singhal wrote: > >* But this command is not working. *> > So what is it doing? Are there any error messages? > > Without knowing aws, let me guess: > >* ffmpeg -i -an -r 2 -t 60 -f image2 -vcodec mjpeg *> >* pipe:a_%0d.jpg | aws s3 cp - s3://ffmpegbu

Re: [FFmpeg-user] Uploading output of ffmpeg to AWS S3

2018-06-09 Thread Carl Eugen Hoyos
2018-06-07 14:09 GMT+02:00, tarun singhal : > ffmpeg -i -an -r 2 -t 60 -f image2 -vcodec mjpeg > pipe:a_%0d.jpg | aws s3 cp - s3://ffmpegbucket-1/ Assuming you can make the pipe work, use -f rawvideo instead of -f image2 Carl Eugen ___ ffmpeg-user mai

Re: [FFmpeg-user] Uploading output of ffmpeg to AWS S3

2018-06-07 Thread tarun singhal
On 7 June 2018 at 18:57, Moritz Barsnick wrote: > On Thu, Jun 07, 2018 at 17:39:06 +0530, tarun singhal wrote: > > But this command is not working. > > So what is it doing? Are there any error messages? > > Without knowing aws, let me guess: > > ffmpeg -i -an -r 2 -t 60 -f image2 -vcodec mjpeg >

Re: [FFmpeg-user] Uploading output of ffmpeg to AWS S3

2018-06-07 Thread Moritz Barsnick
On Thu, Jun 07, 2018 at 17:39:06 +0530, tarun singhal wrote: > But this command is not working. So what is it doing? Are there any error messages? Without knowing aws, let me guess: > ffmpeg -i -an -r 2 -t 60 -f image2 -vcodec mjpeg > pipe:a_%0d.jpg | aws s3 cp - s3://ffmpegbucket-1/ The docume

[FFmpeg-user] Uploading output of ffmpeg to AWS S3

2018-06-07 Thread tarun singhal
Hi Folks, I am trying following windows command ffmpeg -i -an -r 2 -t 60 -f image2 -vcodec mjpeg pipe:a_%0d.jpg | aws s3 cp - s3://ffmpegbucket-1/ The objective is read a live stream keep generating frames and as soon I get 1st frame transfer it to AWS S3 bucket. So this will be continous up