I am new to FFMPEG and I am suppose to scan all of my files for sample rate. I am not sure as to what this is because I am new to this and don't know how to even get started with FFMPEG's scanning. These live streams are mp3 streams, music tracks. I am familiar with PHP if that makes any difference.
feedback
|
|
When you call FFMPEG with an input file, it will show you all of the data related to each stream:
There is a separate executable typically bundled with FFMPEG though that does what you need, and that is
In that file, you'll find something like this:
All you have to do then is use whatever scripting language you're using (PHP?) to split this up into key/value pairs (read lines and run | |||
|
feedback
|
|
| |||||
feedback
|