No, I wrote it. In your home under .kde/share/kde4/services/ServiceMenus save this text as audioconvert_flac.desktop
I wrote separate ones for mp3, ogg, and wav. Obviously, if you don't need or want some of the above stanzas (i.e. ogg), just don't use them. I used to use OGG as my preferred lossy format, but since my car now plays mp3s, I've switched.
Code:
[Desktop Entry] Type=Service ServiceTypes=KonqPopupMenu/Plugin,audio/x-flac Actions=2mp3;2ogg;2wav Encoding=UTF-8 X-KDE-Submenu=Convert [Desktop Action 2mp3] Name=flac to mp3 Icon=audio-x-mpeg Exec=flac -dsc %F | lame -V0 -h -b 160 --vbr-new - %F.mp3 [Desktop Action 2ogg] Name=flac to ogg Icon=audio-x-vorbis+ogg Exec=flac -dsc %F | oggenc - -o %F.ogg [Desktop Action 2wav] Name=flac to wav Icon=audio-x-wav Exec=flac -ds %F
Comment