-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
req: audio waveform with zoom and thumbnails #6
Comments
It should be possible but I can imagine that it would require preprocessing in order to create thumbnails/waveform, and this will probably take some time, defeating the purpose of this being a very fast app. |
Would be nice to have but not that essential INHO. Program is currently blazing fast so adding this future might hurt it. |
https://trac.ffmpeg.org/wiki/Waveform @mifi Have you looked at this filter? It's a part of ffmpeg. |
Waveform and thumbnails is now implemented |
I wish I could use it to quickly trim audio, but the waveform is too small/basic. Would it be possible to add a real waveform, just for audio files (it's needed to find the right spot on long audio files)? |
I agree. With audio files, the entire space kept for video is wasted real estate. The audio waveform could be much bigger and easier to see. Also, the waveform only shows up for part of the file. If you jump to another frame, the audio waveform gets extended further, but the beginning portion gets cut off. Is it a limitation that the entire waveform cannot be shown at once? One would think since it's a static property of a file, it could be loaded fully just once and that's it. |
It's a technical limitation because rendering the waveform takes a long time. So it will only render 30 seconds at a time. I'm not sure what is the best way to render a zoomed out waveform overview for the whole clip. See #260 |
I'm not sure I get this. Rendering 30 seconds at a time shouldn't prevent you from still displaying the already rendered waveform. It's fine if a 2 minute song renders in 4 sections. Or is the problem something else? |
Yes, we could keep the already rendered waveform. I can make that change. |
And what is your opinion on this? |
You mean you want it to be taller or expandable? That shouldn't be too hard |
Taller, definitely, like 6-7 times the current height. Something like the size Audacity shows, so that it is easy to comprehend and use. Expandable is up to you. |
Closing in favor of #260 |
Any plan to add audio waveform and a scrollbar with zoom in/out for time scale and thumbnails?
I ask because I'm currently using another app to cut long streaming files into pieces. Finding gaps between content is easier with a waveform (I look for empty regions) and thumbnails which can show standard intro/outro sections.
The text was updated successfully, but these errors were encountered: