Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: export spectrogram as picture ? (Read 2264 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

export spectrogram as picture ?

hi,
I would like to know if there is a way to export fb2k's spectrogram viewer to a picture but in a very high resolution (for large printing) as a visual artist i like to play with pictures and i'm fascinated by the spectrogram view, I've converted some of my works to audio files but can't export the spectrogram's view 

thanks !

(sorry if I use wrongs terms I'm not audio pro ;) and french :p )

Re: export spectrogram as picture ?

Reply #1
You could always run it full screen at hi res and click the "Print Screen" button to screen grab it, then paste it in to any art app to save it.

For proper exports I have used RX Advanced "Export Screenshot" function.

 


Re: export spectrogram as picture ?

Reply #4
thanks i'll try it

Re: export spectrogram as picture ?

Reply #5
Spek will allow you to save its spectrogram as a PNG file. http://spek.cc/


Re: export spectrogram as picture ?

Reply #7
i need something able to export at 9000x7000
SoX will not do this too. Maximal height is limited to 2050.
You can use ffmpeg.
Code: [Select]
ffmpeg.exe -i inputaudiofile -lavfi showspectrumpic=s=9000x8192:mode=separate outputfile.png
where 9000 is width and 8192 is height. Height must be power of 2, otherwise not all frequencies will be displayed. Color options are also available, see https://ffmpeg.org/ffmpeg-filters.html#showspectrumpic

Re: export spectrogram as picture ?

Reply #8
i need something able to export at 9000x7000
SoX will not do this too. Maximal height is limited to 2050.
You can use ffmpeg.
Code: [Select]
ffmpeg.exe -i inputaudiofile -lavfi showspectrumpic=s=9000x8192:mode=separate outputfile.png
where 9000 is width and 8192 is height. Height must be power of 2, otherwise not all frequencies will be displayed. Color options are also available, see https://ffmpeg.org/ffmpeg-filters.html#showspectrumpic
thanks !