Re: [FFmpeg-user] Double decimate and frame rate conversion questions

2024-06-01 Thread Laine
On Jun 1, 2024, at 2:49 PM, Mark Filipak wrote: > > Oops. I wrote foo... > "1-1-1-3" was "2-2-2-4" > > On 01/06/2024 15.39, Laine wrote: >> I'm trying to convert 30 fps videos to 24 fps. I've been playing with a lot >> of methods for removing wh

[FFmpeg-user] Double decimate and frame rate conversion questions

2024-06-01 Thread Laine
I'm trying to convert 30 fps videos to 24 fps. I've been playing with a lot of methods for removing what I think may be known as lag spikes, spurious duplicate frames which fall outside the usual pattern of 4 unique frames and 1 duplicate of the 4th. I tried the following command and find that

Re: [FFmpeg-user] Question about 2 pass encoding

2024-04-01 Thread Laine Lee
> On Apr 1, 2024, at 9:35 AM, Aditya Dandavate > wrote: > > But according to H.264 guide : > > Warning: When using option -an, you may eventually get a segfault or a > broken file. If so, remove option -an and replace by -vsync cfr to the > first pass. > > When I put `vsync cfr` then it

Re: [FFmpeg-user] Question about 2 pass encoding

2024-04-01 Thread Laine Lee
> On Apr 1, 2024, at 5:40 AM, Aditya Dandavate > wrote: > > > So, I had a question : > > > Can I use `-c:a` copy for audio codec instead of `-an` Keeping “-an” for first pass, then using “-c:a copy” for second pass makes sense to me, or am I completely wrong? Yours ‘til I never am, L.

Re: [FFmpeg-user] Possible to speed up/down video while keeping audio pitch?

2024-03-24 Thread Laine Lee
> On Mar 24, 2024, at 5:31 PM, Bo Berglund wrote: > > I know how to use ffmpeg to adjust the video/audio sync and that is a real > simple command not requiring any remuxing or such. This is what I use in my > audiosync script and it runs very fast: > > ffmpeg -i $SOURCEFILE -itsoffset $DELAY

Re: [FFmpeg-user] Segmentation fault for two-pass libx264, but not two-pass libx265

2024-02-27 Thread Laine
On Feb 27, 2024, at 9:39 AM, Ferdi Scholten wrote: > >> Looks a bit like this trac ticket I >> made:https://trac.ffmpeg.org/ticket/10164 which is stiil open after 13 >> months. The difference in this ticket is that it happens when doing dual >> pass av1 transcode with libaom. Not always with

[FFmpeg-user] Segmentation fault for two-pass libx264, but not two-pass libx265

2024-02-27 Thread Laine
I believe this should be a viable routine for two-pass encoding using libx264, but it fails, as shown. A similar command to encode the same video source file using libx265 with Matroska output is successful, so I don’t think the source file is the culprit. Both the x264 and x265 encoding report

Re: [FFmpeg-user] subtitles come to early in a transport stream (ts) file

2023-10-07 Thread Laine
> On Oct 7, 2023, at 8:09 AM, Karl Heinz Lopin wrote: > > I have recorded a TV-movie with my SAT-recorder on harddisk. The movie is in > french and has subtitles in several languages. I cutted the ts-file and > removed all subtitles except german wit tsdoctor. Sometimes later I noticed >

Re: [FFmpeg-user] Trying to remember how I did this.....

2023-10-04 Thread Laine Lee
On Oct 4, 2023, at 10:59 AM, Mark Dm wrote: > > Thanks Laine and Andrew . I do believe that yadif=1 is what I am looking > for. After googling it I see so many others that express their love for it > so that sounds right! > > Thanks > Yadif = Yet Another DeInterlacing

Re: [FFmpeg-user] Trying to remember how I did this.....

2023-10-04 Thread Laine
> On Oct 4, 2023, at 3:43 AM, Laine wrote: > > ffmpeg -analyzeduration 100M -probesize 100M -loglevel error -stats -i > input.ts -map 0:0 -filter:v scale=-1:1440:flags=neighbor -c:v > h264_videotoolbox -b:v 2600k -color_primaries:v bt709 -color_trc:v bt709 > -

Re: [FFmpeg-user] Trying to remember how I did this.....

2023-10-04 Thread Laine
> On Oct 4, 2023, at 2:34 AM, Mark Dm wrote: > > Its NOT Telecine. It is Digital Video 8 video at 27.97 FPS > I am looking specifically for the setting that derives the 59.94FPS from > the 27.97 FPS source with such beauty and without deinterlace. > Oh, you mean 29.97 FPS? If you still have

Re: [FFmpeg-user] Trying to remember how I did this.....

2023-10-04 Thread Laine
> On Oct 4, 2023, at 1:36 AM, Mark Dm wrote: > > I had some DVD Video that I had converted using ffmpeg some years ago. What > I did was converted NTSC DVD video (4x3) to 960x720 @59.94 FPS and the > result was incredible. I had found a forum some time later where another > user claimed he

Re: [FFmpeg-user] Extract chapter names to a text file?

2022-12-05 Thread Laine
On Dec 5, 2022, at 6:10 PM, Carl Zwanzig wrote: > > On 12/5/2022 1:36 PM, Laine wrote: >> If you are able to generate “chapters.txt” but observe an overabundance >> of information in that file, you might try the options that I used to get >> just the video title an

Re: [FFmpeg-user] Extract chapter names to a text file?

2022-12-05 Thread Laine
> > This might include the information you want in its output file, but you may > need to otherwise process the output to format it as you described. > (Use “-y” if you don’t mind overwriting “chapters.txt”.) > > ffmpeg -y -loglevel error -i input -f ffmetadata chapters.txt > > L. Lee If

Re: [FFmpeg-user] Extract chapter names to a text file?

2022-12-05 Thread Laine
On Dec 3, 2022, at 3:26 PM, MyCraigs List via ffmpeg-user wrote: > > What is the command to extract all of the chapter names from a video and > then have them saved in a text file? I only want each chapter name, one > name per line, and nothing else. > Thanks, > Craig > Hi Craig,

Re: [FFmpeg-user] How to convert video.ts to video.mp4 efficiently?

2021-04-14 Thread Laine Lee
> On Apr 14, 2021, at 8:16 AM, Bo Berglund wrote: > > On Tue, 13 Apr 2021 12:27:34 -0500, Laine Lee wrote: > >> Could you provide an example .ts video? > > These 20 per day videos are each 1.3 GB for a 1 hour show... > Hard to provide to a mail list. > >

Re: [FFmpeg-user] How to convert video.ts to video.mp4 efficiently?

2021-04-13 Thread Laine Lee
, but what? How do I specify an output format? I did not do that in the original command where the size was also changed and it still made the mp4 format... Maybe you would benefit from using “h264_videotoolbox” rather than “libx264”. Could you provide an example .ts video?

Re: [FFmpeg-user] Using Homebrew to install FFmpeg, But having wired problems.

2021-04-05 Thread Laine Lee
On 4/4/21, 9:39 PM, "ffmpeg-user on behalf of Kosei Seki" wrote: (base) XXX-MacBook-Air ~ % brew install ffmpeg --HEAD Updating Homebrew... ==> Installing ffmpeg from homebrew-ffmpeg/ffmpeg ==> Searching for similarly named formulae... Error: No similarly named formulae found. Error: No

Re: [FFmpeg-user] Cropdetect in ffmpeg version 4.1.4_1

2019-07-25 Thread Laine Lee
On 7/25/19, 10:23 PM, "ffmpeg-user on behalf of Ted Park" wrote: Seems to work fine, you could try removing the piped commands from the end to see where it goes wrong (try getting rid of tail, then awk, and the output redirection, and so on.) Thanks. I’m not having any trouble with it

[FFmpeg-user] Cropdetect in ffmpeg version 4.1.4_1

2019-07-25 Thread Laine Lee
Is there a change to cropdetect in ffmpeg v.4.1.4_1? I've been using “ffmpeg -i input -t 1 -vf cropdetect -f null - 2>&1 | awk '/crop/ { print $NF }' | tail -1” for a long time, and now it appears to yield no output. Thanks. llee782 ___

Re: [FFmpeg-user] Pullup old MPEG-2

2015-12-20 Thread Laine Lee
On 12/20/15, 5:01 PM, "ffmpeg-user on behalf of Carl Eugen Hoyos" <ffmpeg-user-boun...@ffmpeg.org on behalf of ceho...@ag.or.at> wrote: >Laine Lee sbcglobal.net> writes: > >> >> BTW, -vf pullup -r 24000/1001, doesn’t work >> >> on the clip &

Re: [FFmpeg-user] Pullup old MPEG-2

2015-12-19 Thread Laine Lee
BTW, -vf pullup -r 24000/1001, doesn’t work on the clip (https://dl.dropboxusercontent.com/u/42718751/2024_telecine_source.zip), either, when I used "ffmpeg -i 2024_telecine_source.mpg -vf pullup -r 24000/1001 2024_ffmpeg_detelecine.m4v.” Laine Lee On 12/18/15, 7:05 PM, "f

Re: [FFmpeg-user] apple-friendly timestamps with -c copy

2015-12-19 Thread Laine Lee
ble from MacUpdate. When I saw a similar issue in Mencoder output, I discovered that "-lavfopts format=mp4” appeared to solve it, but even with an ffmpeg equivalent, it would mean re-encoding, of course. Laine Lee ___ ffmpeg-user mailing list ffm

[FFmpeg-user] Pullup old MPEG-2

2015-12-18 Thread Laine Lee
in=8:qpmax=28:qpstep=4 '2023ffmpeg_telecine..m4v’”: https://dl.dropboxusercontent.com/u/42718751/2023_ffmpeg_detelecine.m4v.zip Please tell me how ffmpeg may be used to correctly detelecine the source so that the output compares favorably with the mencoder output

Re: [FFmpeg-user] Pullup old MPEG-2

2015-12-18 Thread Laine Lee
Thanks. On 12/18/15, 7:05 PM, "ffmpeg-user on behalf of Carl Eugen Hoyos" <ffmpeg-user-boun...@ffmpeg.org on behalf of ceho...@ag.or.at> wrote: Laine Lee sbcglobal.net> writes: -vf "fieldmatch=order=tff:combmatch=full,fps=24000/1001" Where did you find this?