6 mp3 files, 8 to 9 hours long each, transcoded using this command:
find . -iname "*.mp3" -print0 | parallel -0 -j4
ffmpeg -nostdin -y -i {} -c:a libopus -application voip -b:a 32k -ac 1 {.}.ogg
Aren't handled very well by the app; it has to think a lot.
App becomes unresponsive for many tens of seconds at a time, also when seeking to new places in the audio file.
Could this be fixed?
6 mp3 files, 8 to 9 hours long each, transcoded using this command:
find . -iname "*.mp3" -print0 | parallel -0 -j4
ffmpeg -nostdin -y -i {} -c:a libopus -application voip -b:a 32k -ac 1 {.}.ogg
Aren't handled very well by the app; it has to think a lot.
App becomes unresponsive for many tens of seconds at a time, also when seeking to new places in the audio file.
Could this be fixed?