Re: [FFmpeg-user] Zoom out/scale down dynamically

2018-09-13 Thread astian
Carl Eugen Hoyos: > 2018-09-13 3:28 GMT+02:00, astian : >> Carl Eugen Hoyos:> 2018-09-10 6:04 GMT+02:00, astian : >>> I want to dynamically (per frame) zoom out/scale down a video below 100% size. >>> >>> Isn't it sufficient to pad first, and use zoompan in a later >>> filter? >> >> Do

Re: [FFmpeg-user] Zoom out/scale down dynamically

2018-09-13 Thread Carl Eugen Hoyos
2018-09-13 3:28 GMT+02:00, astian : > Carl Eugen Hoyos:> 2018-09-10 6:04 GMT+02:00, astian : >> >>> I want to dynamically (per frame) zoom out/scale down >>> a video below 100% size. >> >> Isn't it sufficient to pad first, and use zoompan in a later >> filter? > > Do you mean work in reverse?

Re: [FFmpeg-user] (no subject)

2018-09-13 Thread Carl Eugen Hoyos
2018-09-13 18:32 GMT+02:00, Peter Gusev : > Video plays back correctly color-wise and size-wise. However > it "scrolls" vertically all the time Does this also happen if you only use ffplay? $ ffplay -f avfoundation -framerate 25 -pixel_format uyvy422 -i "0" Please test current FFmpeg git head.

[FFmpeg-user] CSV to KLV stream into mpeg-ts file

2018-09-13 Thread Poulet CotCot
Hello, Do you know if ffmpeg can encode klv data from a csv file and inject it into an existing mpeg ts file? (Or any other appropiate container?) Thank you, Best Regards, Andrew ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org

Re: [FFmpeg-user] h.265 streaming to youtube

2018-09-13 Thread Michael Shaffer
Thanks for the replies. I guess I'll just have to stream it in h.264. That seems to work fine. On Sat, Sep 8, 2018 at 6:10 PM, DopeLabs wrote: > it would also help if youtube actually supported hevc ingestion... > > https://support.google.com/youtube/answer/2853702?hl=en > > > > > On Sep 8,

Re: [FFmpeg-user] Wanna to apply effect and play video at same time

2018-09-13 Thread Lou Logan
On Thu, Sep 13, 2018, at 6:38 AM, shreyas vaghela wrote: > It is possible to give full command with example to i better to understand > ,Bcz i new in ffmpeg.it would be great help from your side. Carl and I both gave full example commands. ___

Re: [FFmpeg-user] FFMPEG failing in AWS Lambda

2018-09-13 Thread Carl Eugen Hoyos
2018-09-13 8:05 GMT+02:00, Zaid Amir : >> Every video file or only certain types? > > I am only interested in H264 encoded I don't know if the issue is the file reading or the demuxer, feel free to test a few different file types like avi, asf, mov, mpegts. > files which I have so far tried

Re: [FFmpeg-user] Piping FFMPEG out makes loosing file duration

2018-09-13 Thread Carl Eugen Hoyos
2018-09-13 11:35 GMT+02:00, Jonathan Sillan : > ffmpeg -i myFile.mxf -vcodec copy -filter_complex > "[0:1:a]channelsplit[left1][right1];[left1]asplit=1[a1];[right1]asplit=1[a2]" > -map 0:v:0 -map "[a1]" -map "[a2]" -c:a:0 pcm_s24le -b:a:0 1152k -ar:0 48k > -c:a:1 pcm_s24le -b:a:1 1152k -ar:1

Re: [FFmpeg-user] Wanna to apply effect and play video at same time

2018-09-13 Thread shreyas vaghela
It is possible to give full command with example to i better to understand ,Bcz i new in ffmpeg.it would be great help from your side. On Wed, Sep 12, 2018 at 2:58 AM Carl Eugen Hoyos wrote: > 2018-09-11 22:02 GMT+02:00, Lou Logan : > > On Tue, Sep 11, 2018, at 9:33 AM, shreyas vaghela wrote: >

Re: [FFmpeg-user] IMM5 codec for transcoding on the Mac

2018-09-13 Thread Paul B Mahol
On 9/13/18, Jason Sellers wrote: > Hi, > > I was wondering if there was any development, ongoing or planned for > integrating the IMM5 codec into the Mac version of FFmpeg. No, unless someone step in with request to sponsor developement. ___

Re: [FFmpeg-user] When using h264_cuvid, memory allocation differs between different nvidia GPUs

2018-09-13 Thread Panagiotis Malakoudis
Lowering surfaces in GTX 1070 Ti to 2 only reduces memory to 129MB, so it is still not the same as GTX 1050 Ti. Also, 2 surfaces are not enough for correct decoding, decoding has errors. Using nvdec with command: ffmpeg -hwaccel nvdec -f mpegts -i

Re: [FFmpeg-user] Dealing with incomplete HEVC/h265 video

2018-09-13 Thread Aviv Hurvitz
Thanks Gyan, we'll give mp4box a shot. On Wed, Sep 12, 2018 at 12:51 PM Gyan wrote: > On Wed, Sep 12, 2018 at 3:00 PM Aviv Hurvitz > wrote: > > > > > I'll try to delve into the HEVC stream format, maybe I'll see a record of > > the skipping in there. I hope there is a frame index or time stamp

Re: [FFmpeg-user] When using h264_cuvid, memory allocation differs between different nvidia GPUs

2018-09-13 Thread Dennis Mungai
Hello there, On the system using more VRAM, can you lower the -surfaces value from 8 to ~6? Also, in place of h264_cuvid, use nvdec instead. Example: ffmpeg -c:v nvdec -surfaces 8 -f mpegts -i https://samples.ffmpeg.org/V-codecs/h264/HD-h264.ts -vcodec libx264 -preset veryfast -crf 23 -c:a

[FFmpeg-user] Piping FFMPEG out makes loosing file duration

2018-09-13 Thread Jonathan Sillan
In order to dynamically encode file and upload them to a server, I output ffmpeg to pipe:1 and use curl to post the result to a file. The problem is when I use MediaInfo to check the file, it appears as 'Open / Incomplete' and the duration is no longer available. Is there a solution to make

[FFmpeg-user] When using h264_cuvid, memory allocation differs between different nvidia GPUs

2018-09-13 Thread Panagiotis Malakoudis
I am using h264_cuvid in some systems. GTX10xx cards have the power to decode many full hd streams concurrently. I have found that memory allocated in the GPU differs between GTX 1050 Ti and GTX 1070 Ti. With the same command, same settings, ffmpeg allocates only 87MB in GTX 1050 Ti while it

Re: [FFmpeg-user] FFMPEG failing in AWS Lambda

2018-09-13 Thread Zaid Amir
> Every video file or only certain types? I am only interested in H264 encoded files which I have so far tried around 40 of them and they are all failing. Did not try other encodings though as they are of no interest to me. >Can you run "md5sum" on the target system? Lambda does no have md5sum