Questions tagged [bitrate]

Bitrate is the number of bits that are conveyed or processed per unit of time.

Bitrate is the number of bits that are conveyed or processed per unit of time.

More information at https://en.wikipedia.org/wiki/Bit_rate

252 questions
2
votes
0 answers

How to change webRTC audio bit rate in Firefox (51)

I have searched and searched but can not find a definitve answer to the question. By default Firefox sets the bitrate for any audio sent via webRTC to 40 kbps. Changing the SDP parameter works in any other browswer supporting webRTC with the…
Armin Hierstetter
  • 1,078
  • 2
  • 12
  • 27
2
votes
2 answers

How to set abr(average bitrate) on mp3 files using ffmpeg

I need to convert my mp3 from constant or variable bitrate to average bitrate. how can I do this? I've used -b 250k -minratre 50kb -maxrate 260kb But it goes constant bitrate when I run the command.
kmthrong kmthrongi
  • 145
  • 1
  • 5
  • 13
2
votes
0 answers

how to set bitrate correctly for aac encoding OSX

I have a 1 second PCM data which I write into an AAC file successfully. However, I can not control the bitrate of the output file. Here is the configuration of my AAC codec: AudioStreamBasicDescription clientFormat = {0}; clientFormat.mSampleRate …
mbaros
  • 825
  • 8
  • 31
2
votes
3 answers

How to get an MP3 bit rate in SWIFT

I am searching for a way of getting an mp3 bitrate like 128kbps or 320kbps for mp3 audio from url link. I have a UITableView that loads a list of files from url list, and I would like to display an audio quality. I have tried using AVAudioPlayer and…
Yaroslav Dukal
  • 3,894
  • 29
  • 36
2
votes
1 answer

Qt wrong duration with variable bitrate

QMediaPlayer calculates wrong duration with variable bitrate mp3. Yes, I know a similar topic was already opened, but is pretty old (2012). In addition, both VLC and Clementine, using Qt, for the same mp3 files can calculate the exact duration. So,…
2
votes
2 answers

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 -ab 62 -y out.webm the bitrate still goes up to…
Sirber
  • 3,358
  • 5
  • 25
  • 32
2
votes
3 answers

A COM Port on a Windows PC indicates the bit rate, or the Baud rate?

If you search around the internet, you can easily find websites, google images, as well as many (YouTube) videos that explain the various properties of COM/serial/RS232 ports. As far as i'm concerned in most of these they state that in the COM port…
KeyC0de
  • 4,728
  • 8
  • 44
  • 68
2
votes
1 answer

Lame - increase bitrate to 320

First I want to show my method for converting source .wav files to .mp3 by Lame library: - (void)convertFromWav:(NSString *)sourceFilePath ToMp3:(NSString *)resultName { NSString *mp3FileName = [resultName stringByAppendingString:@".mp3"]; …
Libor Zapletal
  • 13,752
  • 20
  • 95
  • 182
2
votes
1 answer

IIS: Download large file with wget - connection always fails with Bitrate Throottling

I have a problem to make IIS to allow download file with Bitrate Throottling. I set limit file to 100kb/s. There is no problem without bitrate limitation. But with limit I have a problem. I'm using a code similar to described in this…
Alexei
  • 1,289
  • 3
  • 19
  • 34
2
votes
0 answers

Gstreamer AAC ADTS with variable bitrate time duration calculation

I am using gstreamer for my aac files . I want to know how to calculate exact duration for AAC file with ADTS format(ie variable bitrate) in fast way. Right now I am calculating estimated duration at the start of frame which gives more error…
geek2geek_AWS
  • 556
  • 1
  • 7
  • 18
2
votes
1 answer

Bitrate JWplayer

I am having trouble to make jwplayer work with different bitrates. For each video, I am creating new output files with different suffixes that have lower bitrates: For instance, Output 1 (high bitrate): test-original.mp4 Output 2 (medium…
kandan
  • 715
  • 2
  • 12
  • 39
2
votes
2 answers

Change Bitrate of AudioRecord on Android

How can on Android the bits per sample be changed from 16 bit to 8 bit (or other bitrates) in a AudioRecord object when recording in wav format? This doesn't work (as discussed for example here: Using AudioRecord with 8-bit encoding in…
user2212461
  • 3,105
  • 8
  • 49
  • 87
2
votes
1 answer

How to find the bitrate value of the quality in jwplayer 6 auto mode?

I want to know the bitrate during video playback in jwplayer 6's auto mode. When the video starts, the selected value is "Auto". But unlike other values, the "Auto" value doesn't include bitrate or other parameters. my default parameters: primary:…
The Goat
  • 1,080
  • 13
  • 19
2
votes
2 answers

What is the correct way to set maxrate on android ffmpeg library?

I'm trying to control the max bitrate output using ffmpeg library on android. When I use the ffmpeg command line, the output bitrate is 166.78 kbit/s ffmpeg -y -i input.mp4 -c:v libx264 -preset medium -crf 29 -profile:v baseline -level: 3.0 -s…
Marcotmp
  • 71
  • 7
2
votes
1 answer

x264 rate control

We are using the x264 encoder in a video conferencing project, we have the basic streaming video working, however, we are having trouble understanding how the various rate control settings determine the final bitrate. We set the following…
Craig
  • 413
  • 7
  • 16