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

2018-09-17 Thread Carl Eugen Hoyos
2018-09-17 16:37 GMT+02:00, astian : > Still, my original 'why' question remains. Why not directly > allowing zoom ratios < 1? padding is free compared to zoompan and zoompan wouldn't know what to show outside of the original video. (Paul may correct me here.) > Do I have to ask in ffmpeg-devel

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

2018-09-17 Thread astian
Gyan: > On Fri, Sep 14, 2018 at 9:29 AM astian wrote: > >> Well, I'm not sure what you mean. Pad doesn't seem very dynamic to >> me, I know that it has an eval=frame option, but according to the >> manual there is no frame-number variable that I could exploit. > > Pad the video beforehand, usually

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

2018-09-13 Thread Gyan
On Fri, Sep 14, 2018 at 9:29 AM astian wrote: > > > Well, I'm not sure what you mean. Pad doesn't seem very dynamic to me, I > know that it has an eval=frame option, but according to the manual there > is no frame-number variable that I could exploit. > Pad the video beforehand, usually with a t

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 yo

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? Scale

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

2018-09-12 Thread 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? Scale down, pad, zoompan in reverse, then reverse th

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

2018-09-12 Thread astian
Gyan: > On Mon, Sep 10, 2018 at 9:34 AM astian wrote: > >> >> I want to dynamically (per frame) zoom out/scale down a video below 100% >> size. >> It seems that the zoompan filter would be ideal for this case, but >> unfortunately it clamps the zoom ratio to [1,10], that is, it only zooms >> in/s

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

2018-09-12 Thread 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? Carl Eugen ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org h

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

2018-09-12 Thread Gyan
On Mon, Sep 10, 2018 at 9:34 AM astian wrote: > > I want to dynamically (per frame) zoom out/scale down a video below 100% > size. > It seems that the zoompan filter would be ideal for this case, but > unfortunately it clamps the zoom ratio to [1,10], that is, it only zooms > in/scales up. Why?

[FFmpeg-user] Zoom out/scale down dynamically

2018-09-09 Thread astian
Hello, I want to dynamically (per frame) zoom out/scale down a video below 100% size. It seems that the zoompan filter would be ideal for this case, but unfortunately it clamps the zoom ratio to [1,10], that is, it only zooms in/scales up. Why? And what can I use instead? Thanks. __