Is anyone having problems converting audio sample rate to a different rate with the latest ffmpegs? I tried changing AAC audio rate from 25k to 44.1K
ffmpeg -i video.mp4 -c:v libx264 -c:a aac -r:a 44.1k -b:a 129k output.mp4
It accepts it but does not change it.
The only combination that works is:
ffmpeg -i video.mp4 -c:v libx264 -c:a aac -ar 44.1k -ab 129k output.mp4 does not change audio sample rate
I searched the internet but could not find where the attributes had been exclusively changed. Video codec still takes -b:v, -bv, and -b ???
Update.. the bitrate fails to set not matter what option you select.
+ Reply to Thread
Results 1 to 3 of 3
-
Last edited by Budman1; 28th Sep 2019 at 12:05.
-
Try to use explicit audio filter "aresample=resampler=soxr:osr=44100:cutoff=0.990:d ither_method=none" .
-
Pandya, thank you. I will try that but it is important for me to sometimes change both the sample rate and bitrate. This may solve the sample rate problem but why did they eliminate the -r:a that I have always used and why is bitrate not changing at all with any designation?
Similar Threads
-
Axiom FFmpeg stopped working
By jooj in forum AudioReplies: 1Last Post: 10th Nov 2019, 14:24 -
ffmpeg help not working
By loa909 in forum Newbie / General discussionsReplies: 7Last Post: 9th Jul 2018, 12:40 -
ffmpeg, Interlace, Frame Rate and File Size
By chris319 in forum Video ConversionReplies: 4Last Post: 15th Jun 2018, 01:08 -
ffmpeg drawtext not working
By vhelp in forum ProgrammingReplies: 21Last Post: 5th Feb 2017, 21:34 -
Ffmpeg with http proxy not working
By Karol in forum Video Streaming DownloadingReplies: 2Last Post: 23rd Nov 2016, 09:22