|
Is there a command-line utility to determine the bitrate of an mp3 file?
Started by chris on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at superuser):
File is able to identify the ....
It is cross on Ubuntu.
You can get all ID3 meta-tags including the bitrate
Audio Bitrate : 128000
Running the command without any arguments gets you all the tags.
But -t should give you what you want.
|
|
What is a good command line tool to get the video bitrate of a divx or xvid avi file for linux?
Started by Kyle Brandt on
, 4 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
CLIP_INFO_N=1 ID_FILENAME=foo.avi ID_DEMUXER=avi ID_VIDEO_FORMAT=XVID ID_VIDEO_BITRATE=990928 ID_VIDEO_AUDIO_BITRATE=135104 ID_AUDIO_RATE=0 ID_AUDIO_NCH=0 ID_LENGTH=1288.95 ID_SEEKABLE=1 Opening video ch, s16le, 128.0 kbit/8.33% (ratio:....
|
|
Hi,
I need to get the bit rate of a mp3 file which is being streamed as a netstream object in flash action scripting. I am using Flash Media Server 3.2.
I need the bitrate to calculate the duration of the mp3 file using the formula: Duration = file size...
Started by renegadeMind on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Have you tried the bitrate for the mp3 file which....
I'm not really sure about MP3 streaming, but it seems likely to me that the bitrate information script to determine the bitrate, and query this information separately from the stream.
|
Ask your Facebook Friends
|
I need to get bitrate information from audio files, for some reason AudioFileGetProperty function with kAudioFilePropertyBitRate constant always returns 0 for me. The same with kAudioFilePropertyInfoDictionary, the resulting dictionary doesnt contain ...
Started by stackzerad on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Will still run, but the AudioFile framework won't know about the bitrate property at all, and would.
|
|
I want a quick way to be able to select a bunch of MP3s and burn them to CD (as MP3s on a data disk) for playback in the car, or to a usb key. Lots of apps including iTunes & Windows Media Player do this. However, a lot of my MP3s are at 320kbps, and ...
Started by Mark Heath on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at superuser):
* quality bitrate and copy it to your player..
The bitrate of your mp3 music collection so that the filesize can be dramatically reduced all ID3 tags with ease * advanced options: detailed bitrate settings, sample frequency etc.
|
|
Apple has included HTTP Adaptive Bitrate Streaming in the iPhone OS 3.0, in particular Safari handles this automatically.
I'd like to play with this in a low cost manner, but I expect it'll require a custom HTTP server in the worst case, and interesting...
Started by Adam Davis on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at serverfault):
I assume they must all have cuts at the same positions (every 2 .
To an M3U8 file for each bitrate.
|
|
Hi experts , (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 for the trascoding process but it's so ...
Started by Ramses1974 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If you have the file length in seconds.
The bitrate won't help you in calculating progress.
|
|
Apple has included HTTP Adaptive Bitrate Streaming in the iPhone OS 3.0, in particular Safari handles this automatically.
I'd like to play with this in a low cost manner, but I expect it'll require a custom HTTP server in the worst case, and interesting...
Started by Adam Davis on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I assume they must all have cuts at the same positions (every 2 or 10 seconds .
For each bitrate.
|
|
This might be a way too generic question, but what is the general approach for seeking within media files (video or audio of any kind/format) if the data has variable bitrate (VBR)?
It seems an easy thing to do if the stream has a constant bitrate (CBR...
Started by Mecki on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
OTOH, most video bit streams....
With a VOB file you get not only the bitstream itself, but also pointers to consecutive frames, so you can skip to another frame quickly and easily .
This is exactly why (for example) DVDs use VOB files instead of raw bitstreams .
|
|
I'm processing user videos with differing aspect ratios. It seems FFMPEG only allows you to specify a fixed resolution. I want the output res to be appropriate for the input res. Similarly, I'd like FFMPEG to intelligently set the output bitrate based...
Started by Jegschemesch on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Ffmpeg has an library interface - I know nothing about it, but maybe you could use that to get the information directly into your code?
http://www.inb.uni-luebeck.de/~boehme/using%5Flibavcodec.html
Someone named ahaslam may have already written a short... .
|