You are not logged in.
Pages: 1
Hi all. I have a Sony Walkman wich supports .pla files for playlists. They can be created by Windows natively, but I'm yet to find a way to make them work in Linux. How do I handle this extension?
Offline
I briefly looked up .pla file.
Is that just a playlist? What does it's contents look like.
cat file.plaYou can make a .pls or m3u8 easy enough
test.pls
[playlist]
File1=/path/to/song1.mp3
File2=/path/to/song2.mp3
File3=/path/to/song3.mp3
NumberOfEntries=2mplayer -playlist test.plstest.m3u8
#EXTM3U
#EXT-X-VERSION:3
#EXT-X-STREAM-INF:PROGRAM-ID=1
/path/to/1.mp3
/path/to/2.mp3mpv test.m3u8To make a playlist out of the .mp3 in a directory something simple like:
for i in *.mp3; do
echo "$i" >> list.pls
doneOr
mplayer $(for i in *.mp3; do echo "$i"; done)but I'm yet to find a way to make them work in Linux
The playlist and the media files it points to both have to be on the machine.
Offline
I briefly looked up .pla file.
Is that just a playlist? What does it's contents look like.cat file.pla
Interesting, the cat command gives no output...
Anyway I used programs like Clementine to make all possible kinds of playlists (pls, m3u, etc.). None of them is recognized by the Walkman, apparently it only reads .pla playlists.
Offline
Did you try a .wpl playlist?
| alias CUTF='LANG=en_XX.UTF-8@POSIX ' | alias ENGLISH='LANG=C.UTF-8 ' |
Offline
Did you try a .wpl playlist?
I don't see why would I ever do it...
If I could use Windows for the playlist creation I would just make it in the .pla format...
Offline
progandy wrote:Did you try a .wpl playlist?
I don't see why would I ever do it...
It is an XML file and the format is known, so you can create it on linux, too
https://en.wikipedia.org/wiki/Windows_M … r_Playlist
Is your Sony device using MTP? Then maybe try using the mtp-... commands or look for an mtpfs implementation that supports playlists.
Edit: gmtp is a gtk application that may work, too. It claims to support m3u import.
Last edited by progandy (2015-08-21 23:53:59)
| alias CUTF='LANG=en_XX.UTF-8@POSIX ' | alias ENGLISH='LANG=C.UTF-8 ' |
Offline
They can be created by Windows natively, but I'm yet to find a way to make them work in Linux.
Your original question was how to make a .pla play in Linux.
None of them is recognized by the Walkman,
Then in post 3 you say that you want to make them work on a walkman.
Is this what you are trying to do?
www.youtube.com/watch?v=gZ7j3nIBUiE
Try google
http://www.anythingbutipod.com/forum/sh … hp?t=34210
http://www.google.com/search?q=linux%20 … 20playlist
Offline
brighter wrote:progandy wrote:Did you try a .wpl playlist?
I don't see why would I ever do it...
It is an XML file and the format is known, so you can create it on linux, too
https://en.wikipedia.org/wiki/Windows_M … r_PlaylistIs your Sony device using MTP? Then maybe try using the mtp-... commands or look for an mtpfs implementation that supports playlists.
Edit: gmtp is a gtk application that may work, too. It claims to support m3u import.
Only the .pla files can be read... The strange thing is this file is always 0Kb, no matter how many songs inside the playlist,
This thread confirms it
http://www.anythingbutipod.com/forum/sh … hp?t=56646
Offline
Then in post 3 you say that you want to make them work on a walkman.
I want to create them, but if I find a substitute I don't mind, the final purpose is what matters
Is this what you are trying to do?
www.youtube.com/watch?v=gZ7j3nIBUiE
Yes, but without Windows
Offline
mtp-playlists from libmtp? btw teck posted a link containing a few pointers, have you read it? for closures sake you don't want pla files (as you've noticed they mean absolutely nothing by themselves), you want something that can create MTP protocoll-aware playlists (and the MTP protocoll can be pretty finicky to get to work, even on windows)
Last edited by V1del (2015-08-23 10:04:12)
Offline
progandy wrote:brighter wrote:I don't see why would I ever do it...
It is an XML file and the format is known, so you can create it on linux, too
https://en.wikipedia.org/wiki/Windows_M … r_PlaylistIs your Sony device using MTP? Then maybe try using the mtp-... commands or look for an mtpfs implementation that supports playlists.
Edit: gmtp is a gtk application that may work, too. It claims to support m3u import.Only the .pla files can be read... The strange thing is this file is always 0Kb, no matter how many songs inside the playlist,
This thread confirms it
http://www.anythingbutipod.com/forum/sh … hp?t=56646
Thats probably because the playlist gets written into the filedescription, the file itself remains untouched.
Offline
mtp-playlists from libmtp? btw teck posted a link containing a few pointers, have you read it? for closures sake you don't want pla files (as you've noticed they mean absolutely nothing by themselves), you want something that can create MTP protocoll-aware playlists (and the MTP protocoll can be pretty finicky to get to work, even on windows)
That's a very nice project. Unfortunately I tried and it doesn't work with the Sony Walkman (it was created for Sansa players).
Of course I checked the links, frankly I never had problems with this type of file in Windows.
Offline
brighter wrote:progandy wrote:It is an XML file and the format is known, so you can create it on linux, too
https://en.wikipedia.org/wiki/Windows_M … r_PlaylistIs your Sony device using MTP? Then maybe try using the mtp-... commands or look for an mtpfs implementation that supports playlists.
Edit: gmtp is a gtk application that may work, too. It claims to support m3u import.Only the .pla files can be read... The strange thing is this file is always 0Kb, no matter how many songs inside the playlist,
This thread confirms it
http://www.anythingbutipod.com/forum/sh … hp?t=56646Thats probably because the playlist gets written into the filedescription, the file itself remains untouched.
Right. I didn't think about it... That's a good thinking... So does it mean it cannot be created on non-Windows systems? I think Mac OS should by able to make it through iTunes, but I have not a Mac OS system to try it
Offline
Have you tried any of the other solutions that have been posted by numerous people? have you tried mtp-playlists? does it flat out refuse to work? Is your device not at all recognized by it? I highly doubt that a mac/itunes will be able to, it doesn't support mtp either ootb.
Last edited by V1del (2015-08-23 15:10:58)
Offline
Have you tried any of the other solutions that have been posted by numerous people? have you tried mtp-playlists?
yes I tried, why do you keep asking if I try or read?
does it flat out refuse to work? Is your device not at all recognized by it?
It doesn't recognise the device
I highly doubt that a mac/itunes will be able to, it doesn't support mtp either ootb.
Offline
You haven't mentioned that you have tried it, that's why I ask, because we should exhaust all options. Read the comments on that youtube video pretty much everyone says that playlists don't work. And "Sony Walkman" is a worthless catch all name, what's the actual model?
Literally a link posted there: https://us.en.kb.sony.com/app/answers/d … /related/1 they don't support it officially, if it works it works completely by chance.
Last edited by V1del (2015-08-23 16:08:05)
Offline
You haven't mentioned that you have tried it, that's why I ask, because we should exhaust all options. Read the comments on that youtube video pretty much everyone says that playlists don't work. And "Sony Walkman" is a worthless catch all name, what's the actual model
They work all the same way
Literally a link posted there: https://us.en.kb.sony.com/app/answers/d … /related/1 they don't support it officially, if it works it works completely by chance.
Interesting. Maybe it's time to switch to a more Linux friendly brand... I only know Walkmans and iPods ![]()
Offline
Pages: 1