0
votes
1answer
72 views

Is there any way to change bitrate of MP3 file in Android? [closed]

In Android, there are no classes or libraries to change bitrate of MP3 files. So we must use extended libraries. There are two extended library to do this, one is ffmpeg and another is lame. But in a ...
1
vote
0answers
113 views

Changing the bit rate of an MP3 bitrate on Android without ffmpeg

In my project, I have a 320kbps MP3 that is quite large. Since it's so big, I'd like to convert it to use a lower bit rate (about 80kbps). I know that the ffmpeg library exists to do this, but using ...
0
votes
1answer
519 views

setting video bit rate through ffmpeg API is ignored for libx264 Codec

I am transcoding a video using FFMPEG API in c code. I am trying to set the video bit rate using the ffmpeg API as shown below: ovCodecCtx->bit_rate = 100 * 1000; The Encoder I am using is ...
1
vote
1answer
587 views

Http Live Streaming EXT-X-STREAM-INF, Calculating BANDWITH

Initially I've tried to find possible ways to do HLS segmenting on other non-Mac platforms. Segmenting videos for HLS involves the following steps: 1) Splitting the encoded video into segments 2) ...
2
votes
0answers
2k views

How to force Constant Bit Rate using FFMPEG

I use FFMPEG (command line Input) to convert my videos to a specific output format. The problem I am facing is when I try to pass a constant bit rate(700 kbps) to FFMPEG, the result is an output video ...
4
votes
1answer
3k views

FFMPEG ignores bitrate

I am new to video encoding so bear with me. I am using FFMPEG. I have an mp4 file which is 640 x 350 with an average bitrate of around 2000kb (I think) and a filesize of 80Mb. I want to convert this ...
0
votes
1answer
586 views

FFmpeg: bitrate change dynamically

I read the previous thread and this is the response from NISHAnT, FFMPEG: Dynamic change of bit_rate for Video avcodec_init(); avcodec_register_all(); codec = ...
0
votes
1answer
2k views

How to change bitrate mode: VBR to CBR with MPEG4 of H264 file?

I've tried to convert bitrate mode from VBR to CBR with FFMPEG library,but bitrate mode cannot change. My command line: ffmpeg -i <in file> -f mpegts -acodec libmp3lame -ar 48000 -ab 64k -s ...
0
votes
1answer
253 views

FFMPEG: Dynamic change of bit_rate for Video

I use ffmpeg codes in my C++ app and would like to control the bit_rate parameter for VIDEO there. I tried to change its value in work (via ost->st->codec->codec->bit_rate), but ffmpeg did not wish to ...
0
votes
1answer
635 views

ffprobe shows bitrate of 0.0 or N/A for h264 stream

I have a 11-minute .mkv file with a h264 video stream, taking up 184MB of space. I would like to reduce the size of this file. I figured I could just reduce the bit-rate. But ffprobe doesn't output ...
1
vote
3answers
1k views

FFMPEG Bitrate Calculation / Optimization

I wrote the following wrapper for FFMPEG: function Video($input, $crop = null, $scale = null, $output = null, $extra = null) { $input = @new ffmpeg_movie($input); if ((is_object($input) === ...
2
votes
2answers
2k views

ffmpeg (webm) doesn't respect requested bitrate

On a 2 minute clip: ffmpeg.exe -pass 1 -passlogfile pass.log -i E002.avi -b 368k -maxrate 1000k -ab 62 -y out.webm ffmpeg.exe -pass 2 -passlogfile pass.log -i E002.avi -b 368k -maxrate 1000k ...
0
votes
2answers
685 views

Bitrate Calculation

(Excuse for My english it's freak i´m from LA) I'm trying to finish a trascoding process in VB6.0 , i'm working with ffmpeg , its a very good transcoder , to finish the project i want a progress bar ...