|
#1
|
||||
|
||||
|
First off, let me say the sport is very cool. Excellent design and function.
I'm trying to figure out how to get the M3U playlist files formatted properly and transferred from my linux box. I have a 2Gig sport. Firmware is 1.008 1) Where do M3U files belong? I put them in the Music folder, and the sport seemed to find them but won't play them. So then I looked at my daughter's unit, which is a windows based unit, and saw the Playlist folder, so I tried putting the M3U files there. Sport found them, but again won't play them. That leads to the second question: 2) What is the exact format of the M3U files? Are filenames case sensitive? Does it need complete path names, or is it some shortened relative pathname? i.e. assuming the mp3 or ogg files are in the Music folder, would a M3U line be /Music/artist/album/trackname1.mp3 /Music/artist/album/trackname2.mp3 or: artist/album/trackname1.mp3 artist/album/trackname2.mp3 or ?? If someone can answer this that would be great. I'll probably end up writing a perl script that properly formats M3U files it finds on the insignia and would be happy to share once I understand the details. Thanks for any info! Jeff Welty |
|
|
|||
|
|
|
#2
|
||||
|
||||
|
I hope this article from Wikipedia will help a little.
You can also take a look at WinAmp's forums. If that's not enough, try googling for "M3U specs" or "M3U specification". By the way, welcome to ABi!
__________________
Cowon D2 4GB + 16GB A-data SDHC card • Meizu M6 SP 8GB • Zen Vision:M 30GB • Zen V Plus 4GB • iRiver SlimX 550 Sennheiser PX-100 • AKG K81 DJ • Alessandro MS-1 • FutureSonics Atrio M5 • Audio Technica ATH-CK7, ATH-AD2K • ATH-ESW9 Meier Corda Move |
|
#3
|
||||
|
||||
|
Hi Almoxil,
Thanks for the reply, and thanks for the forum! I should have said I understand what the format of a M3U file is, the real question is how do they work on the insignia sport with regard to path names and location of the M3U files themselves? If someone had a simple example that would probably be enough. I've tried a lot of variations with no success. Variations I tried include location of the M3U file, relative and absolute pathnames, using backslashes instead of slashes to separate subfolders (what we used to call directories in the old days ) Does every audio file specified in the M3U have to be located (because I used one M3U to see if it could find a single file with variations on paths).Cheers, Jeff Last edited by jeffw; 12-28-2007 at 08:09 PM. Reason: my typed smiley didn't work :-( |
|
#4
|
||||
|
||||
|
I have a mp3 located on the player at:
/Music/dan_fogelberg/the_innocent_age/nexus.mp3 I made 10 different M3U files like so: test1.m3u had 1 line: Code:
nexus.mp3 Code:
the_innocent_age/nexus.mp3 Code:
dan_fogelberg/the_innocent_age/nexus.mp3 Code:
Music/dan_fogelberg/the_innocent_age/nexus.mp3 Code:
/Music/dan_fogelberg/the_innocent_age/nexus.mp3 Code:
\Music\dan_fogelberg\the_innocent_age\nexus.mp3 I put those 10 files in /Playlists and tried again. Same result. So out of desparation, I went to a windows XP machine, and attempted to load a playlist via the rhapsody software fontend. It claims to have transfered a playlist, but I don't see it on the sport. So, now I'm wondering, has anyone had any success with M3U playlists on the sport at all? Sorry to be such a pest, but this is an absolute killer feature -- I'd love to get it working. Thanks for any info, at all! Jeff |
|
#5
|
||||
|
||||
|
Good luck with this, and let us know if you have any future success. Based on Insignia's so-called implementation of this feature on the NS-DVxG line of players, I'd say they are using some kind of mystery M3U format known to neither beast nor man. It's quite frustrating, actually.
|
|
#6
|
|||
|
|||
|
The format should look like this:
#EXTM3U #EXTINF:2,tone 1wma tone_1wma.wma #EXTINF:2,tone 2wma tone_2wma.wma It does work, but we have seen a bug with larger playlists in which it takes an excessively long time to rebuild. The next F/W drop (this will also be supported on the DVxG F/W release) will support more robust M3U's including those created directly from Media Monkey. |
|
#7
|
||||
|
||||
|
Nice. Many thanks for the info, digitaldel. Looking forward to that new F/W release!
|
|
#8
|
||||
|
||||
|
THANKS digitaldel!
One other thing for the linux folks, I just tried the M3U with standard unix LF line terminators and it did not work. It hit me that the file may need CRLF termination (ala a dos text file). Sure enough that works. The other important detail is that pathnames need to be separated by backslashes, not forward slashes. It works with relative pathnames like "mp3\nexus.mp3" and full pathnames like "\Music\mp3\nexus.mp3" this is sooo cool! I will work on some Perl code to create properly formated m3u files from any given m3u files, of course it will work with ogg or mp3. On to the land of Perl :-) |
|
#9
|
||||
|
||||
|
Just thought I'd report back that I have Perl code that runs under linux, and will traverse a directory tree and reformat any M3U files for the insignia sport.
I regard it as very experimental still, but if anyone is interested in trying it out please say so. Features:
Jeff |
|
#10
|
|||
|
|||
|
Jeffw,
Is there any way I can take a look at your script? I have an insignia DV4G and I'm trying to write some code to generate m3u playlists and I can't get the format exactly right... |
|
#11
|
||||
|
||||
|
I put the script at:
http://www2.redhawk.org:8080/insigniam3u.pl I'll probably move it someplace more formal later. Enjoy! Jeff |
|
#12
|
||||
|
||||
|
Newkev, if you're able to get that DV4G script working, would you mind sharing it as well?
|
|
#13
|
|||
|
|||
|
As long as the m3u is in the same directory as the files you can do it very simply at command line (dos or konsole etc)
dir /b *.mp3 > playlist.m3u you don't need fancy scripts or software. I've been doing it this way for YEARS! The output file will be an alphabetically sorted list of the files in the folder (Useful to use track numbers with leading zeros here) et voilla! This works in Linux too. Enjoy |
|
#14
|
||||
|
||||
|
Quote:
But I wonder now that maybe the problem all along was the cr/lf terminators. Could you please confirm that the simple playlists with only the filenames work on DOS? EVERYONE -- it seems that the perl script I put on the site is not downloadable -- try again but with this URL: http://www2.redhawk.org:8080/insigniam3u.perl Cheers, Jeff |
|
#15
|
||||
|
||||
|
I tried the simple listing of audio files using cr/lf line terminators, no luck. The format below still appears to be the only way my sport will support m3u playlists. I am at version 1.008 of the firmware.
#EXTM3U #EXTINF:2,tone 1wma tone_1wma.wma #EXTINF:2,tone 2wma tone_2wma.wma Cheers, Jeff |
|
#16
|
|||
|
|||
|
I'm new to the forum and new to the Insignia Sport which I got recently for my wife. So I gather from this thread that there is no software known to man that can create & edit playlists on this device? How difficult could it be - isn't a playlist simply a file with 'pointers' to the selected songs?
I have a Dell player purchased several years ago, and at the time I was able to use Rhapsody software to create & edit playlists - without having to transfer the playlist directly from the PC. The ability to create & edit a playlist independently of music on the host pc should be a very basic thing on a mp3 player, shouldn't it? By the way, I just got off the phone with Insignia's so-called mp3 support, what a waste of time. So if my post sounds a little bitter, that's why. Thanks, Mark |
![]() |
«
Previous Thread
|
Next Thread
»
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
All times are GMT -5. The time now is 08:37 AM.












Linear Mode
