Re: [FFmpeg-user] drawtext, suggestion for improvement

2020-03-26 Thread Carl Eugen Hoyos
Am Do., 26. März 2020 um 19:34 Uhr schrieb Michael Koch : > I have a suggestion for improvement for the drawtext filter. > If the text is read from a file, it must be in UTF-8 format. In Windows, > many text editors (including Notepad) insert a 3-byte "Byte order mark" > at the beginning of the

Re: [FFmpeg-user] drawtext, suggestion for improvement

2020-03-26 Thread Michael Koch
Am 26.03.2020 um 19:59 schrieb Carl Eugen Hoyos: Am Do., 26. März 2020 um 19:34 Uhr schrieb Michael Koch : I have a suggestion for improvement for the drawtext filter. If the text is read from a file, it must be in UTF-8 format. In Windows, many text editors (including Notepad) insert a 3-byte

[FFmpeg-user] Copying a EIA-608 subtitle stream in an m4v

2020-03-26 Thread Dan Smith via ffmpeg-user
I'm trying to process an m4v video with the following subtitle stream: Stream #0:3(eng): Subtitle: eia_608 (c608 / 0x38303663), 1920x1080, 0 kb/s (default) Metadata: creation_time : 2014-03-29T03:43:15.00Z handler_name: Apple Closed Caption Media Handler When I

[FFmpeg-user] What is a sponsor?

2020-03-26 Thread Nomis101
In ticket 3595, I've learned, that a missing sponsor can hinder bringing in patches to FFmpeg [1]. But I still quite don't understand what a sponsor actually is. Because I don't want to spam the ticket with my non-developer question, I thought it might be better to ask in the mailinglist. What

[FFmpeg-user] drawtext, suggestion for improvement

2020-03-26 Thread Michael Koch
Hi, I have a suggestion for improvement for the drawtext filter. If the text is read from a file, it must be in UTF-8 format. In Windows, many text editors (including Notepad) insert a 3-byte "Byte order mark" at the beginning of the file. This is described here:

Re: [FFmpeg-user] What is a sponsor?

2020-03-26 Thread Paul B Mahol
On 3/26/20, Nomis101 wrote: > In ticket 3595, I've learned, that a missing sponsor can hinder bringing in > patches to FFmpeg [1]. But I still quite don't understand what a sponsor > actually is. Because I don't want to spam the > ticket with my non-developer question, I thought it might be

Re: [FFmpeg-user] How to slow down a video

2020-03-26 Thread penguin flying
for video: -vf setpts=0.5*PTS for audio: -af atempo=2 Ulf Zibis 于2020年3月27日周五 上午8:42写道: > Hi, > > I want to slow down a mp4 video from 30 to 15 fps, so it has twice > duration. Also I want the audio stream to to transform so that the audio is > transformed to the natural frequency, i.e. the

[FFmpeg-user] How to change overlay parameter at runtime

2020-03-26 Thread foxtail mega
can someone please help regarding this issue ? -re -i video.mp4 -i image.png -filter_complex "[0:v][1:v] overlay=25:25:enable='between(t,0,4)'" -pixel_format yuv420p -tune zerolatency -c:a copy -c:v libx264 -crf 27 -preset veryfast -f mpegts udp://localhost:5454 here i am using overlay as

[FFmpeg-user] FFmpeg not making videos unique after re-encode

2020-03-26 Thread Daulet Sanatov
Is it possible to make video Unique by encoding? Because if i'm doing the same encoding of one video, it's completely same inside, for example Premiere is not working by this way. ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org

Re: [FFmpeg-user] "Invalid argument" when running ffmpeg.exe with a pipe as video input

2020-03-26 Thread Ted Park
Hi, I do not know much about windows but I remember many times using named pipes tripped people up, as they are not simple fifo pipes as in linux, but a more transactional and object-oriented construct. Not sure if it’s any help but look into the different types of pipes you can create and how

[FFmpeg-user] Make Video Unique by ffmpeg

2020-03-26 Thread Daulet Sanatov
Does FFMPEG encoding the video? Because if encode one video twice with same arguments, it's giving the exactly same file. For example, if rendering on Adobe Premiere 2 times same file it gives 2 unique video files. Is it possible to make Unique videos after encoding by ffmpeg? If yes, than how?

Re: [FFmpeg-user] Make Video Unique by ffmpeg

2020-03-26 Thread Ted Park
Hey, > Does FFMPEG encoding the video? I don’t know, is it? Show us the command you typed in and the output. > Because if encode one video twice with same > arguments, it's giving the exactly same file. For example, if rendering on > Adobe Premiere 2 times same file it gives 2 unique video

Re: [FFmpeg-user] screen cast windows 10 desktop with audio

2020-03-26 Thread Ted Park
Hi, > Duration: N/A, start: 1584387532.163434, bitrate: 1006131 kb/s >Stream #0:0: Video: bmp, bgra, 1366x768, 1006131 kb/s, 29.97 fps, 29.25 > tbr, 1000k tbn, 1000k tbc > Guessed Channel Layout for Input Stream #1.0 : stereo > Input #1, dshow, from 'audio=Microphone (Realtek High Definition

[FFmpeg-user] Question on AVFoundation and importing from a DV-VCR

2020-03-26 Thread Colin Bitterfield
To Whom It May Concern: I have been trying to get a direct import from a Sony DSR-45 DV Deck. Using OS X Final Cut Pro hot annoying with various issues. Does anyone have suggestions or a method for doing this better? I have 500-600 more DV tapes to ingest. Using this command brings in a 12GB

Re: [FFmpeg-user] Question on AVFoundation and importing from a DV-VCR

2020-03-26 Thread Ted Park
Hi, > I have been trying to get a direct import from a Sony DSR-45 DV Deck. Using > OS X Final Cut Pro hot annoying with various issues. > > Does anyone have suggestions or a method for doing this better? I have > 500-600 more DV tapes to ingest. > > Using this command brings in a 12GB

Re: [FFmpeg-user] How to slow down a video

2020-03-26 Thread Ted Park
Hi, > for video: -vf setpts=0.5*PTS > for audio: -af atempo=2 Actually, he wanted to slow down the video so you probably meant the reciprocal of this, 2*PTS and atempo 1/2 Regards, Ted Park ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org

Re: [FFmpeg-user] screen cast windows 10 desktop with audio

2020-03-26 Thread Roger Pack
Screen cast it to where? On Mon, Mar 16, 2020 at 1:52 PM Lance Bermudez wrote: > > How do i screen cast a windows 10 desktop with audio? > > PS C:\Users\lance> ffmpeg -list_devices true -f dshow -i dummy > > ffmpeg version 4.2.2 Copyright (c) 2000-2019 the FFmpeg > developers >

Re: [FFmpeg-user] Copying a EIA-608 subtitle stream in an m4v

2020-03-26 Thread Ted Park
Hi, > I'm trying to process an m4v video with the following subtitle stream: > >Stream #0:3(eng): Subtitle: eia_608 (c608 / 0x38303663), 1920x1080, 0 kb/s > (default) >Metadata: > creation_time : 2014-03-29T03:43:15.00Z > handler_name: Apple Closed Caption Media

[FFmpeg-user] How to slow down a video

2020-03-26 Thread Ulf Zibis
Hi, I want to slow down a mp4 video from 30 to 15 fps, so it has twice duration. Also I want the audio stream to to transform so that the audio is transformed to the natural frequency, i.e. the speach is in half speed. How can I do this? -Ulf -- Von meinem Seibert gesendet

Re: [FFmpeg-user] "Invalid argument" when running ffmpeg.exe with a pipe as video input

2020-03-26 Thread Roger Pack
Same version of ffmpeg works on other computers? I suppose you could drill into the code and try and see what it's doing with pipes... On Fri, Oct 18, 2019 at 8:02 AM Alessandro Santos wrote: > > I am creating a c# application to record videos H264. > > The workflow of my application is like

Re: [FFmpeg-user] Question on AVFoundation and importing from a DV-VCR

2020-03-26 Thread Colin Bitterfield
On March 26, 2020 at 10:05:58 PM, Ted Park (kumowoon1...@gmail.com) wrote: Hi, > I have been trying to get a direct import from a Sony DSR-45 DV Deck. Using > OS X Final Cut Pro hot annoying with various issues. >  > Does anyone have suggestions or a method for doing this better? I have >

Re: [FFmpeg-user] What is a sponsor?

2020-03-26 Thread Lou Logan
On Thu, Mar 26, 2020, at 11:16 AM, Nomis101 wrote: > In ticket 3595, I've learned, that a missing sponsor can hinder > bringing in patches to FFmpeg [1]. But I still quite don't understand > what a sponsor actually is. Because I don't want to spam the ticket > with my non-developer question, I

Re: [FFmpeg-user] How to assessment the memory will use when motion interpolation on a 4k video?

2020-03-26 Thread Carl Eugen Hoyos
Am Do., 26. März 2020 um 12:28 Uhr schrieb Du Dengke : > I have a 4k video, resolution: 4320x2880, as a result form EDSR-pytorch > I want to use motion interpolate it to 60fps, so command like this: > ffmpeg -i test.mp4 -filter "minterpolate=fps=60" output.mp4 >

[FFmpeg-user] Drop frames during framemd5 calculation of DPX files

2020-03-26 Thread Matthew Yang
Hello there I have been experiencing drop frames during calculation of framemd5 checksums for a bunch of DPX files. The command: *ffmpeg -start_number 86400 -i finalDPX_forDCP\Respire%08d.dpx -f framemd5 original_md5_2.txt* The result: frame=20837 fps=5.2 q=-0.0 Lsize=1628kB

Re: [FFmpeg-user] Vaapi Scaling on Belkin Z85 is not working

2020-03-26 Thread halise
Carl Zwanzig wrote > On 3/25/2020 8:00 AM, halise wrote: >> [h264 @ 0x5643ff5d1d80] co located POCs unavailable >> [h264 @ 0x5643ff636b80] co located POCs unavailable >> [Parsed_scale_vaapi_2 @ 0x5643ff5d53c0] Failed to create processing >> pipeline >> config: 12 (the requested VAProfile is not

[FFmpeg-user] How to assessment the memory will use when motion interpolation on a 4k video?

2020-03-26 Thread Du Dengke
Hi all I have a 4k video, resolution: 4320x2880, as a result form EDSR-pytorch ffprobe -i 720_x4.mp4 ffprobe version 3.4.6-0ubuntu0.18.04.1 Copyright (c) 2007-2019 the FFmpeg developers built with gcc 7

Re: [FFmpeg-user] Drop frames during framemd5 calculation of DPX files

2020-03-26 Thread Ted Park
Hi, > frame=20837 fps=5.2 q=-0.0 Lsize=1628kB time=00:14:28.20 bitrate= > 15.4kbits/s dup=0 *drop=867* speed=0.216x > video:1107194832kB audio:0kB subtitle:0kB other streams:0kB global > headers:0kB muxing overhead: unknown 867 frames dropped in 868 seconds, maybe ffmpeg has estimated 1 fps

Re: [FFmpeg-user] How to assessment the memory will use when motion interpolation on a 4k video?

2020-03-26 Thread Ted Park
Hi, > Hi all > I have a 4k video, resolution: 4320x2880, as a result form EDSR-pytorch > Duration: 00:00:03.00, start: 0.00, bitrate: 9673 kb/s >Stream #0:0(und): Video: h264 (High) (avc1 / 0x31637661), yuv420p, > 4320x2880, 9669 kb/s, 25 fps, 25 tbr, 12800 tbn, 50 tbc (default) As far

Re: [FFmpeg-user] Drop frames during framemd5 calculation of DPX files

2020-03-26 Thread Gyan Doshi
On 26-03-2020 02:17 pm, Matthew Yang wrote: Hello there I have been experiencing drop frames during calculation of framemd5 checksums for a bunch of DPX files. The command: *ffmpeg -start_number 86400 -i finalDPX_forDCP\Respire%08d.dpx -f framemd5 original_md5_2.txt* The result: