RamonUnch
RamonUnch
.opus files are ogg containing opus stream so it must work. The *proper* way to name those files is .opus even though the container is .ogg Y=The rason is that...
Keep in mind that for a Winamp plugin the file filter is only based on file extension so if the extension is not `.opus`, Winamp will not even try to...
Try to add -map 0 so that all channels are kept.
more info about this: https://stackoverflow.com/questions/64561570/ffmpeg-convert-audio-to-ogg-and-keep-album-cover https://trac.ffmpeg.org/ticket/4448 Actually try with: ``` ~~ffmpeg -i input.mp4 -acodec copy -vcodec libtheora output.opus~~ ``` EDIT: ``` ffmpeg -i input.mp4 -map 0 -acodec copy -vcodec libtheora...
Well indeed it is a shame that such a simple matter of embedding a cover image in an ogg stream is not supported. I guess we should look for other...
Unfortunately I cannot reproduce the issue. Could you give more details.
Which Winamp version are you using? I tried with Winamp5.666 and Winamp2.95. When I look at the number of Handles it always go back to the previous when stopping playback...
Well it is a hack because .ogg files are supposed to be ogg/vorbis files and not ogg/opus files And Winamp is not designed to do this. So there is a...
It was added in version 0.911 and it has a limitation: > * NEW: An option was added to load files with .ogg extension. The option is not enabled by...
Also note that the container for both .ogg and .opus file is OGG, in the case of opus file the stream it contains is opus (ogg/opus) and in the case...