Создание списков воспроизведения M3U для iBasso DX50 в Linux

1128
lewashby

Я использую iBasso DX50 в качестве музыкального проигрывателя и использую Linux в качестве основной ОС. Мне нужно создать списки воспроизведения M3U для импорта в мой iBasso DX50. Я попытался бы отредактировать некоторые файлы самостоятельно, но я не знаю, как выглядит путь от корня к SD-карте изнутри моего iBasso. Есть идеи?

0
Удалена часть вопроса о программном обеспечении, которая здесь не по теме. Karan 9 лет назад 0

1 ответ на вопрос

0
Anton

Example for create M3U playlist:

All files type *.mp3, *.wav and *.wma

$ find . \( -name \*.mp3 -o -name \*.wav -o -name \*.wma \) \ > playlist.m3u 

All files type *.WAV, *.Mp3, etc (not case sensitive)

$ find . -iregex '.*\.\(mp3\|wav\|wma\)' > playlist.m3u 

Without recursive search in directory

printf %s\\n *.mp3 > playlist.m3u 

And, finally:

How to use the import/export playlist function? After the playlist is built in the DX50, press the thumbnail icon in front of the playlist to unfold the options. Press "export playlist", then one can find a M3U playlist under the M3U folder under the internal flash.

To import a M3U playlist, load the M3U playlist into the internal flash or a Micro SD card. Then find the M3U playlist under Directory. Press the M3U playlist to start importing the playlist.

From DX50 user guide: http://www.ibasso.com/uploadfiles/20141203/201412031740555098.pdf

Похожие вопросы