Indigo Rose Software

Professional Software Development Tools

 
Results 1 to 1 of 1
  1. #1
    Join Date
    Feb 2004
    Posts
    67

    Grin convert pls to m3u

    Checking to see if this thought is the right way

    using the media plugin, I can only playback m3u files without calling in a web object, which is not what I want to do. I have a series of events that will occur

    search drives for file format
    list files in listbox (LB1)
    select singles or multiples from the listbox
    on button run command line for the following script

    @echo off
    rem pls2wpl.bat written by ************ http://www.*******.org.uk/
    rem based on catalog.bat found in dos batch examples at http://www.*********.com
    rem This batch file converts XMMS .PLS files into .wpl playlists for use
    rem with windows media player
    rem suggested batch location = My Documents\My Music\My Playlists
    echo ^<?wpl version="1.0"?^>>%TEMP%\convert.wpl
    echo ^<smil^>>>%TEMP%\convert.wpl
    echo ^<head^>>>%TEMP%\convert.wpl
    echo ^<meta name="Generator" content="PLS to WPL playlist conversion"/^>>>%TEMP%\convert.wpl
    echo ^<title^>Playlist^</title^>>>%TEMP%\convert.wpl
    echo ^<body^>>>%TEMP%\convert.wpl
    echo ^<seq^>>>%TEMP%\convert.wpl
    for /f "tokens=1,2* delims==" %%A in ('type %*') do (
    for /f "tokens=1 delims=i" %%U in ("%%A") do (
    if [%%U]==[F] (
    echo ^<media src="%%B"/^>>>%TEMP%\convert.wpl
    )
    )
    )
    echo ^</seq^>>>%TEMP%\convert.wpl
    echo ^</body^>>>%TEMP%\convert.wpl
    echo ^</head^>>>%TEMP%\convert.wpl
    echo ^</smil^>>>%TEMP%\convert.wpl
    start %TEMP%\convert.wpl

    this new file name and location sent to listbox2 (LB2)

    where the file can be selected and played in the MPplugin.

    First

    Is this doable?

    Second

    Is there a better way?

    Thanks
    Last edited by synistics; 04-26-2007 at 01:15 PM.

Similar Threads

  1. Convert .xls .doc... into .txt .cvs .pdf .html in batch mode
    By DjArko85 in forum AutoPlay Media Studio 6.0
    Replies: 18
    Last Post: 01-14-2009, 03:43 AM
  2. Again....help pls with table . I know that I'm anoying already
    By CrazyFrog in forum AutoPlay Media Studio 6.0
    Replies: 2
    Last Post: 04-07-2007, 04:42 PM
  3. Color Picker - Hex to Decimal - Convert
    By Intrigued in forum AutoPlay Media Studio 6.0
    Replies: 0
    Last Post: 11-20-2005, 12:26 AM
  4. How can I make a MP3 Playlist using a m3u or psl playlist
    By darknis in forum AutoPlay Media Studio 4.0
    Replies: 21
    Last Post: 12-17-2004, 07:26 PM
  5. M3U playlists? howto...
    By Decade in forum AutoPlay Media Studio 4.0
    Replies: 2
    Last Post: 11-01-2002, 11:21 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts