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

236 questions
0
votes
2 answers

junk data recieved in text box using comm port

I am getting junk values in textbox when connected to the comm port is it because my bitrate is wrong, then how could I identify the correct bit rate? I am using VB6 to get data from comm port to which a micro controller is connected Here I have…
user1963933
  • 11
  • 1
  • 3
  • 12
0
votes
1 answer

How to amplify, increase bitrate and Fadin- fadout the recorded audio in Windows Phone 7?

I am facing the following problem regarding to the voice (Audio) recording in windows phone 7. I am recording the sound using Microphone class available in Microsoft.Xna.Framework.Audio namespace. here is the code - Variable declaration: private…
0
votes
1 answer

MP3 files of same bitrate and same length have a different size

I'm currently working on some multi-channel audio recording software. The basic goal is to be able to record every input device on a computer. I noticed that when I record for a "long" time (more than 1 hour), the different mp3 files (which…
Bram W.
  • 1,419
  • 4
  • 14
  • 37
-1
votes
1 answer

Can ethtool provide the current incoming bitrate on a NIC

Is there an option in linux's ethtool command that retrieves the current incoming bitrate or packets-per-second straight from the NIC?
Seb
  • 11
  • 2
-1
votes
2 answers

Change Video Bitrate In Exoplayer 2.x

I tried to make a streaming app with ExoPlayer2.x . Now I got stuck in a problem. I am trying to make a Bitrate Changer. I don't want to use TrackSelector. I just want to use a method to change Bitrate of a single video to use when there is low…
devROYAL
  • 310
  • 2
  • 10
-1
votes
1 answer

bitrate and time into influxdb

I have filtered the bitrates from live streams and got the output below. I have constructed an API with Python and piped continuous data into influxdb, which should be monitored, like python api.py | python influx.py. However, I am unable to store…
-1
votes
1 answer

Make FFmpeg output a similar video quality

I'm using FFmpeg in my program to cut a video. This is the command my program executed: ffmpeg -i in.avi -ss 00:00:00.000 -to 00:04:35.000 out.avi Quality and size of out.avi are MUCH lower than in.avi. How can I tell FFmpeg to keep the quality of…
Nocta
  • 187
  • 1
  • 9
-1
votes
1 answer

Why does my re-recorded audio file play back with chipmunk voice?

I use NAudio 1.72 project to record new audio files and edit existing wav files. I noticed that whenever I open a 172kbps wav file and record part of the file, playback sounds like a chipmunk. The newly recorded wav files show a bit rate of 128kbps.…
newbie14
  • 85
  • 1
  • 5
-1
votes
1 answer

How to control the bitrate of youtube video on the go

I am using PHP as server side scripting. I want to know , How to control the quality of a video using php. Here is what i want to do. I will capture a video using any device and upload to server, and while retrieving the video i would like to…
Ramaraju.d
  • 1,227
  • 5
  • 25
  • 41
-2
votes
1 answer

What is the unit of time developed by Facebook by which common video bit rates are evenly divisible?

I saw an article a couple of years ago about a tiny unit of time that was developed and is used internally by Facebook. Nearly all common video bit rates are evenly divisible by this new unit so it simplifies some of the related math. I can't find…
David
  • 255
  • 1
  • 10
-2
votes
2 answers

SQL: Calculate bitrate

I have a column with bytes, and another with milliseconds. And I must calculate average bitrate in bits per second. I'm doing this: SELECT AVG(Bytes*8)/AVG(Milliseconds/1000) FROM Tracks Apparently it is wrong. I'm using an app with exercises I…
1 2 3
15
16