Lou, thank you, it works.
On Sat, Oct 22, 2016 at 8:21 PM, Lou wrote:
>
> Please avoid top-posting on this mailing list.
>
Sorry for that.
--
Martin Ždila
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-us
On Fri, Oct 21, 2016, at 04:23 AM, Martin Ždila wrote:
> Thanks Lou! Looks like hstack filter doesn't have a problem with the
> video
> changing dimensions :-)
More likely the omission of setpts filter.
> Now I have a problem to add logo. I've tried following command but the
> output is empty:
>
Thanks Lou! Looks like hstack filter doesn't have a problem with the video
changing dimensions :-)
Now I have a problem to add logo. I've tried following command but the
output is empty:
ffmpeg -y -i a.webm -i b.webm -i logo.png -filter_complex \
"[0:v] fps=25, scale=320x240:force_original_aspect
On Thu, 20 Oct 2016 14:46:56 +0200
Martin Ždila wrote:
> Even simpler example to reproduce the problem using just one file from the
> referenced tarball:
>
> ffmpeg -y -i b.webm -filter_complex "
> color=color=black:size=320x240 [bg];
> [0:v] setpts=PTS-STARTPTS,
> scale=320x240:force_origin
Even simpler example to reproduce the problem using just one file from the
referenced tarball:
ffmpeg -y -i b.webm -filter_complex "
color=color=black:size=320x240 [bg];
[0:v] setpts=PTS-STARTPTS,
scale=320x240:force_original_aspect_ratio=decrease [main];
[bg][main] overlay=x=160-overlay_w/2
Hello
I have two videos where one of them changes it resolution (rotation) twice.
I would like to join them side by side. I've used following command:
ffmpeg -y -i a.webm -i b.webm -filter_complex "
color=color=black:size=640x240 [base];
[0:v] setpts=PTS-STARTPTS,
scale=320x240:force_original