Re: [FFmpeg-user] Stuck with error when adding two subtitles

2018-02-12 Thread Carl Eugen Hoyos
2018-02-10 22:13 GMT+01:00 Carl Eugen Hoyos : > 2018-02-10 16:13 GMT+01:00 ffm...@bechhold.de : > >> ffmpeg -i movie-in.mp4 -i sub-alien.srt -i sub-full.srt -map 0:v -map >> 0:a -map 1 -map 2 -c:v copy -c:a copy -c:s mov_text -disposition:s:0 >> forced

Re: [FFmpeg-user] Is there an input or output file-size limit that FFmpeg can handle ?

2018-02-12 Thread Carl Eugen Hoyos
2018-02-12 7:45 GMT+01:00 Gyan Doshi : > On 2/12/2018 11:47 AM, Shyam Sundar wrote: > >> Can you please share if you have any data on it OR the size of the largest >> video you have ever tried with FFmpeg ? > > Output filesize limit is the max value of UINT64 i.e. 17179869183

Re: [FFmpeg-user] mpdecimate and setpts

2018-02-12 Thread Carl Eugen Hoyos
2018-02-12 7:57 GMT+01:00 Chen Fisher : > I'm using mpdecimate to remove similar frames: > ffmpeg -i in.mp4 -vf mpdecimate out.mp4 > > But the ending result has the same number of frames as the original video > file (although smaller file size). > > When using mpdecimate

[FFmpeg-user] 4K 60Hz Directshow Video Capture

2018-02-12 Thread Alex P
Windows 10 Intel i7-8700K GTX 1050Ti 16GB DDR4 SATA Samsung Evo I'm using a Yuan 4K60 capture card with the end goal of capturing the video in a lossless format. I need it to be lossless as the clips will be used to test hardware h264 encoders. Product page:

Re: [FFmpeg-user] 4K 60Hz Directshow Video Capture

2018-02-12 Thread Alex P
I've tried all manner of encoders but get the same buffer error. I've actually gotten a 64-bit fork of VirtualDub to work and capture everything but it occasionally drops frames and I like the CLI of ffmpeg. I guess I could use the VD CLI. Can anyone advise? I could use Linux but I'd rather

Re: [FFmpeg-user] 4K 60Hz Directshow Video Capture

2018-02-12 Thread Reto Kromer
William Caulfield wrote: >haven't used Windows / Directshow for a few years, but back in >the day I would have attempted this using VirtualDub and >HuffYUV. I believe that HuffYUV is available for ffmpeg, but >can't say that I've ever tried it. Indeed, FFmpeg's flavour of HuffYUV is even better

Re: [FFmpeg-user] 4K 60Hz Directshow Video Capture

2018-02-12 Thread William Caulfield
On Mon, Feb 12, 2018 at 7:37 AM, Alex P wrote: > Windows 10 > > Intel i7-8700K > > GTX 1050Ti > > 16GB DDR4 > > SATA Samsung Evo > > > > I'm using a Yuan 4K60 capture card with the end goal of capturing the video > in a lossless format. I need it to be lossless as the clips

Re: [FFmpeg-user] 4K 60Hz Directshow Video Capture

2018-02-12 Thread Alex P
Hi James, ffmpeg -f dshow -video_size 3840x2160 -framerate 6/1001 -rtbufsize 21 -pixel_format bgr24 -i video="MZ0380 PCI, Analog 01 Capture" -c:v h264_nvenc -preset lossless -f null - Gives me the same error ffmpeg -f dshow -video_size 3840x2160 -framerate 6/1001 -rtbufsize

Re: [FFmpeg-user] 4K 60Hz Directshow Video Capture

2018-02-12 Thread James Girotti
Hi Alex, I looked at your attached log. It appears to me that using libx265, your computer cannot encode fast enough. It appears your computer is encoding about 10.5 fps, but your input is about 60fps. So a lot of frames get buffered every second while they're waiting to be encoded. This leads to

Re: [FFmpeg-user] 4K 60Hz Directshow Video Capture

2018-02-12 Thread Alex P
Hi James, I get the same issue with this command: ffmpeg -f dshow -video_size 3840x2160 -framerate 6/1001 -rtbufsize 21 -pixel_format bgr24 -i video="MZ0380 PCI, Analog 01 Capture" -c:v h264_nvenc -preset lossless -f null - Is there a way to accelerate the decoding of rawvideo?

Re: [FFmpeg-user] 4K 60Hz Directshow Video Capture

2018-02-12 Thread Carl Eugen Hoyos
2018-02-12 16:37 GMT+01:00 Alex P : > Command: ffmpeg -f dshow -video_size 3840x2160 -framerate 59.9 -rtbufsize > 21 -pixel_format bgr24 -i video="MZ0380 PCI, Analog 01 Capture" -c:v > libx265 -x265-params lossless=1 out1.avi Unrelated: -framerate 59.9 is most likely

[FFmpeg-user] FFmpeg hanging on complex filter

2018-02-12 Thread Jesse Koegler
Hello all, Recently I upgraded my FFMPEG version to the latest release. In doing so, a command I previously used does not work anymore. Here is the command ffmpeg.exe -y -i -filter_complex "[0:v]trim=start_frame=0:end_frame=100,setpts=PTS-STARTPTS[a0];

Re: [FFmpeg-user] 4K 60Hz Directshow Video Capture

2018-02-12 Thread James Girotti
> > ffmpeg -f dshow -video_size 3840x2160 -framerate 6/1001 -rtbufsize > 21 -pixel_format bgr24 -i video="MZ0380 PCI, Analog 01 Capture" > -c:v h264_nvenc -preset lossless -f null - > Gives me the same error > That's surprising, I can get about 200fps using file-based/ramdisk "-c:v

Re: [FFmpeg-user] FFmpeg hanging on complex filter

2018-02-12 Thread Carl Eugen Hoyos
2018-02-13 0:46 GMT+01:00 Jesse Koegler : > ffmpeg version 3.4.1 Copyright (c) 2000-2017 the FFmpeg developers Please test current FFmpeg git head. Carl Eugen ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org

Re: [FFmpeg-user] 4K 60Hz Directshow Video Capture

2018-02-12 Thread Andy Furniss
Alex P wrote: Hi James, ffmpeg -f dshow -video_size 3840x2160 -framerate 6/1001 -rtbufsize 21 -pixel_format bgr24 -i video="MZ0380 PCI, Analog 01 Capture" -c:v h264_nvenc -preset lossless -f null - Gives me the same error Maybe it doesn't do rgb24 lossless - you should paste

Re: [FFmpeg-user] 4K 60Hz Directshow Video Capture

2018-02-12 Thread Andy Furniss
Carl Eugen Hoyos wrote: Is there really a hardware encoder that supports lossless encoding? https://developer.nvidia.com/nvidia-video-codec-sdk#NVENCFeatures Doesn't mention rgb though. ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org

Re: [FFmpeg-user] 4K 60Hz Directshow Video Capture

2018-02-12 Thread Carl Eugen Hoyos
2018-02-13 1:45 GMT+01:00 Andy Furniss : > Carl Eugen Hoyos wrote: > >> Is there really a hardware encoder that supports lossless encoding? > > https://developer.nvidia.com/nvidia-video-codec-sdk#NVENCFeatures Thank you! Carl Eugen