Re: [FFmpeg-user] ffmpeg hanging indefinately if streaming connection dies

2025-08-13 Thread Andrew Wood via ffmpeg-user
On 13/08/2025 14:05, Rob Hallam wrote: Does the timeout option make any difference? [1] Something may have changed in default behaviour; eg [2] reports a previously hardcoded 10 seconds. Cheers, Rob Ive tried -timeout and -rw_timeout neither of which are making any difference. Thanks A

Re: [FFmpeg-user] ffmpeg hanging indefinately if streaming connection dies

2025-08-13 Thread Rob Hallam
On Wed, 13 Aug 2025 at 12:05, Andrew Wood via ffmpeg-user wrote: > > > On 13/08/2025 09:40, Rob Hallam wrote: > > On > > As Ferdi mentioned, sharing the full, uncut console output (without > > errors suppressed) from an instance where you have the problem will > > help others help you. > > > When

Re: [FFmpeg-user] ffmpeg hanging indefinately if streaming connection dies

2025-08-13 Thread Andrew Wood via ffmpeg-user
On 13/08/2025 09:40, Rob Hallam wrote: On As Ferdi mentioned, sharing the full, uncut console output (without errors suppressed) from an instance where you have the problem will help others help you. When it hangs it just stops at this: ffmpeg -i rtsp://192.168.111.2:554 -acodec copy -vcodec

Re: [FFmpeg-user] ffmpeg hanging indefinately if streaming connection dies

2025-08-13 Thread Rob Hallam
On Tue, 12 Aug 2025 at 22:10, Andrew Wood via ffmpeg-user wrote: > This is the full command: > > ffmpeg -y -loglevel fatal -i rtsp://192.168.111.2:554 -acodec copy > -vcodec copy -metadata title=MyVideo /path/to/video.mp4 As a general tip: since the command is not working as you expected, it may

Re: [FFmpeg-user] ffmpeg hanging indefinately if streaming connection dies

2025-08-12 Thread Andrew Wood via ffmpeg-user
On 12/08/2025 22:02, Ferdi Scholten wrote: On 12-08-2025 22:35, Andrew Wood via ffmpeg-user wrote: Ive just upgraded to ffmpeg 5.1.6 (the version that comes with Debian 12) from an older version. A command which has worked fine for years recording a camera rtsp stream and automatically exiti

Re: [FFmpeg-user] ffmpeg hanging indefinately if streaming connection dies

2025-08-12 Thread Ferdi Scholten
On 12-08-2025 22:35, Andrew Wood via ffmpeg-user wrote: Ive just upgraded to ffmpeg 5.1.6 (the version that comes with Debian 12) from an older version. A command which has worked fine for years recording a camera rtsp stream and automatically exiting if the camera connection dies has now st

[FFmpeg-user] ffmpeg hanging indefinately if streaming connection dies

2025-08-12 Thread Andrew Wood via ffmpeg-user
Ive just upgraded to ffmpeg 5.1.6 (the version that comes with Debian 12) from an older version. A command which has worked fine for years recording a camera rtsp stream and automatically exiting if the camera connection dies has now started hanging forever if the camera stops responding. Has

Re: [FFmpeg-user] FFmpeg AAC encoder produces harsh noise on specific voice

2025-08-10 Thread Aditya Dandavate
Oh yeah, make sure to use "-q:a 0" for best quality VBR. On Sun, 10 Aug, 2025, 7:44 pm Aditya Dandavate, wrote: > Dude, if its possible, I'd strongly recommend you to use Opus ( with > libopus encoder ), even at 128k VBR, for most content, its quality is > excellent, without a doubt, ( well you

Re: [FFmpeg-user] FFmpeg AAC encoder produces harsh noise on specific voice

2025-08-10 Thread Aditya Dandavate
Dude, if its possible, I'd strongly recommend you to use Opus ( with libopus encoder ), even at 128k VBR, for most content, its quality is excellent, without a doubt, ( well you may need higher bitrate for complex audio ). But yeah, if you can't use Opus, libfdk-aac is recommended for better qualit

Re: [FFmpeg-user] FFmpeg AAC encoder produces harsh noise on specific voice

2025-08-10 Thread Agent 45
Thank you for the detailed explanation and suggestions. Changing either -aac_coder (to fast) or -aac_pns (to disable) significantly reduces the metallic noise in my tests, so I’ll continue experimenting with these options. If that still doesn’t give satisfactory results in some cases, I’ll also try

Re: [FFmpeg-user] FFmpeg AAC encoder produces harsh noise on specific voice

2025-08-09 Thread Anton Kapela
This phoneme in particular will probably always encode poorly on simplistic AAC implementations like libavcodec. Why? More on that later. Others already suggested libfk_aac - and after testing that coder with your samples, it's definitely the right choice (ie. sounds fine to me at 128k). More deet

Re: [FFmpeg-user] FFmpeg AAC encoder produces harsh noise on specific voice

2025-08-09 Thread Ferdi Scholten
On 09-08-2025 20:53, Ferdi Scholten wrote: On 09-08-2025 11:25, Agent 45 wrote: Hello, FFmpeg team, I'm encountering a consistent issue when encoding voice with FFmpeg AAC encoder. At low and medium bitrates the encoded output contains noticeable and sometimes harsh noise when encoding specif

Re: [FFmpeg-user] FFmpeg AAC encoder produces harsh noise on specific voice

2025-08-09 Thread Ferdi Scholten
On 09-08-2025 11:25, Agent 45 wrote: Hello, FFmpeg team, I'm encountering a consistent issue when encoding voice with FFmpeg AAC encoder. At low and medium bitrates the encoded output contains noticeable and sometimes harsh noise when encoding specific vocals. These noise gradually reduce as the

[FFmpeg-user] ffmpeg ignores MP3 comment tag when transcodiing

2025-06-29 Thread Ulf Zibis
Hi, when i use the lame encoder directly, the comment tag of a mp3 file is conserved: $ lame -V1 in.mp3 out.mp3 LAME 3.100 64bits (http://lame.sf.net) Using polyphase lowpass filter, transition band: 19383 Hz - 19916 Hz Encoding in.mp3 to out.mp3 Encoding as 44.1 kHz j-stereo MPEG-1 Layer III V

Re: [FFmpeg-user] [FFmpeg] about conversion of movies

2025-05-26 Thread BloodMan
Hi, # convert in background with watching log file screen -L -Logfile out.log -dm bash -c "ffmpeg -loglevel info -stats -y -i movie.mp4 out.mp4"; tail -f out.log # OR just ffmpeg -loglevel info -stats -y -i movie.mp4 out.mp4 &>out.log # and view log _after_ convert cat out.log btw. logleve

Re: [FFmpeg-user] [FFmpeg] about conversion of movies

2025-05-26 Thread Richard Bartczak via ffmpeg-user
Am 26.05.25 um 13:01 schrieb p db: Dear FFmpeg, Imagine that you have provided to convert a movie in *.mkv; *.ogv; *.webm; there is not a a log after conversion that says, how was converted the movie, if there are errors in the movie, why it stopped during the conversion... and the possibility t

[FFmpeg-user] [FFmpeg] about conversion of movies

2025-05-26 Thread p db
Dear FFmpeg, Imagine that you have provided to convert a movie in *.mkv; *.ogv; *.webm; there is not a a log after conversion that says, how was converted the movie, if there are errors in the movie, why it stopped during the conversion... and the possibility to type commands on the shell to work

Re: [FFmpeg-user] FFmpeg HLS Output Blank During Live Stream — Possible Causes?

2025-05-08 Thread Vedant Bhugul
Hi Dennis, Thank you for your suggestion. I’m confident that adding -pix_fmt yuv420p will help resolve the issue. However, could you kindly assist in providing guidance on how to reproduce the issue or, if not, suggest possible reasons that could have caused this behavior? I need to identify the r

Re: [FFmpeg-user] FFmpeg HLS Output Blank During Live Stream — Possible Causes?

2025-05-08 Thread Dennis Mungai
On Thu, 8 May 2025 at 22:41, Vedant Bhugul wrote: > Hi FFmpeg team, > During a certain period, the HLS output (i.e., .ts segments and .m3u8 > playlist) remained blank for every live stream attempted. However, the .flv > output stream continued to function normally. For each affected session, we >

[FFmpeg-user] FFmpeg HLS Output Blank During Live Stream — Possible Causes?

2025-05-08 Thread Vedant Bhugul
Hi FFmpeg team, During a certain period, the HLS output (i.e., .ts segments and .m3u8 playlist) remained blank for every live stream attempted. However, the .flv output stream continued to function normally. For each affected session, we had to manually terminate the FFmpeg transcoding process—only

Re: [FFmpeg-user] ffmpeg and dv

2025-03-30 Thread Paul B Mahol
On Thu, Mar 27, 2025 at 7:11 PM Devin Heitmueller < devin.heitmuel...@ltnglobal.com> wrote: > Hi Dave, > > On Thu, Mar 27, 2025 at 2:51 PM Dave Rice wrote: > > - Is there any workaround to force a frame rate of an input? For > instance, could I use a non-ffmpeg tool to identify the frame rate and

Re: [FFmpeg-user] ffmpeg and dv

2025-03-27 Thread Devin Heitmueller
Hi Dave, On Thu, Mar 27, 2025 at 2:51 PM Dave Rice wrote: > - Is there any workaround to force a frame rate of an input? For instance, > could I use a non-ffmpeg tool to identify the frame rate and force ffmpeg to > use a user-supplied one (such as 25 or 3/1001) rather than the one is > de

[FFmpeg-user] ffmpeg and dv

2025-03-27 Thread Dave Rice
Hi all, I love ffmpeg and I work with DV. Two years ago this commit, https://git.ffmpeg.org/gitweb/ffmpeg.git/commit/c7a852b638b88f129790af31fc47c870c329eaaa, caused a regression so that the DV frame rate would be misinterpreted, for instance as 6/1 fps rather than 3/1001 fps. I report

Re: [FFmpeg-user] ffmpeg doesn't reconnect when capturing live connections

2025-03-16 Thread Anton Kapela
no real clue, but http and https inputs seem to have zero f'ing useful countdown/timeout handling... nor "-t" counting. I was trying something similar, like so: $ while :; do ffmpeg -xerror -re -i https://stream.nightride.fm/datawave.mp3 -filter_complex "[0:a]avectorscope=s=640x518:r=24000/1001:m

Re: [FFmpeg-user] ffmpeg: undefined symbol: av_container_fifo_peek, version LIBAVUTIL_59

2025-03-04 Thread Reindl Harald
Am 04.03.25 um 09:33 schrieb Gianluca Cannata: There were some libraries in a different location that were still linked to the ffmpeg program instead of the chosen prefix one. I uninstalled them and re-run the configure script along with make and make install and everything went ok. that's

Re: [FFmpeg-user] ffmpeg: undefined symbol: av_container_fifo_peek, version LIBAVUTIL_59

2025-03-04 Thread Gianluca Cannata
Gianluca Il giorno ven 28 feb 2025 alle ore 14:50 Moritz Barsnick via ffmpeg-user < ffmpeg-user@ffmpeg.org> ha scritto: > Hi, Gianluca, > > On Fri, Feb 28, 2025 at 11:28:58 +0100, Gianluca Cannata wrote: > > I have configured ffmpeg with the following configuration > > &g

Re: [FFmpeg-user] ffmpeg: undefined symbol: av_container_fifo_peek, version LIBAVUTIL_59

2025-02-28 Thread Moritz Barsnick via ffmpeg-user
Hi, Gianluca, On Fri, Feb 28, 2025 at 11:28:58 +0100, Gianluca Cannata wrote: > I have configured ffmpeg with the following configuration > > ./configure --prefix=/usr --disable-static --enable-shared --enable-gpl > --enable-version3 --disable-programs --disable-doc --disable-avdevice With "--dis

[FFmpeg-user] ffmpeg: undefined symbol: av_container_fifo_peek, version LIBAVUTIL_59

2025-02-28 Thread Gianluca Cannata
Good morning, I have configured ffmpeg with the following configuration ./configure --prefix=/usr --disable-static --enable-shared --enable-gpl --enable-version3 --disable-programs --disable-doc --disable-avdevice --enable-swresample --disable-swscale --disable-postproc --disable-network --disabl

[FFmpeg-user] ffmpeg doesn't reconnect when capturing live connections

2025-01-30 Thread arthurpeabody
It begins with: ffmpeg -i https://listen.wruu.org/stream -t 3720 -reconnect true -reconnect_streamed true -reconnect_on_network_error true -timelimit 3720 -loglevel warning wruu_JoeFrank-20250130-2100.mp3 ffmpeg version 7.1 Copyright (c) 2000-2024 the FFmpeg developers built with gcc 14.2.0

Re: [FFmpeg-user] FFMPEG Integration with Intratrust DRM

2025-01-25 Thread Carl Zwanzig
On 1/24/2025 11:00 PM, Ramesh Kumar wrote: Can anybody share the flow with commands? It's entirely possible that nobody on this list knows or is willing to share, asking repeatedly won't change that. If you have tried various approaches that didn't work, tell us what those are and how they di

Re: [FFmpeg-user] FFMPEG Integration with Intratrust DRM

2025-01-24 Thread Ramesh Kumar
Can anybody share the flow with commands? Sent from my iPhone > On 24 Jan 2025, at 8:20 PM, Christian David wrote: > > Use ffmpeg to transcoding without encrypt and you will need a packager to > get unencrypted content and encrypt with your DRM, like shaka-packager, or a > market software to

Re: [FFmpeg-user] ffmpeg doesn't reconnect when capturing live connections

2025-01-24 Thread FFmpeg Toronto
Add verbosity and see if you can pickup on that error? `-v 48` should do it. On Fri, Jan 17, 2025 at 8:00 AM arthurpeabody wrote: > I started identical captures on my home computer and at a remote server. > The capture at home stopped capturing at 42 minutes; the capture at the > remote computer

Re: [FFmpeg-user] FFMPEG Integration with Intratrust DRM

2025-01-24 Thread Christian David
Use ffmpeg to transcoding without encrypt and you will need a packager to get unencrypted content and encrypt with your DRM, like shaka-packager, or a market software to do it, like flussonic. Regards. > Em 24 de jan. de 2025, à(s) 06:48, rame...@unisysinfo.in escreveu: > > Any update please ?

Re: [FFmpeg-user] FFMPEG Integration with Intratrust DRM

2025-01-24 Thread rameshk
Any update please ? Thanks & Regards Ramesh Kumar System Administrator Unisys Infosolutions C: +91 9416778187 Email:- rame...@unisysinfo.in From: rame...@unisysinfo.in Sent: 22 January 2025 10:31 AM To: ffmpeg-user@ffmpeg.org Cc: jasp...@unisysinfo.i

[FFmpeg-user] FFMPEG Integration with Intratrust DRM

2025-01-21 Thread rameshk
Hi Team Please help us to integrate ffmpeg with Intertrust DRM. Please share documentation and flow for the same. Thanks & Regards Ramesh Kumar System Administrator Unisys Infosolutions C: +91 9416778187 Email:- rame...@unisysinfo.in _

[FFmpeg-user] ffmpeg compilation failed while compiling ffmpeg git at the point amf.

2025-01-21 Thread Guddla Rupesh
Hi I am Rupesh from India and I brought a new system with AMD Ryzen zen3 5500GT and Asus prime B450 motherboard. I failed compiling the source code of ffmpeg which is downloaded from git at the point of AMF in Linux Operating System. I have installed the following Linux Operating Systems Arch Lin

[FFmpeg-user] ffmpeg doesn't reconnect when capturing live connections

2025-01-17 Thread arthurpeabody
I started identical captures on my home computer and at a remote server. The capture at home stopped capturing at 42 minutes; the capture at the remote computer finished. The process at home is still running; the process at the remote computer ended. No error was reported. https://pastebin.c

[FFmpeg-user] ffmpeg doesn't reconnect when capturing live connections

2025-01-14 Thread arthurpeabody
Whoops! Ignore that example. The stream went down. I'll have an example in which it didn't eventually. ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-user To unsubscribe, visit link above, or email ffmp

[FFmpeg-user] ffmpeg doesn't reconnect when capturing live connections

2025-01-14 Thread arthurpeabody
ffmpeg quit 14 minutes into this capture, didn't reconnect: https://pastebin.com/uGHPqiBy ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-user To unsubscribe, visit link above, or email ffmpeg-user-requ...@

Re: [FFmpeg-user] ffmpeg doesn't reconnect when capturing live connections

2025-01-12 Thread Carl Zwanzig
On 1/12/2025 6:28 PM, arthurpeabody wrote: There is no banner and stream. Hmm, the originally-posted command ffmpeg -i https://playerservices.streamtheworld.com/api/livestream-redirect/KUNMFM_32.mp3 -t 180 -reconnect true -reconnect_streamed true -reconnect_on_network_error true -timelimit

Re: [FFmpeg-user] ffmpeg doesn't reconnect when capturing live connections

2025-01-12 Thread arthurpeabody
Quoth Carl Zwanzig: 'That's missing the entire banner and stream info - "Always show your actual, unscripted ffmpeg command and the complete, uncut console output from your command." (the first point in faq section 6.1)' I showed the entire console output. Here's the command in my script: ffmpe

Re: [FFmpeg-user] ffmpeg doesn't reconnect when capturing live connections

2025-01-12 Thread Carl Zwanzig
On 1/12/2025 11:27 AM, arthurpeabody wrote: There was nothing until I terminated the processes with kill: That's missing the entire banner and stream info - "Always show your actual, unscripted ffmpeg command and the complete, uncut console output from your command." (the first point in faq s

Re: [FFmpeg-user] ffmpeg doesn't reconnect when capturing live connections

2025-01-12 Thread arthurpeabody
Quoth Carl Zwanzig: ' Please always include not only the complete command but the command output, it often contains quite useful info for debugging (see section 6 of https://www.ffmpeg.org/mailing-list-faq.html).' There was nothing until I terminated the processes with kill: [out#0/mp3 @ 0x2c31d

Re: [FFmpeg-user] [ffmpeg-user] what do Ignoring outlier non primary stream endtime 1813.839966 means ?

2025-01-12 Thread cavelier via ffmpeg-user
Le Sun, 12 Jan 2025 16:10:54 +0100, cavelier via ffmpeg-user a écrit : > Hi; > i don't find any exponations in documentation about this messages of > outlier streams... > The consequences are that the film runs normally but about a few > minutes picture becomes black , the film carries only with

Re: [FFmpeg-user] ffmpeg doesn't reconnect when capturing live connections

2025-01-12 Thread Carl Zwanzig
On 1/12/2025 7:28 AM, arthurpeabody wrote: I capture live streams. Please always include not only the complete command but the command output, it often contains quite useful info for debugging (see section 6 of https://www.ffmpeg.org/mailing-list-faq.html). z!

[FFmpeg-user] ffmpeg doesn't reconnect when capturing live connections

2025-01-12 Thread arthurpeabody
I capture live streams. When a stream drops ffmpeg stops capturing, doesn't reconnect, and keeps running after the time limit. For example: ffmpeg -i https://playerservices.streamtheworld.com/api/livestream-redirect/KUNMFM_32.mp3 -t 180 -reconnect true -reconnect_streamed true -reconnect_on_n

[FFmpeg-user] [ffmpeg-user] what do Ignoring outlier non primary stream endtime 1813.839966 means ?

2025-01-12 Thread cavelier via ffmpeg-user
Hi; i don't find any exponations in documentation about this messages of outlier streams... The consequences are that the film runs normally but about a few minutes picture becomes black , the film carries only with sound and black image. Perhaps the encoding stops after a few minutes. Is the f co

Re: [FFmpeg-user] FFMPEG SLOW (new versions)

2025-01-09 Thread Carl Zwanzig
On 1/9/2025 11:22 AM, Giovanni Fast1 wrote: The ffmpeg.exe I use is an executable of 108.45 GB, filedate 25 Oct 2021, ant it does the job at 65-70 frames per second, pretty fast. But if I replace the ffmpeg.exe file with a more recent one, including the one released a few days ago (137.53 MB,

Re: [FFmpeg-user] FFMPEG SLOW (new versions)

2025-01-09 Thread Paul B Mahol
On Thu, Jan 9, 2025 at 7:23 PM Giovanni Fast1 wrote: > Dear sirs at FFMPEG, > > I need some help and I hope this email is the right way. > > I am just a light user of ffmpeg.exe. My PC is based on a Intel Core I5, > with 8 GB ram, SSD, Windows 11; I mainly use FFMPEG to adjust the audio > level o

[FFmpeg-user] FFMPEG SLOW (new versions)

2025-01-09 Thread Giovanni Fast1
Dear sirs at FFMPEG, I need some help and I hope this email is the right way. I am just a light user of ffmpeg.exe. My PC is based on a Intel Core I5, with 8 GB ram, SSD, Windows 11; I mainly use FFMPEG to adjust the audio level of my movies, that generally are mp4 files. I use simple comman

[FFmpeg-user] [ffmpeg] read progress of audio streams

2025-01-05 Thread nulkode via ffmpeg-user
at the moment, i'm reading the progress of a conversion with `frames`, but when i am only working with audio streams, there are no frames and therefore no way to track the progress this way. is there any other way to track the progress? ___ ffmpeg-use

Re: [FFmpeg-user] ffmpeg v7.1 h264 (libx264) stretching video on X-axis (take2 w/ smaller pix)

2025-01-03 Thread Dat Head
oops, sorry i top posted last reply (newbie!) well adding -aspect 4:3 to ffmpeg made it work as i expected (meaning no unanticipated aspect changes) but don't know why that was needed in this case (i'd still like to hear about the square bracket ratio numbers, versus the non-bracketed ones) __

Re: [FFmpeg-user] ffmpeg v7.1 h264 (libx264) stretching video on X-axis (take2 w/ smaller pix)

2025-01-03 Thread Dat Head
it is def distorted in some way, but vlc player is what is making it look that way i think now, i brought the orig mpeg2 and h264 up in avidemux and don't see the issue. can anybody explain the Aspect Ratio numbers in the square brackets of the original? (that is only diff i see and indeed it's an

Re: [FFmpeg-user] ffmpeg v7.1 h264 (libx264) stretching video on X-axis (take2 w/ smaller pix)

2025-01-03 Thread Vincent Deconinck
On Fri, Jan 3, 2025 at 4:26 PM Ferdi Scholten wrote: > Well overlaying both images on top of each other clearly shows the face > did not get wider, however because the transcoded image lacks some fine > details it appears to look wider. > Well, I think the OP meant that the aspect ratio changed.

Re: [FFmpeg-user] ffmpeg v7.1 h264 (libx264) stretching video on X-axis (take2 w/ smaller pix)

2025-01-03 Thread Ferdi Scholten
On 03-01-2025 00:59, Dat Head wrote: first time posting here, take it easy on me ;-) seems i slightly exceeded the size limit and posting was truncated ffmpeg version 7.1-essentials_build-www.gyan.dev Copyright (c) 2000-2024 the FFmpeg developers built with gcc 14.2.0 (Rev1, Built by MSYS2 pr

[FFmpeg-user] ffmpeg v7.1 stretching video on X-axis

2025-01-02 Thread Dat Head
first time posting here, take it easy on me ;-) ffmpeg version 7.1-essentials_build-www.gyan.dev Copyright (c) 2000-2024 the FFmpeg developers built with gcc 14.2.0 (Rev1, Built by MSYS2 project) ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org http

[FFmpeg-user] FFmpeg: "Error muxing a packet" when trying to concatenate two GoPro videos. Why?

2024-12-09 Thread Franck Dernoncourt
Problem statement I was trying to fix that problem: FFmpeg messes up the original stream order of a.MP4 when running: ffmpeg -sseof -1 -i a.MP4 -map 0:v -map 0:a -map 0:3 -c copy -copy_unknown a_last_1_second.MP4 This causes my attempt to concatenate two

[FFmpeg-user] ffmpeg doubles play time converting 48K to 44.1K

2024-10-14 Thread Ian! D. Allen
Why does ffmpeg double the play time in a conversion from 48K to 44.1K? If I turn off the Xing header in the conversion, the play time is correct. See the eyeD3 times below. VLC shows these times as well. Ubuntu 24.04.1 LTS - ffmpeg version 6.1.1-3ubuntu5+esm2 (also true for Ubunto 20.04.6 LTS -

[FFmpeg-user] ffmpeg-patchwork & trac are down/offline

2024-10-10 Thread Dennis Mungai
Hello there, Several domains are down/offline, including: 1. https://patchwork.ffmpeg.org/ 2. FFmpeg trac https://trac.ffmpeg.org/ It seems to be very intermittent at the moment. ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org https://ffmpeg.org/ma

[FFmpeg-user] FFmpeg as a "service" with nginx

2024-09-26 Thread James Greenlee
Hello all, I'm looking at trying to "distribute" some Axis cameras to various endpoints. The thought process I have on this is to startup an NginX instance, have a process(es) that connect to the Axis cameras (RTSP), and then mount those feeds to NginX RTMP points. From there I should be able

[FFmpeg-user] FFmpeg 6.1.2 about vulkan h264 video decode

2024-09-25 Thread Wonskuis Yu(SH-RD)
Hi, When I use ffmpeg 6.1.2 to do transcode as flow cmd: ffmpeg.exe �Chwaccel vulkan �CI H264-4k.mp4 output.mp4 The assert of null pointer occur, after debug source code, I found the pointer of layered_frame is null, because it doesn’t created. Further, I found it only be created when d

[FFmpeg-user] ffMpeg commnad line issue

2024-09-05 Thread Sargis Boyakhchyan via ffmpeg-user
Hi dears,I am developer and using "com.arthenica:mobile-ffmpeg-full-gpl:4.4"this lib in the project. but there is problem when trying to use text_align command while saving text on the video. though in documentation there is information that it will work and there is such option. So please let

[FFmpeg-user] ffMpeg commnad line issue

2024-09-05 Thread Sargis Boyakhchyan via ffmpeg-user
Hi dears,I am developer and using "com.arthenica:mobile-ffmpeg-full-gpl:4.4"this lib in the project. but there is problem when trying to use text_align command while saving text on the video. though in documentation there is information that it will work and there is such option. So please let

[FFmpeg-user] FFmpeg devs linked in my new Foreign Policy article

2024-08-28 Thread Douglas Lucas
Dear FFmpeg community, Yesterday Foreign Policy, based in D.C. and founded in 1970, published my new article advocating for a proposed global commons framework for public data collaboration. Since the news outlet's audience consists of many higher-ups in government / civil service, international r

[FFmpeg-user] FFMPEG V5.1.2 how to capture SD IMX 50

2024-08-05 Thread Theo Kooijmans
Does anyone have the commands to capture PAL SD IMX50 video with FFMPEG v5.1.2? Regards, Theo Kooijmans ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-user To unsubscribe, visit link above, or email f

Re: [FFmpeg-user] [Ffmpeg-user] Issue converting RTSP stream to HLS with partial audio on source

2024-07-09 Thread Carl Zwanzig
On 7/9/2024 3:53 AM, Rui Gabriel Nunes via ffmpeg-user wrote: For reference, this is the ffmpeg command we are using at the moment: ffmpeg -probesize 5 -analyzeduration 5 -rtsp_transport tcp -i "rtsp://" -c:v copy -c:a aac -hls_flags append_list+split_by_time+omit_endlist -hls_segment

[FFmpeg-user] [Ffmpeg-user] Issue converting RTSP stream to HLS with partial audio on source

2024-07-09 Thread Rui Gabriel Nunes via ffmpeg-user
Hello, I am currently developing a streaming solution for a client which uses FFmpeg to process an RTSP stream and convert it into HLS format. During the testing phase we have run into issues regarding audio processing and require some guidance on how we might possibly resolve it. Specifically

Re: [FFmpeg-user] ffmpeg wav lossless to youtube mov?

2024-06-27 Thread Reino Wijnsma
On 2024-05-24T02:23:16+0200, Ferdi Scholten wrote: > Youtube simply does not accept lossless audio in a video (at all). You have > to encode according to their specifications. They explicitly say to use AAC > in .mov containers, so do not use anything else as it will be not be accepted. Sorry fo

[FFmpeg-user] ffmpeg doesn't properly terminate when using SRT -> HLS but works for SRT -> MP4

2024-06-16 Thread Tim Hartmann via ffmpeg-user
Hello, I have been trying to encode video sent over SRT as ABR HLS. This works fine while the stream is running but once the sender stops sending (stopping normally or killing the process makes no difference) ffmpeg keeps encoding new segments containing just the last frame as fast as the CPU

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] ffmpeg - compressing an mp4 creates a video distortion (horizontal stretch)

2024-06-13 Thread iburman
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 a web site I have the following problem with the segme

Re: [FFmpeg-user] FFmpeg-devel signup and patch status

2024-06-03 Thread Thilo Borgmann via ffmpeg-user
Hi, I tried to sign up on FFmpeg-devel, but the reset password is not reaching me. your mail is not subscribed to ffmpeg-devel (yet). Did you check your spam for registration mails? GMail behaves very strict sometimes, trying another mail address might be worth it in the long run if this keep

[FFmpeg-user] FFmpeg-devel signup and patch status

2024-05-31 Thread Renato Santos
Hello, I tried to sign up on FFmpeg-devel, but the reset password is not reaching me. The patch I would submit is just this patch but based on version 7.0 and with an updated doc/protocols.texi. I think that was the reason this was not merged before? https://patchwork.ffmpeg.org/project/ffmpeg/p

[FFmpeg-user] ffmpeg and ffprobe 7.0 cannot read video files from the Sony A7SIII camera

2024-05-27 Thread Jean Vézina
Good evening, I have upgraded ffmpeg (and ffprobe) from 6.1.1 to 7.0 and the Sony A7SIII video files can no longer be read. I can supply a test file if required. Regards, Jean Example with 6.1.1 (correct) ffprobe C0033.MP4 ffprobe version 6.1.1 Copyright (c) 2007-2023 the FFmpeg developers

[FFmpeg-user] ffmpeg built without liblensfun

2024-05-27 Thread Chris Wilkinson via ffmpeg-user
Hi all, I've been trying to figure out how to correct lens distortion in video for a very long time, but tonight have discovered that ffmpeg has a plugin for the excellent lensfun library but the ubuntu PPA packaged versions for 22.04 are built with --disable-liblensfun (why oh why?). Does a

Re: [FFmpeg-user] ffmpeg wav lossless to youtube mov?

2024-05-24 Thread Reindl Harald
Am 24.05.24 um 01:23 schrieb John Hawkinson: Zathras: It appears your assumption (6) that the files are "exactly the same" because the spectrograms are the same is not correct. I downloaded https://www2.cs.uic.edu/~i101/SoundFiles/BabyElephantWalk60.wav as a test file and converted it with th

Re: [FFmpeg-user] ffmpeg wav lossless to youtube mov?

2024-05-24 Thread Moritz Barsnick via ffmpeg-user
On Fri, May 24, 2024 at 02:23:16 +0200, Ferdi Scholten wrote: > > what is this supposed to be? > > 16 Bit with 44,1 kHz (CD) are sufficient. > > So, we have PCM_S16BE and PCM_S16LE. > > > > Whats the exact command to get it done? > > Youtube simply does not accept lossless audio in a video (at all)

Re: [FFmpeg-user] ffmpeg wav lossless to youtube mov?

2024-05-23 Thread Paul B Mahol
On Fri, May 24, 2024 at 1:12 AM Zathras Yes wrote: > Hi, > > as i have mentioned to Mr. Reindl, the online-converter > https://www.freeconvert.com/wav-to-mov does the trick. > > ffmpeg should be able to do the same, I suppose. > May be, I am in error, may be not... > > 1. make a wav-files (16 Bi

Re: [FFmpeg-user] ffmpeg wav lossless to youtube mov?

2024-05-23 Thread Ferdi Scholten
Hi, what is this supposed to be? 16 Bit with 44,1 kHz (CD) are sufficient. So, we have PCM_S16BE and PCM_S16LE. Whats the exact command to get it done? Thx Youtube simply does not accept lossless audio in a video (at all). You have to encode according to their specifications. They explicit

Re: [FFmpeg-user] ffmpeg wav lossless to youtube mov?

2024-05-23 Thread John Hawkinson
Zathras: It appears your assumption (6) that the files are "exactly the same" because the spectrograms are the same is not correct. I downloaded https://www2.cs.uic.edu/~i101/SoundFiles/BabyElephantWalk60.wav as a test file and converted it with the freeoconvert.com online converter, and ffprobe r

Re: [FFmpeg-user] ffmpeg wav lossless to youtube mov?

2024-05-23 Thread Zathras Yes
Hi, as i have mentioned to Mr. Reindl, the online-converter https://www.freeconvert.com/wav-to-mov does the trick. ffmpeg should be able to do the same, I suppose. May be, I am in error, may be not... 1. make a wav-files (16 Bit, 44.1 kHz) "sound.wav" 2. use the mentioned online converter from

Re: [FFmpeg-user] ffmpeg wav lossless to youtube mov?

2024-05-23 Thread Andrew Randrianasulu
пт, 24 мая 2024 г., 01:37 Reindl Harald : > > > Am 24.05.24 um 00:34 schrieb Zathras Yes: > > Yes, I know that. Just add a picture and it's fine. > > MOV with PCM/WAV is never fine > from compatibility with older software? yes. Youtube probably does not want to serve relatively huge lossless unco

Re: [FFmpeg-user] ffmpeg wav lossless to youtube mov?

2024-05-23 Thread Reindl Harald
Am 24.05.24 um 00:34 schrieb Zathras Yes: Yes, I know that. Just add a picture and it's fine. MOV with PCM/WAV is never fine Please don't repeat all this over and over, because it is tiresome. if you won't be an idiot you would understand it by telling once For this now, I will not furt

Re: [FFmpeg-user] ffmpeg wav lossless to youtube mov?

2024-05-23 Thread Reindl Harald
Am 24.05.24 um 00:31 schrieb Zathras Yes: Well, I am not ignorant, just stating the facts, especially about the online-converter. What you are writing contradicts with the facts here: It's not a matter of liking or not, it's a fact. * Now, I tell you what: 1. make a w

Re: [FFmpeg-user] ffmpeg wav lossless to youtube mov?

2024-05-23 Thread Zathras Yes
Yes, I know that. Just add a picture and it's fine. Please don't repeat all this over and over, because it is tiresome. For this now, I will not further answer to you! Thx. On Fri, May 24, 2024 at 12:32 AM Reindl Harald wrote: > > > Am 24.05.24 um 00:29 schrieb Zathras Yes: > > Supported file

Re: [FFmpeg-user] ffmpeg wav lossless to youtube mov?

2024-05-23 Thread Reindl Harald
Am 24.05.24 um 00:29 schrieb Zathras Yes: Supported file formats: - - PCM audio in WAV container So, it seems possible to put a wav into a youtube-video, right? How to do it? https://support.google.com/youtube/troubleshooter/2888402?hl=en Note: Audio files, like MP3, WAV, or PCM

Re: [FFmpeg-user] ffmpeg wav lossless to youtube mov?

2024-05-23 Thread Zathras Yes
Well, I am not ignorant, just stating the facts, especially about the online-converter. What you are writing contradicts with the facts here: It's not a matter of liking or not, it's a fact. * Now, I tell you what: 1. make a wav-files (16 Bit, 44.1 kHz) "sound.wav" 2. use

Re: [FFmpeg-user] ffmpeg wav lossless to youtube mov?

2024-05-23 Thread Zathras Yes
Supported file formats: - - PCM audio in WAV container So, it seems possible to put a wav into a youtube-video, right? How to do it? On Fri, May 24, 2024 at 12:26 AM Reindl Harald wrote: > > > Am 24.05.24 um 00:22 schrieb Zathras Yes: > > Now, I tell you what: > > > > 1. make a wav-fil

Re: [FFmpeg-user] ffmpeg wav lossless to youtube mov?

2024-05-23 Thread Reindl Harald
Am 24.05.24 um 00:25 schrieb Zathras Yes: Well, why being so rude? because you are ignorant Than would you be so kind to explain, why the online converter does the trick? it don't I would expect, that ffmpeg could do the same, right? a MOV-CONTAINER can't contain WAV/PCM youtube say

Re: [FFmpeg-user] ffmpeg wav lossless to youtube mov?

2024-05-23 Thread Reindl Harald
Am 24.05.24 um 00:22 schrieb Zathras Yes: Now, I tell you what: 1. make a wav-files (16 Bit, 44.1 kHz) "sound.wav" i did 2. use the mentioned online converter from "sound.wav" to "upload.mov" i did and i posted you the error screen 3. Upload this "upload.mov" to youtube impossible b

Re: [FFmpeg-user] ffmpeg wav lossless to youtube mov?

2024-05-23 Thread Zathras Yes
Well, why being so rude? Than would you be so kind to explain, why the online converter does the trick? I would expect, that ffmpeg could do the same, right? On Fri, May 24, 2024 at 12:22 AM Reindl Harald wrote: > > > Am 24.05.24 um 00:17 schrieb Reindl Harald: > > > > > > Am 24.05.24 um 00:1

Re: [FFmpeg-user] ffmpeg wav lossless to youtube mov?

2024-05-23 Thread Zathras Yes
Now, I tell you what: 1. make a wav-files (16 Bit, 44.1 kHz) "sound.wav" 2. use the mentioned online converter from "sound.wav" to "upload.mov" 3. Upload this "upload.mov" to youtube. 4. Go to the youtube-link and download the file "download.mov" 5. extract the sound file out of "download.mov" -->

Re: [FFmpeg-user] ffmpeg wav lossless to youtube mov?

2024-05-23 Thread Reindl Harald
Am 24.05.24 um 00:17 schrieb Reindl Harald: Am 24.05.24 um 00:12 schrieb Zathras Yes: Ok, instead of repeating here over and over: First question: Is video with lossless sound possible for youtube? Yes or No answer please. no - and whatever you upload to youtube will be finally re-encode

Re: [FFmpeg-user] ffmpeg wav lossless to youtube mov?

2024-05-23 Thread Zathras Yes
Hi, what is this supposed to be? 16 Bit with 44,1 kHz (CD) are sufficient. So, we have PCM_S16BE and PCM_S16LE. Whats the exact command to get it done? Thx On Fri, May 24, 2024 at 12:14 AM Andrew Randrianasulu < randrianas...@gmail.com> wrote: > пт, 24 мая 2024 г., 01:00 Reindl Harald : > > >

Re: [FFmpeg-user] ffmpeg wav lossless to youtube mov?

2024-05-23 Thread Reindl Harald
Am 24.05.24 um 00:12 schrieb Zathras Yes: Ok, instead of repeating here over and over: First question: Is video with lossless sound possible for youtube? Yes or No answer please. no - and whatever you upload to youtube will be finally re-encoded anyways - you won't find any WAV audio on th

Re: [FFmpeg-user] ffmpeg wav lossless to youtube mov?

2024-05-23 Thread Andrew Randrianasulu
пт, 24 мая 2024 г., 01:00 Reindl Harald : > > > Am 23.05.24 um 23:44 schrieb Zathras Yes: > > And yes, a conversion of the soundfiles is not wanted, exactly. > > > > In a picky manner of speaking, it is a conversion of one file to another, > > but let''s not go into this nitpicking here. > > again

Re: [FFmpeg-user] ffmpeg wav lossless to youtube mov?

2024-05-23 Thread Zathras Yes
Ok, instead of repeating here over and over: First question: Is video with lossless sound possible for youtube? Yes or No answer please. Second question: How to create such a files with ffmpeg? (The mentioned online converter can do this) What's the ffmpeg command for it? Thx On Fri, May 24,

Re: [FFmpeg-user] ffmpeg wav lossless to youtube mov?

2024-05-23 Thread Reindl Harald
Am 23.05.24 um 23:44 schrieb Zathras Yes: And yes, a conversion of the soundfiles is not wanted, exactly. In a picky manner of speaking, it is a conversion of one file to another, but let''s not go into this nitpicking here. again: "-acodec copy" is NOT a conversion - you are pumping a uns

Re: [FFmpeg-user] ffmpeg wav lossless to youtube mov?

2024-05-23 Thread Reindl Harald
Am 23.05.24 um 23:44 schrieb Zathras Yes: Sorry, but what you are saying here is simply plain *wrong* ! There *is* lossless music in mov. The online converter does exactly that https://www.freeconvert.com/wav-to-mov You can try this for yourself, if you don't believe it. i did and it IS NO

Re: [FFmpeg-user] ffmpeg wav lossless to youtube mov?

2024-05-23 Thread Reindl Harald
Am 23.05.24 um 23:30 schrieb Zathras Yes: Hello, I like to upload lossless sound to youtube. ok, i forgot to add a picture. so, we take this ffmpeg.exe -i picture.jpg -i music.wav -acodec copy upload.mov This gives a video with lossless audio, right? (It's playing perfectly on my computer)

  1   2   3   4   5   6   7   8   9   10   >