Re: [FFmpeg-user] Add time code AND a watermark in one pass

2018-02-27 Thread Kieran O Leary
On Tue, Feb 27, 2018 at 10:07 PM, Kevin Duffey wrote: > > Hi, thank you for the replies. > So here is my current script, and ill past some output below that. I don't see it.. ___ ffmpeg-user mailing list

Re: [FFmpeg-user] Add time code AND a watermark in one pass

2018-02-27 Thread Kevin Duffey
Hi, thank you for the replies. So here is my current script, and ill past some output below that. It is a windows .bat, but really the for loop is it, the ffmpeg call is the issue. I am NOT attempting to keep the video the same.. e.g. I want to convert it to h.265 AND add the timecode

Re: [FFmpeg-user] Add time code AND a watermark in one pass

2018-02-25 Thread Carl Zwanzig
On 2/25/2018 12:38 AM, Kieran O Leary wrote: I have to do this on a regular basis at work and we use this script on pretty much a daily basis: https://github.com/kieranjol/IFIscripts/blob/master/bitc.py - it works on windows, linux and OSX. In a similar vein, I use tcl for this kind of

Re: [FFmpeg-user] Add time code AND a watermark in one pass

2018-02-25 Thread Kieran O Leary
Hi On Sun, Feb 25, 2018 at 10:48 AM, Reino Wijnsma wrote: > On 25-2-2018 9:38, Kieran O Leary wrote: >> On Sun, Feb 25, 2018 at 7:24 AM, Kevin Duffey >> wrote: >>> [...] >>> for /R %%a in ("*.mov") do ffmpeg

Re: [FFmpeg-user] Add time code AND a watermark in one pass

2018-02-25 Thread Reino Wijnsma
On 25-2-2018 9:38, Kieran O Leary wrote: > On Sun, Feb 25, 2018 at 7:24 AM, Kevin Duffey > wrote: >> [...] >> for /R %%a in ("*.mov") do ffmpeg -i "%%a" -i watermark.png -filter_complex >> "[2:v]scale=4096x2160 >>

Re: [FFmpeg-user] Add time code AND a watermark in one pass

2018-02-25 Thread Kieran O Leary
P.S, you will probably need two escapes for each colon in your timecode too: 09\\:58\\:00\\:00 ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-user To unsubscribe, visit link above, or email

Re: [FFmpeg-user] Add time code AND a watermark in one pass

2018-02-25 Thread Kieran O Leary
Hi Kevin, Replies below.. On Sun, Feb 25, 2018 at 7:24 AM, Kevin Duffey wrote: > Hi all, > I have figured out from various sources how to add a watermark using a png > file. Works well enough. > What I also want to do is add timecode at 00:00:00:00 to my

[FFmpeg-user] Add time code AND a watermark in one pass

2018-02-24 Thread Kevin Duffey
Hi all, I have figured out from various sources how to add a watermark using a png file. Works well enough.   What I also want to do is add timecode at 00:00:00:00 to my video as a text overlay.  I have tried a few variations with the filter_complex, but I cant seem to get past any number of