Re: [FFmpeg-user] Getting issue in command prompt because of exceeded string limit

2021-06-22 Thread William C Bonner
I figured out at one point that if my command line was more than about 900 characters long, ffmpeg wouldn't handle it. I was doing a filter_complex concat operation. My solution was to recognize the extra long command line and switch to creating a temporary file with the list of input files, and s

Re: [FFmpeg-user] Can't concat Garmin DashCam videos with telemetry (GPS data)

2021-07-30 Thread William C Bonner
On Wed, Jul 28, 2021 at 3:15 PM Suporte JM wrote: > Hi, > > I have a Garmin 66W dashcam for my work (street mapping surveyor) which > produces several 1min. MP4 videos of my journey (60 min. = 60 videos). All > these videos have telemetry data on it as metadata (GPS location, speed, > etc...). >

Re: [FFmpeg-user] Can't concat Garmin DashCam videos with telemetry (GPS data)

2021-07-30 Thread William C Bonner
On Fri, Jul 30, 2021 at 3:47 PM William C Bonner wrote: > On Wed, Jul 28, 2021 at 3:15 PM Suporte JM wrote: > >> Hi, >> >> I have a Garmin 66W dashcam for my work (street mapping surveyor) which >> produces several 1min. MP4 videos of my journey (60 min. = 60 vid

Re: [FFmpeg-user] help with pipe command ffmpeg

2021-12-07 Thread William C Bonner
On Mon, Dec 6, 2021 at 9:50 PM Vivek Soni wrote: > Hi, > > > I am trying to run this command > > > ffmpeg -y -i "C:\Users\vivek.soni\Videos\How to use FFMPEG.mp4" -f > mpegts \\.\pipe\VideoPipeFromFFmpeg > > > I am trying to write to a named windows pipe and I want to read it from my > c++ code

Re: [FFmpeg-user] help with pipe command ffmpeg

2021-12-13 Thread William C Bonner
On Wed, Dec 8, 2021 at 10:12 PM Adam Nielsen via ffmpeg-user < ffmpeg-user@ffmpeg.org> wrote: > > i want to know how to output to a windows named pipe and reference > > that in c++ code as input ... > > > > kindly share some working command line examples of ffmpeg.exe > > > > googling is not much

[FFmpeg-user] swscaler deprecated pixel format?

2022-03-07 Thread William C Bonner
I run ffmpeg from a program I wrote that sets up the input file names to easily convert individual images to a video. Is the swscaler warning message because of my output format (yuv420p) or a format in the source photos from my GoPro? ffmpeg version 5.0-full_build-www.gyan.dev Copyright (c) 2000

Re: [FFmpeg-user] Re-encoding mkv files from makemkv

2022-09-09 Thread William C Bonner
On Thu, Sep 8, 2022 at 1:24 PM llee040 wrote: > > > On Sep 7, 2022, at 5:04 PM, James Board via ffmpeg-user < > ffmpeg-user@ffmpeg.org> wrote: > > > > I'm trying to re-encode an MKV file that I originally created with > makemkv from the original BluRay disc. My ffmpeg command is: > > ffmpeg-

Re: [FFmpeg-user] Question: how i can overlay an input with current date and time?

2022-10-10 Thread William C Bonner
On Sun, Oct 9, 2022 at 12:59 PM wrote: > how i can overlay an input with current date and time? > > I use drawtext when I create videos from time lapse photos using this command: ffmpeg.exe -hide_banner -r 30 -i C:\Users\Wim\Videos\20221009-PSSC\Wim%05d.JPG -vf crop=in_w:9/16*in_w,drawtext=fontf

Re: [FFmpeg-user] How do you keep all video metadata when transcoding using ffmpeg?

2023-10-12 Thread William C Bonner
In my experience, adding a -map 0 option makes copying all the extra stuff more likely. This was my command to compress a DVD I'd ripped to an MKV file, converting the video to h.264 but copying all of the other tracks and details. C:\WINDOWS\ffmpeg.exe -i "J:\DVD\_BARB_AND_STAR_GOTO_VISTA_DEL_MA

Re: [FFmpeg-user] wanting to convert ripped DVD movies and TV shows to MP4 for Plex

2023-12-22 Thread William C Bonner
On Thu, Dec 21, 2023 at 12:48 PM Alan Malmberg < alanmalm-at-hotmail@ffmpeg.org> wrote: > I have hundreds of ripped DVDs in vob format that I want to BATCH JOB to > single mp4 files WITH SURROUND SOUND for use with Plex server. Any > suggestions? I see the above as doing one at a time. Mine ar

[FFmpeg-user] filter_complex concat large number of files.

2018-05-31 Thread William C Bonner
I'm using ffmpeg to concatenate a large number of files from my dash cam and then speed things up by a factor of 60. It works properly when the number of files is small, but fails as the filter_complex option string expands. I'm generating the command line from a program. From the ffmpeg generate

[FFmpeg-user] Too many packets buffered for output stream 0:1.

2019-02-04 Thread William C Bonner
I've encountered the error message "Too many packets buffered for output stream 0:1." when converting files and would appreciate direction in how I might get around the error. When it occurs, there is a zero length output file created and FFMPEG exits with an error result. This same input file pl

Re: [FFmpeg-user] FFMPEG GPU Flags being confused.

2019-03-25 Thread William C Bonner
I don't have an nvidia GPU, so can't see what it looks like, but what do you get if you query the gpu via a command like: ffmpeg -f lavfi -i nullsrc -c:v h264_nvenc -gpu list -f null - ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org https://ffmpeg.or

[FFmpeg-user] srt subtitle to dvbsub for mpegts stream

2024-02-28 Thread William C Bonner
I am transferring mkv video files from my pc to my TiVo using the mpegts container format. I’m trying to find a way to include optional subtitles in the stream but haven’t been able to find a way to convert text subtitles to raster image subtitles. I would have thought that there was a way, consi

Re: [FFmpeg-user] srt subtitle to dvbsub for mpegts stream

2024-02-29 Thread William C Bonner
On Wed, Feb 28, 2024 at 11:49 PM Nicolas George wrote: > William C Bonner (12024-02-28): > > I’m trying to find a way to include optional subtitles in the stream but > > haven’t been able to find a way to convert text subtitles to raster image > > subtitles. > >

Re: [FFmpeg-user] ISSUE ABOUT SUBTITLES TRACK(S)

2024-03-14 Thread William C Bonner
On Thu, Mar 14, 2024 at 5:48 AM Hervé ANSELME < hervea95-at-hotmail@ffmpeg.org> wrote: > ffmpeg -y -loglevel error -scodec copy -map 0:s:2 -i "D:\temp\my > movie.mkv" -map 0:v:0 -map 0:a:0 -acodec ac3 -ar 48k -b:a 112k -q:a 3 > -vcodec libx265 -vf "scale=768:328" -sws_flags lanczos+accurate_rn

Re: [FFmpeg-user] Use processed filename as draw text after tmix, in one pass?

2024-04-24 Thread William C Bonner
On Sun, Apr 21, 2024 at 12:08 PM Steven Kan wrote: > > On Mar 6, 2024, at 11:49 AM, Steven Kan wrote: > > > > Planning ahead to the successor to my honeycomb time-lapse video from > 2022, processed using tmix per advice from this group: > > > > https://ffmpeg.org//pipermail/ffmpeg-user/2022-Apri

Re: [FFmpeg-user] c/c++ program for FFMPEG H.264 encoding

2024-05-31 Thread William C Bonner
On Mon, May 20, 2024 at 10:43 PM Lisa wrote: > Thank you for your response. > I am working on an rtsp server that uses V4l2 to get frames from mipi-csi2 > and then it will encode with ffmpeg Apis (C/C++ language). As I said with > the ffmpeg command line it is able to encode 1920x1080@29 fps, so

Re: [FFmpeg-user] ffmpeg - compressing an mp4 creates a video distortion (horizontal stretch)

2024-06-13 Thread William C Bonner
On Thu, Jun 13, 2024 at 1:06 PM wrote: > I have a mp4 file that was created by concatenating several videos taken > with a cellphone. Some of the videos were taken horizontally and others > vertically. > > The concatenated video plays fine but when I try to compress it so it can > be > placed in

[FFmpeg-user] has setpts filter been changed?

2024-08-08 Thread William C Bonner
I use setpts to speed up some video that I'm concatenating from my car's dashcam. The process is consistent and hasn't changed recently. Here's an example command line: C:\Windows\ffmpeg.exe -hide_banner -i D:\ROAV\MOVIE\2024_0803_173613_229.MP4 -i D:\ROAV\MOVIE\2024_0803_173713_230.MP4 -i D:\ROAV

Re: [FFmpeg-user] has setpts filter been changed?

2024-08-09 Thread William C Bonner
On Thu, Aug 8, 2024 at 6:27 PM wrote: > > This seems that the new code speed up the reported fps without dropping > any > > frames. > > Looks like this was changed here > https://git.ffmpeg.org/gitweb/ffmpeg.git/commit/f121d954ac89060cb7b07da230479cffe5bf9e5c > > If that's what changed, it obviou

Re: [FFmpeg-user] has setpts filter been changed?

2025-03-21 Thread William C Bonner
On Sat, Aug 10, 2024 at 1:22 AM Gyan Doshi wrote: > > On 2024-08-10 11:04 am, William C Bonner wrote: > > On Thu, Aug 8, 2024 at 6:27 PM wrote: > > > >>> This seems that the new code speed up the reported fps without dropping > >> any > >>