How to create a mp3 playlist compatable with the media server (storage link)

Hi,
I have setup the wrt160nl wireless router with the latest Firmware Version: 1.00.01 B17.
Everything is working great. I can browse the artists, albums, song titles etc from my usb hard disk.
What isn't working is the play lists.
What format does the play list need to be in?
I assume a text file with the tracks listed like: \music\acdc\back in black.mp3
What file extention or name will the playlist need to be in?
My pnp player only sees two playlists:
1) playlistlastplayed
2) playlistmostplayed
If I knew where those play lists were stored on the usb hard drive (or linksys internal ram?) then I might have a clue.....
Thanks for any help on this.

Playlistlastplayed has every track on the hard disk - and I haven't played them all, only like 3
Playlistmostplayed has ONLY 1 track that I haven't played from the linksys upnp server at all
I can play music off the album, artist and song lists fine.
I'd just like to be able to use a play list, and can't seem to find out how to make one.
I realize and understand that the linksys storage link system doesn't create them.
I assume I can make my own text file with track listings and copy the play list to the usb hard drive attached.
I just need to know the format of the text file, and what extention will it need.
I have tried .m3u .m3u8 .wpl
I don't have iTunes but if you told me I have to download that, import my music into that, then create the playlist there, well, I guess I could try that. I rather not load iTunes if possible.
Thanks

Similar Messages

  • How to create a custom function module with the records in SAP R/3?

    Hi All,
    How to create a custom function module with the records in SAP R/3? Using RFC Adapter I have to fetch the custom function module records.
    Regards
    Sara

    Hi
    goto se37...here u need to create a function group... then u need to create a function module. inside assign import/export parameters. assign tables/exceptions. activate the same. now write ur code within the function module
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/db98fc35c111d1829f0000e829fbfe/content.htm
    Look at the below SAP HELP links, These links will show you the way to create a Function Module
    http://help.sap.com/saphelp_nw04/helpdata/en/26/64f623fa8911d386e70000e82011b8/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/db98fc35c111d1829f0000e829fbfe/content.htm

  • How to create a webservice in Tomcat with the use of Axis

    I am very new to webservices. I am suppose to create a webservice in Tomcat with the use of Axis. I have downloaded all the required jars.
    Please help me how to start.
    Thanx in advance.
    [email protected]

    Check out the Axis user's guide at: http://ws.apache.org/axis/java/user-guide.html

  • How to test streaming bandwidth on localhost with Flash Media Server ?

    Hello,
    I'm trying to debbug my code on Client side (Action Script 3) that works with Flash Media Server 4 on localhost. Everything seems fine up to that point.
    However, when I'm trying to test my player with other remote streaming servers, I notice bugs because of lower bandwith transmission between the server and the player.
    Is there a simple way to simulate lower bandwith with FMS4 on localhost (by config, application.xml, programmation...) ?
    Thanks
    Seb Ethier

    Thank you zarihs Rawna
    Indeed, i have been with Server-Side ActionScript (SSAS) way. it's more simple, i think.
    Well, here the step what i did :
    Step 1 :
    Make a file "main.asc" et copy & paste the code below.
    - more info : http://www.peachpit.com/articles/article.aspx?p=31217
          *main.asc*
        var bandwidth;
        application.allowDebug = true;
        // Application callback functions
        application.onConnect = function(client, user) {
            //12800 = 100 Kbps   
            //64000 = 500 Kbps
            //131072 = 1Mbps
            //327680 = 2.5 Mbps
            //983040 = 7.5 Mbps
            //1966080 = 15 Mbps
            //3932160 = 30 Mbps
            //6553600 = 50 Mbps
            //15728640 = 120 Mbps
            bandwidth = 64000;
            client.setBandwidthLimit(bandwidth, bandwidth);
            trace("clientToServer = " + client.getBandwidthLimit(0) +  " serverToClient="+  client.getBandwidthLimit(1));
            application.acceptConnection(client);       
            trace("TEST");
    Step 2 : Save the file under the folder underneath FMS's applications directory
    Example : FMS\application\dyn
    More info : http://www.flashcomguru.com/articles/fms2_basics.cfm
    Step 3: Start the FMS server. If there is a problem, check the log file
    Example : FMS\logs\_defaultVHost_\dyn\_definst_\application.00.log
    Step 4 : (optional) Change the value of the variable bandwidth for your test. I put in comment some common internet connection speed converted in bytes.
    That's all,
    regards,
    sethier

  • How to create an dynamic internal table with the structure of a ddic table

    Hi all,
    I want to fill ddic-tables (which I already created) in my abap dictionary with data out of CSV-files (which are located on the CRM-Server).  The ddic tables have different amount of fields.
    I started with creating a table which contains the name of the tables and the path to the matching CSV-file.
    At the beginning I'm filling an internal table with part of this data (the name of the ddic-tables) - after that I am looping at this internal table.
    LOOP AT lt_struc ASSIGNING <lfs_struc>.
         LOOP AT lv_itab1 INTO lv_wa1 WHERE ztab_name = <lfs_struc>.
         lv_feld = lv_wa1-zdat_name.
        ENDLOOP.
        CONCATENATE 'C:\-tmp\Exportierte Tabellen\' lv_feld INTO lv_pfad.
        Do.
        OPEN DATASET lv_pfad FOR INPUT IN TEXT MODE ENCODING NON-UNICODE IGNORING CONVERSION ERRORS.
        READ DATASET lv_pfad INTO lv_rec.
        IF sy-subrc NE 0.
          EXIT.
        ENDIF.
        enddo.
        REPLACE ALL OCCURRENCES OF '"' IN lv_rec WITH ''.
        SPLIT lv_rec AT ';' INTO TABLE lt_str_values.
        INSERT into (<lfs_struc>) values lr_str_value.
        CLOSE DATASET lv_pfad.
    endloop.
    This is not the whole code, but it's working until
    SPLIT lv_rec AT ';' INTO TABLE lt_str_values.
    I want to split all the data of lv_rec into an internal table which has the structure of the current ddic-table, but I didn't find out how to do give the internal table the structure of the ddic-table. In the code I used an internal tyble type string but I should be the structure of the matching tabel.
    If I try to create an internal table by using a fiel symbol, I am told, that the data types are not matching.
    Has anyone an idea?

    Hi Mayari,
    though you were successfull with
    METHOD cl_alv_table_create=>create_dynamic_table
    I must warn you not to use it. The reason is that the number of tables created is limited, the method uses GENERATE SUBROUTINE statement and this triggers an unwanted database commit.
    If you know the DDIC structure, it is (starting with ECC6.0) much easier:
    field-symbols:
      <table> type standard table.
    data:
      lr_data type ref to data.
    Create data lr_data type table of (<DDIC structure>).
    assign lr_data->* to <table>.
    The split code can be simplified gaining speed loosing complexity not loosing functionality.
    field-symbols:<fs_s> type any.
    field-symbols:<fs_t> type any.
    SPLIT lv_rec AT ';' INTO table it_string.
    loop at it_string assigning <fs_s>.
      assign component sy-tabix of wa_string to <fs_t>.
    if sy-subrc = 0.
      <fs_t> = <fs_s>.
    endif.
    at last.
      append <fs_itwa3> to <ft_itab3>.
    endat.
    endloop.
    Though it may work as Keshav.T suggested, there is no need to do that way.     
    Regards,
    Clemens

  • How to create JDBC connection in J2ME with MS-SQL server?

    I need to have database connection in PDA with SQL server,as i am new to J2ME ,i dont know how to create jdbc connection on J2ME device.Please help me out with this problem........

    I need to have database connection in PDA with SQL server,as i am new to J2ME ,i dont know how to create jdbc connection on J2ME device.Please help me out with this problem........

  • How to create Business System in SLD with Role "Integration Server"

    Hi,
    We were trying to create a Business system of role "Integration Server" in SLD. However, we are getting an error saying "There is already an Integration Server defined foer the selected Technical System. Select as Application System."
    We could not find any relevant BS with the role "Integration Server" for that Technical System.
    Please advice.
    Warm Regards,
    Bhaswar

    hmm
    I have same situation on a fresh installation.
    Also error "There is already an integration server defined for the selected technical system; select the Application System role".
    But, there is no Business system at all visible and also the Business system tab of the technical system is completely empty.
    What to do?
    BR Patrik

  • How to Create Simple In-Cell Charts with the REPT Function

    I found this technique on Juice Analytics, and was happy that I could adapt it to Numbers.
    Basically, you can create an in-cell chart by repeating a character, x number of times, where x can be a number or cell reference.
    See the screen shot below:
    [IMG]http://i240.photobucket.com/albums/ff100/MacFanMike/incell-graph.jpg[/IMG]
    You can read more about it, and download example here:
    http://www.numberstemplates.com/2007/08/29/tips-how-to-create-in-cell-charts-wit h-apple-iwork-numbers/

    I haven't tried myself but my guess is that you need to customize your tree cell editor for putting
    cursor at specific position, etc.

  • How to create a new tree node with the initial edit function

    Hi all,
    I would like to mimic the Windows system when the user creates a new node. The newly created node should be in the edit mode, i.e.it should
    be highlighted and the cursor should be appear at the end of
    the newly created node name.
    I have the folloing code after I create the new node and set its selection:
    TreePath selectionPath = getTree().getSelectionPath();
    tree.startEditingAtPath(selectionPath);
    However, this only partially does what I want, the cursor does not appear at the end of the node's name and I am not sure how to select the text name of the new node.
    I hope someone can help.
    Kanita

    I haven't tried myself but my guess is that you need to customize your tree cell editor for putting
    cursor at specific position, etc.

  • How to create an YES/NO JOptionPane with the default focus on No?

    Hi,
    can somebody please show me how to display an JOptionPane with the options Yes and No that has the focus by default no the No button?
    By default it is on the Yes button which is rather problematic for confirm dialogs like "Do you really want to delete everything?".
    JPJava

    It would help if JPJava gave some sample code SSCCE to show they know how to construct a JOptionPane
    I use explorer to access the source files in the zip folder and JGrasp to view the source code
    this is copy modify from the API
    Object[] options = { "YES", "CANCEL" };//{"OK", "CANCEL"} shown in api
    JOptionPane.showOptionDialog(null, "Are you sure you want to delete", "Confirm Delete",
    JOptionPane.DEFAULT_OPTION, JOptionPane.WARNING_MESSAGE,
    null, options, options[1]);//options[1] selects CANCEL option as defaultthis method constructs
    showOptionDialog
    public static int showOptionDialog(Component parentComponent,
                                       Object message,
                                       String title,
                                       int optionType,
                                       int messageType,
                                       Icon icon,
                                       Object[] options,
                                       Object initialValue)
                                throws HeadlessExceptionBrings up a dialog with a specified icon, where the initial
    choice is determined by the initialValue parameter and the number of choices is determined by the optionType parameter.
    If optionType is YES_NO_OPTION, or YES_NO_CANCEL_OPTION and the options parameter is null,
    then the options are supplied by the look and feel.
    The messageType parameter is primarily used to supply a default icon from the look and feel.
    Parameters:
    parentComponent - determines the Frame in which the dialog is displayed; if null, or if the parentComponent
    has no Frame, a default Frame is used
    message - the Object to display
    title - the title string for the dialog
    optionType - an integer designating the options available on the dialog: YES_NO_OPTION, or
    YES_NO_CANCEL_OPTION
    messageType - an integer designating the kind of message this is, primarily used to determine the icon from
    the pluggable Look and Feel: ERROR_MESSAGE, INFORMATION_MESSAGE, WARNING_MESSAGE,
    QUESTION_MESSAGE, or PLAIN_MESSAGE
    icon - the icon to display in the dialog
    options - an array of objects indicating the possible choices the user can make; if the objects are components,
    they are rendered properly; non-String objects are rendered using their toString methods; if this parameter is null,
    the options are determined by the Look and Feel
    initialValue - the object that represents the default selection for the dialog; only meaningful if options is used; can be null
    Returns:
    an integer indicating the option chosen by the user, or CLOSED_OPTION if the user closed the dialog
    Throws:
    HeadlessException - if GraphicsEnvironment.isHeadless returns true
    See Also:
    GraphicsEnvironment.isHeadless()Edited by: Ross_M on Sep 22, 2008 9:19 AM

  • How to create a backout plan before upgrate the Window Server?

    Hi,
    I am going to upgrade Server 2008 R2 to 2012 R2, before to do that, I would like to create the backout plan for it. please can you tell what content can I put on the backout plan? can you give me an example?
    Thx

    Hi,
    Backup before upgrading should include all the data and configuration information that is necessary for the computer to function. It is important to perform a backup of configuration information for servers, especially those that provide a network infrastructure,
    such as DHCP servers. When you perform the backup, be sure to include the boot and system partitions and the system state data. Another way to back up configuration information is to create a backup set for Automated System Recovery.
    Detailed backup steps depends on the role and function of your server. Certain server roles that are already installed might require additional preparation or actions.
    Here are documents and just for your reference:
    Upgrade Domain Controllers to Windows Server 2012 R2 and Windows Server 2012
    https://technet.microsoft.com/en-us/library/hh994618.aspx?f=255&MSPPError=-2147217396#BKMK_UpgradePaths
    Performing an in place upgrade of Server 2008 R2 to Server 2012 R2
    http://blogs.technet.com/b/chrisavis/archive/2013/10/01/performing-an-in-place-upgrade-of-server-2008-r2-to-server-2012-r2.aspx
    Best Regards,
    Eve Wang
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Synchronizing Disaster Recovery site with the production server

    Hi All,
    One of the customer is asking the following query:
    "How Disaster recovery site can be synchronized with the production server and how do they switch? Will the web logic server do this for them?"
    This customer is having two sites one live and one a DR (Disaster Recovery) site on different location.
    Can somebody answer my query?
    Thanks in advance.,
    Regards.,
    Naveen

    Firstly
    Is your Datagaurd Physical( Redo Apply) or Logical( SQL apply)?
    Does it have Datagaurd Broker?
    When Datagaurd is setup in your environment - on the primary database( live database) the Datagaurd users LGWR or/and ARCH process to collect redo data and ship this data to standby ( DR site) and the FAL process to provide client-server mechanism for shipping archived logs to standby.
    On standby database, The Datagaurd users RFS process to receive redo records from primary database, the MRP process applies redo information to standby database.
    If the Data Gaurd Broker is enabled, Datagaurd also used DMON process to manage and monitor both primary and standby databases as a unified configuration.
    When there is any connectivity issue to the standby and when connection is re-established, the accumulated archive logs are automatically shipped and apploed to stanby, until stanby is resynchronized with the primary. This process does not require any administrative intervention.
    If there is a very large Archive Gap between the primary and secondary due to some major issue. Then the unshipped archive logs need to be shipped manually from primary to standby and needs to be applied in standby to sync up with primary. For some reason there will also arise rare issues like problem with not applying of archive logs though log shipping is success. So some work arround will solve it.
    Comming to planned /unplanned outages of production site.
    Datagaurd has Failover and Switchover( planned ) methods, These are not automatic, but have to be explicitly initiated by the administrator( So there will be downtime but minimal). Once initiated, Datagaurd automates the processes involved.
    - S K A
    Edited by: user12297346 on Jan 27, 2010 7:13 AM

  • Hi, my problem is that i transferred music off my cd's into atones, created an mp3 playlist and would now like to copy that music on to my usb..how do i do it. also would like to snapshot my desk top info

    I ingested music off my cd's in to iTunes. have created an mp3 playlist with my music i iTunes. now how to copy my music on to a usb..also would like to snapshot my desktop so as to send info to my friend

    In iTunes, you can Control-Click on a song and select "Show in Finder".
    In theory you should also be able to select all the songs in the playlist (command-A) and drag them to the USB disk.
    Screen Shots can be obtained using:
        Mac OS X Screen Shots:
            Screen Shot to a Desktop file:
                Command-Shift-3              - Capture entire screen
                Command-Shift-4              - Drag to select copy region
                Command-Shift-4-Space   - Capture Window under cursor
                If you want a menu or pop-up, then do the
                    Command-Shift-4-Space
                after the menu or pop-up is setup as you like it.
            Screen Shot to Clipboard:
                Command-Control-Shift-3              - Capture entire screen
                Command-Control-Shift-4              - Drag to select copy region
                Command-Control-Shift-4-Space   - Capture Window under cursor
                If you want a menu or pop-up, then do the
                    Command-Control-Shift-4-Space
                after the menu or pop-up is setup as you like it.
                Now paste the clipboard into whatever document accepts graphics.
            NOTE:  Preview can be used to annotate a Screen Shot with Circles,
                   Arrows, and Text to describe interesting point in the Screen
                   Shot.
    If this is not what you were interested in, please provided clarification information

  • How to create an Empty Playlist File on Mac?

    Hello everyone, I'm working on a Music Player script, I was able to play a file via the default player as when we doubleclick on a file. The problem is I have no control over the Player, so to "stop" a file I could play a "silent" mp3, one with 1 second of silence in it for example. I discarded the idea since I had to distribute this silent.mp3 file along with the script. A better option is to play a "playlist", since playlist files are text only, I could create them an empty playlist file on the fly...
    so, the question is, what's the default playlist extension on a mac? and how to create one on the Mac?
    in windows the default player is Windows Media Player, the default playlist file extension is *.wpl.
    here's the contents of an empty playlist
    <?wpl version="1.0"?>
    <smil>
        <head>
            <meta name="Generator" content="Microsoft Windows Media Player -- 12.0.7601.18150"/>
            <meta name="ItemCount" content="0"/>
            <title>empyPlaylist</title>
        </head>
    </smil>
    here's the script, so far Windows only, at least to stop the file being played.
    //  script.name = musicPlayer_Windows.jsx;
    //  script.needs = I need to create an Empty Playlist File for the Mac, that will play on the default music player when executed
    // carlos canto, 10/12/2014
    var w = new Window('dialog', 'Music Player');
    var btnFile = w.add('button', undefined, 'Select an *.mp3 file to play...');
    var lblSong = w.add('edittext', undefined, '');
    lblSong.characters = 30;
    var btnPlay = w.add('button', undefined, 'Play');
    var btnStop = w.add('button', undefined, 'Stop');
    var btnClose = w.add('button', undefined, 'Close');
    btnPlay.enabled = btnStop.enabled = false;
    var emptyPlaylist = getEmptyPlaylist ();
    btnFile.onClick = function () {
        var file = File.openDialog ("Select File to Play...", '*.mp3', false);
        lblSong.text = file.displayName;
        lblSong.file = file;
        btnPlay.enabled = btnStop.enabled = true;
    btnPlay.onClick = function () {
        lblSong.file.execute();
        $.sleep (300);
        BridgeTalk.bringToFront('estoolkit');
    btnStop.onClick = function () {
        emptyPlaylist.execute();
        $.sleep (300);
        BridgeTalk.bringToFront('estoolkit');
    btnClose.onClick = function () {
        w.close();
    w.show();
    // this function creates an Empty Playlist file (Windows) on the fly, this file will be used to "stop" a playing file
    // I need a similar function for Mac
    function getEmptyPlaylist () {
        var desk = Folder.desktop;
        var f = new File(desk+'/emptyPlaylist.wpl');
        if (!f.exists) {
            var s_emptyPlaylist = (new String("<?wpl version=\"1.0\"?>\n<smil>\n    <head>\n        <meta name=\"Generator\" content=\"Microsoft Windows Media Player -- 12.0.7601.18150\"/>\n        <meta name=\"ItemCount\" content=\"0\"/>\n        <title>empyPlaylist</title>\n    </head>\n</smil>\n"));
            f.encoding = 'utf-8';
            f.open('w');
            f.write(eval(s_emptyPlaylist));
            f.close();
        return f;
    thanks in advance
    Carlos

    hmm...I think it's going to be more complicated than I thought.
    correct, this script targets the ESTK, it is part of a larger Illustrator script, which doesn't have doScript either...I would go with applescript as last resort. I think going with the playlist file is easier.
    based on your comment I realized users might change their default players, so on Windows I'm going to change the playlist file from *.wpl to the more universal *.m3u, I guess whatever decent player made the default, supports this file.
    so, will an *.m3u playlist file play on the default mac player (itunes) when executed?
    File("~/Music/iTunes/iTunes Media/Music/emptyPlaylist.m3u").execute(); // will this play on itunes?
    I noticed that the *.m3u file can be blank, it will still "play" when executed() and effectively "stops" any music file currently being played...if this happens on Mac also, that's what I'm after.
    thanks for helping Dirk.

  • I just got my refurb iPad in the mail. I am trying to set it up, but im getting this message "iTunes could not back up the ipad because the backup was corrupt or not compatable with the ipad. Delete the backup for this ipad. then try again." How?

    I just got my refurb iPad in the mail. I am trying to set it up, but i am getting this error message " iTunes could not back up the ipad because the backup was corrupt or not compatable with the ipad. Delete the backup for this ipad. Then try agian." How do I do that?

    It sounds like the iPad wasn't erased to me. If the iPad is totally cleared of content, there should be nothing on it and no backup to create.
    Without connecting the iPad to your computer - Launch iTunes on you computer and go to Edit>Prefences>Devices. Do you see an iPad backup in there? If you do see it, delete it.

Maybe you are looking for