Package com.pugh.sockso.music.playlist

Examples of com.pugh.sockso.music.playlist.M3uFile


    }

    public void testGettingTracksFromM3uFile() throws Exception {
        db.fixture( "playlistTracks" );
        String track1 = "/home/user/music/01 - some track.mp3";
        M3uFile playlist = new M3uFile( null );
        playlist.loadLines(new String[] { track1, "/home/other/file.ogg" });
        Track[] files = ip.getTracksFromPlaylist( playlist );
        assertEquals( 1, files.length );
        assertEquals( track1, files[0].getPath() );
    }
View Full Code Here


    }
   
    public void testGettingTracksFromM3uFileWithWindowsPaths() throws Exception {
        db.fixture( "playlistTracks" );
        String track1 = "S:\\My Music\\James Hunter - All Through Cryin'.mp3";
        M3uFile playlist = new M3uFile( new File("S:\\") );
        playlist.loadLines(new String[] { track1, "/home/other/file.ogg" });
        Track[] files = ip.getTracksFromPlaylist( playlist );
        assertEquals( 1, files.length );
        assertEquals( track1, files[0].getPath() );
    }
View Full Code Here

    }

    public void testGettingTracksFromExtM3uFile() throws Exception {
        db.fixture( "playlistTracks" );
        String track1 = "/home/user/music/01 - some track.mp3";
        M3uFile playlist = new M3uFile( null );
        playlist.loadLines(new String[] {
            "#EXTM3U",
            "#EXTINF:320,Wyclef Jean - Something About Mary",
            track1
        });
        Track[] files = ip.getTracksFromPlaylist( playlist );
View Full Code Here

TOP

Related Classes of com.pugh.sockso.music.playlist.M3uFile

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.