Posts: 40
	Threads: 12
	Joined: Jan 2021
	
	
 
	
		
		
 04.09.2021, 20:46
 
		04.09.2021, 20:46 
		
	 
	
		Hi !
Im looking for a tool which is capable of making a diagram/chart from an audio file (mp3,AAC,etc..),where the vertical axis is bitrate ,horizonal is time.
Similar like this ,for example :
Thanks in advance (again

)!
![[Image: 1dfd5a670660b0305e2cb8efa4388e26.png]](https://kepkuldes.com/images/1dfd5a670660b0305e2cb8efa4388e26.png) 
	 
 
	
	
	
		
	Posts: 12.047
	Threads: 65
	Joined: May 2017
	
	
 
	
	
		Don't know any tool which does this for all common audio formats.
But, if you know your way around some spreadsheet tool you could use ffprobe to create a csv with the values you want:
ffprobe -select_streams a -i "PATH TO INPUT" -show_entries "frame=pkt_dts,pkt_dts_time,pkt_pts_time,pkt_duration_time,pkt_pos,pkt_size,best_effort_timestamp,best_effort_timestamp_time,sample_fmt,nb_samples,channels,channel_layout" -pretty -print_format csv -of csv > "Path to output.csv"
and then use a speadsheet tool to create the diagrams.
If Python is an option you could use: 
https://github.com/zeroepoch/plotbitrate which basically uses ffprobe to do the aboce analysis and then creates a graph from that data. 
 
Side note: 
Spek - Acoustic Spectrum Analyser might be interessting, if you want to look at the spectrum and not the bitrate.
Cu Selur
	
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
	
	
 
 
	
	
	
		
	Posts: 40
	Threads: 12
	Joined: Jan 2021
	
	
 
	
	
		Py is a no go for me.
Spek ,i know it.
Ffprobe: will try ASAP!
Many many thanks!