Re: [FFmpeg-user] concat mp4 text list input and wav text list input into one video/audio file?

2020-07-04 Thread Ram Shaffir
Yay! -ss and -t with a longer audio.txt file list did the trick! I appreciate your help! Cheers, RS. -Original Message- From: ffmpeg-user On Behalf Of Moritz Barsnick Sent: Saturday, July 4, 2020 4:04 PM To: FFmpeg user discussions Subject: Re: [FFmpeg-user] concat mp4 text list input

Re: [FFmpeg-user] Issue with pix_fmt yuvj444p and libx265

2020-07-04 Thread pdr0
Samik Some wrote > Somewhat related question. Does sws_flags have any effect when > converting to yuvj444p color space using scale? (since no actual > resizing is needed) Yes. The sws flags are used to control the RGB to YUV conversion. In this case , full range, and 709 for the matrix

Re: [FFmpeg-user] concat mp4 text list input and wav text list input into one video/audio file?

2020-07-04 Thread Moritz Barsnick
On Sat, Jul 04, 2020 at 12:48:09 +, Ram Shaffir wrote: > A necessary tweak for this task is to move the audio 1.5 seconds forward; I > added '-itsoffset 1.5' before the audio input: [...] > But it doesn't seem to affect the output. You may want to instead try using "-ss 1.5" in front of one

Re: [FFmpeg-user] concat mp4 text list input and wav text list input into one video/audio file?

2020-07-04 Thread Ram Shaffir
Many thanks Moritz! Very simple once you know! A necessary tweak for this task is to move the audio 1.5 seconds forward; I added '-itsoffset 1.5' before the audio input: ffmpeg -y -f concat -safe 0 -i /usr/ramDisk/video.txt -f concat -safe 0 -itsoffset 1.5 -i /usr/ramDisk/audio.txt -c copy

Re: [FFmpeg-user] concat mp4 text list input and wav text list input into one video/audio file?

2020-07-04 Thread Moritz Barsnick
Hi Ram, On Fri, Jul 03, 2020 at 12:55:00 +, Ram Shaffir wrote: > ffmpeg -y -f concat -safe 0 -i /usr/ramDisk/video_list.txt -c copy -acodec > copy -movflags +faststart /usr/ramDisk/merged.mp4 [...] > how can I concat the mp4 files with the wav files using their txt files as -i > inputs to

Re: [FFmpeg-user] Issue with pix_fmt yuvj444p and libx265

2020-07-04 Thread Samik Some
Thank you. This works. Somewhat related question. Does sws_flags have any effect when converting to yuvj444p color space using scale? (since no actual resizing is needed) On 04/07/20 6:31 am, pdr0 wrote: You can use -x265-params to pass x265 settings. In this case to specify input-csp i444.