How to create video playlists in SmartCenter 2.0?

I have dozens of videos that I see when I open the Visual part of SmartCenter and kind Datse, files or videos but when I select "Playlists" says ' Playlists - no videos no could be found "at the top of the screen just below the" Dates, records, videos, Playlists, etc. "bar. It would really help to create video playlists, but how can I get the videos that are appearing everywhere else in the playlist window?

Any help would be appreciated,

UH... someone has thought about a situation for a few days if not weeks before gathering the courage to ask for help and then found the minutes of the solution after asking? Yes, it's one of those occasions. Weird.

In my defense, the user interface seems a bit obtuse. When you click 'Playlists', then 'create the Playlist"at the bottom of the screen then you need to click the 'Dates 'Files' and 'All videos' to search for videos. The "obtusity", is that it seems not intuitive for me that I had to then search in the other positions after that I chose to create a playlist. I assumed that the window to "Create a Playlist" which arises then would include videos in watched folders. When you see a video, you will find that there is a green circle with a sign more on the upper right corner. Clicking on that will add it to the playlist that you create. When you are satisfied with the reading list, give it a name and then save.

* sigh *.

Message edited by BetaPsi on 10/06/2009 13:35

Tags: HP Desktops

Similar Questions

  • How to create a playlist file

    How to create a playlist file

    Hello

    Double post. Please use:

    http://h30434.www3.HP.com/T5/notebook-PC-sound-and-audio/playlist-file/m-p/5101752

    Thank you.

  • Try to create video Playlist HTML5 beachfront animate - I can't make it work. Help, please!

    Hi all

    I am creating an interactive site through edge animate and I'm trying to create a Playlist of video HTML 5 feature to animate within edge.

    Courses - example:

    I have 3 videos that need to be played on a specific page.

    I created a symbol and dragged the videos of the scene and concealed them in the chronology of this symbol.


    I then use thumbnail images in a selection side to each. remove();. hide(); a video and. show(); the next.

    But when I make a hide / show option, the video still plays in the background, if I create also an if/else statement to pause.

    My concern with a break, is that it will continue to load and significantly slow down the loading time of the site.

    References:

    I found which seems very useful but do not know how to add to the composition of edge.

    http://Demosthenes.info/blog/909/create-an-automatic-HTML5-video-playlist

    Please help or put me in the right direction to create a playlist would be huge... SURPRISINGLY... useful.

    Thank you

    Jason

    Hi Jason,

    If you don't count to the user to go back and play a video, and then adding each video to its own symbol and then removing the symbol when the user switches to the next video is the fastest and simplest way to achieve this. Otherwise, hide/show you will be asked to pause the video that you noted, and it won't stop downloading until the browser thinks it has enough to read without a break.

    If you do intend for the user to go back, it is more difficult but still possible - you may createChildSymbol to add symbols video back. If they are all of the same image size, you could avoid the entire structure of the symbol/delete/createChildSymbol and use a single video clip and change the src files, then use the load() to reload the video element - method but if you are concerned about the performance of video playback, only the first file source will preload in the browser. But it is more in line with the idea of playlist that you have linked to. You can also use addEventListener to have these things happen when video events such as past shot and even follow where the user was in the variables and restore them if they're coming back (if that's what you wanted).

    In summary, there are several ways to approach this problem - maybe the hardest part could be the tail it with what you want the user to be able to do.

    HTH,

    Joe

  • How to create a Playlist file empty on Mac?

    Hello everyone, I am working on a music player script, I was able to play a file via the default drive when we double-click on a file. The problem is that I have no control over the player, so to "stop" a file I could play a 'silent' mp3, one with 1 second of silence inside for example. I threw the idea since I had to distribute this file with the script silent.mp3. A better option is to play a 'playlist', playlist files are text only, I could create an empty playlist file on the fly...

    so, the question is, what is the extension of list of default playback 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 are 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 currently playing file.

    //  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

    iTunes wouldn't let me export an empty selection.

    The following three lines is the mentioned track .m3u playlist above:

    #EXTM3U

    #EXTINF:179, Aquarella - Georges Arvanitas Trio

    / Users/dirk/music/iTunes/iTunes Music/Media/Georges Arvanitas Trio/Jazz loves Paris By Night - organ Piano & Hammond/02 Aquarella.m4a

    If I run this file from playlist, iTunes abandons the current track and lets the list.

    If I remove the lines 2 + 3, iTunes ignores the reading list.

    If I change line 3 to a bogus file reference, iTunes ignores the reading list.

    BTW, iTunes sees the "repeat" setting - so if the track is a second of silence, it will be repeated forever.

  • How to create video chat rooms

    Hello

    I work with video conference application. I'm new to fms. Everyone please suggest and guide me how to create various video chat rooms.

    Your help is appreciated.

    Thank you

    Srinivas

    _3 http://www.amazon.com/Programming-Flash-Communication-Server-Lesser/dp/0596005040/ref=sr_1? ie = UTF8 & s = books & qid = 1276689073 & sr = 8-3 #reader_0596005040 p.347.

  • How to create a playlist on a NWZ-W270?

    I love this product, but the support is terrible.

    Something happened to my Walkman, I had to delete all the songs and now I can add songs to the Walkman but can't make a Playlist itself and the songs aren't in the right order. Grrrrr.

    Once again, GREAT product. Support is brutal.

    Someone at - it help him? (This is your good deed for the day. )

    Thank you.

    First set your player to your computer with the USB connection. So, if you are using Windows Vista or similar, click on the Menu start > computer
    Your walkman should appear on the list of the drives in the computer.
    Right-click on the icon for your walkman and select the menu option "explore".
    Then right click again on the empty space the windows of Windows Explorer that has arisen.
    Select the menu "new folder."
    Rename then rename the folder as playlists, with all capital letters.

    Then, you can use taskbar to transfer a playlist on your walkman.

    This time, because you created the folder SELECTIONS the MediaGo software must put the files of the playlist in the PLAYLISTS folder. This means that your device should then be able to switch mode playlist one allow to play playlists.

    There is a bug in the software of multimedia of Sony because the MediaGo software should have created the folder SELECTIONS throughout, but you have fixed the bug by creating the folder playlists manually.

    I hope it works on your device.

  • Cannot create a video playlist in Windows Media Player 12

    After deleting and restructuring of my collection of videos, I can no longer create playlists in WMP12. I ran the store, uninstalled and reinstalled WMP and always get the same error message: ' WMP encountered a problem during the creation or saving of playlist. Please ELP.

    Hi Colon,

    Thanks for posting your question in the Microsoft Community forum.

    From your problem description, I understand that you are not able to create video playlist in Windows Media Player 12.

    Also, this problem occurs because the Windows Media Player library database is corrupted.

    Step 1:

    To resolve this problem, delete the Windows Media Player database. To do this, follow these steps:

    a. exit Windows Media Player.

    b. Click Start, run, type %LOCALAPPDATA%\Microsoft\Media Player and then click OK.

    c. Select all files in the folder and then click on Delete on the file menu.

    Note: You don't have to remove the folders that are in this folder.

    d. restart Windows Media Player.

    Note: Windows Media Player automatically rebuilds the database.

    Step 2:

    If this does not resolve the problem, disable the Windows Media Player database cache files. To do this, follow these steps:

    a. exit Windows Media Player.

    b. Click Start, click Run, type % LOCALAPPDATA%\Microsoft and then click OK.

    c. Select the Media Player folder, and then click on Delete on the file menu.

    d. restart Windows Media Player.

    Please follow all the steps and if the problem persists, return back and we will be happy to help you.

  • Smartphones blackBerry how to create a new folder in the video folder in the media

    Hi, I'm trying to figure out how to create a new folder in the video folder in the media. I can easily create new folders in the pictures folder, but not in the videos... Why? Thanks in advance for your help.

    well I'm sorry, I think that I have not read your emails correctly.

    The media application doesn't care about records at all. It will read the files, the tags when they are available, playlists, but it will not show the files. with the exception of the pictures.

  • How to create a new playlist on an ipod nano

    How to create a new playlist on my ipod nano?

    See https://www.safaribooksonline.com/library/view/ipod-the-missing/9780596155834/ch 06s05.html.

    TT2

  • How can I create a playlist without WMP?

    How can I create a playlist without WMP with files stored in my sansa Fuze please?

    You can make one in Notepad,

    It should contain the path to your music,

    So let's say your songs is at F:/music/artist/coolsong.mp3

    in Notepad, you must put the RELATIVE path, so if your file to playlist in the folder "music", you get artist\coolsong.mp3

    and if it is the root (main folder) of your drive, you would put music\artist\coolsong.mp3

    and all files must begin with: #EXTM3U

    Here is an example of a playlist (saved in the root

    #EXTM3U

    MUSIC\pillar\For the love of the Game\01 for the love of the Game.mp3

    MUSIC\pillar\For the love of the Game\02 turn up.mp3

    MUSIC\TobyMac\Momentum\Yours.MP3

    MUSIC\msc\Trogdor.MP3

    MUSIC\Msc\move.MP3

    I know it will work because it is my real playlist,

    during the recording of brand shure you end the name of the file as .m3u

    and change the type as 'save' to all files

  • How to create workflows CPO... video of training

    Is that what anyone has the training videos for understnading of CPO workflow or how to create Prsocess...?

    Thank you

    I did a lot of content regarding the training.

    Refer to the video section on this site @ https://supportforums.cisco.com/community/netpro/data-center/intelligent_automation/teo?view=video

    In particular, this video speaks to the creative process: https://supportforums.cisco.com/videos/2150

    Since you are a cisco employee, I suggest you visit the wiki page of the TAC @ http://wikicentral.cisco.com/display/IABUS/PROAUTO+Queue and refer to "TEO Support Training". There are a ton of videos I've done over time it.

    -Shaun Roberts

    CPO/CIAC Support lead

    [email protected] / * /.

  • Windows Media Player-how create a playlist

    howdoicreateaplaylist?

    I just got a laptop, don't have a clue on how to create playlists?

    Open Windows media player.  On the side right of the window see you 3 tabs, click the tab game and displays the reading pane.

    1 drag selected titles / tracks in this pane groups

    or select the titles / groups of tracks, do a right click, add to, Playlist

    2 at the time at the top of the reading pane, there is a backup button.  Click on it and it will give you the chance to give it a name.  It will record this name playlist in the Playlists of music / [or the Playlists subfolder in what you chose for your music folder].

    3 you can then play the list just like you can read an album or anything else.  If the playlists do not appear in the left hand "navigation pane" in WMP, click on organize, customize navigation pane & you can select them to be shown.

    Note: I talked to someone who had a problem, save playlists.  It is then rendered in the music folder in Windows Explorer and manually created Playlists subfolder.  The function of economy playlist then behaved correctly.

    There are also "auto-playlists' [created for each album ripped, I think] but you have to pick them up in Windows help pages that I've not used since WinXP so anything I said maybe garbage - they could not exist more for as far as I know.

    What is the info you hoped?

  • How to create a video file name?

    Goal: Create a video file in the SDK of the waterfall.

    Error: When the file name is created, the real file name still be 'VID_00000142.mp4 '.

    mfilenameLabel-> setText also shows the "VID_00000142.mp4".

    Question: How to create a video file name?

    Mini code:

    char * videofilename = "." "/ shared/camera/test.mp4";

    If (camera_roll_open_video (mCameraHandle & mVideoFileDescriptor,
    videoFilename, sizeof (videofilename), CAMERA_ROLL_VIDEO_FMT_MP4)
    == CAMERA_EOK) {}

    mfilenameLabel-> setText (basename (videofilename));

    Thank you for your attention,

    Finally, we use the rename (filename, videofilename) to solve our problem.

  • How to create a website video background in Adobe Edge?

    Hello
    I have the video file on my SSD drive computer and I want to play as a backdrop on my web page (a page I created). I tried to watch this video:

    How to create a website video background in Adobe Edge animated using Edgehero - YouTube

    but I can't follow 100% what she does.

    Guide I've tried to follow is at this link: How to create A Web site video in Adobe Edge bottom animate using Edgehero - YouTube

    Steps I do in Adobe Edge animate CC

    1.) create new

    2.) I click on + sign article library > > Scripts > > add a JS of URL file...

    URL that I add is: http://www.edgehero.com/edgehero.js/1.2/edgehero_1.2_min.js  (URL is taken from site: Edgehero.js )

    I add this link:http://www.edgehero.com/edgehero.js/1.2/edgehero_1.2_min.js to box that occures after i click on Add JS File from URL

    1.JPG

    3.) I go to Edgehero.js and from there i scrol down to section named as Media - video Html5 / Html5 audio
    and here I select this option:

    2.JPG

    There is a code:

      // this will set the video as background of the div/rectangle
    backgroundvideo_1 ='movie.mp4';
      // put new edgehero.js variables here

    4.) I go to Adobe Edge animate CC 2014 and right-click on the project and select Actions open to "Stage".

    3.JPG

    and then I click on + sign and select creationComplete4.JPG

    This will open the window of the scene

    Here I copy this code:
      // this will set the video as background of the div/rectangle
    backgroundvideo_1 ='movie.mp4';
      // put new edgehero.js variables here

    5.JPG

    5.) then I click on + sign under the library > > video

    6.JPG

    and I add video to my computer disk SSD.
    Video is called as video3.mp4

    Now I eddit code in the window of the scene (see above)
    code will look like after editing like this:

    7.JPG

    Can I change under the left-side px to %

    8.JPG

    9.JPG

    6.) then I copy the Code in step backgroundvideo_1:

    10.JPG


    Then I select the Rectangle tool and mark the box (white box) and I click on the little icon of C
    11.JPG

    And the box that takes place I type here backgroundvideo_1_mp4 autoplay
    now when I use ctrl and enter I get only a gray box that does not play video.
    What I am doing wrong?


    I drag and drop a video from the side straight to rectangle window and the side left, I clicked on loop playback and it started working as it should.

  • create web video playlist using muse

    I want to create playlist video Web pages like this using muse.

    But I want to hide the thumbnail of the video.

    When I try to remove the thumbnails, the video being is not sensitive to the video image.

    can someone help me?

    I thank in advance

    Please check if this helps: video playlist?

Maybe you are looking for

  • Why not sign on tomytumblr account

    Hi if you use Firefox I can't sign my tumblr account. Even if I do it from the yahoo address I use on tumblr. It just keeps connect me request. Any ideas?

  • I have no fonts I have Web pages

    Hello any site looking to open is displayed in the same way.screen: https://drive.google.com/file/d/0BwWPAhs9kUZkQkh0QWZuRjJ2bU0/view?usp=sharing I already reinstall FF, the problem occurs on more than one profile. IE and chrome sites look properly

  • Re: What type of video connection has the Tecra A10 - 11I: VGA/DVI?

    Hello I'll buy a cable to connect my Tecra to the TV. The manual of the TV indicates that laptop to connect may have a DVI or VGA connector. What type of connector the Tecra A10 - 11I there? I can't find this information anywhere. Thanks for the help

  • Not supported Skype in my ipod

    How can I install & download Skype for 4.2.1 iPod version

  • USB 2.0 devices are not recognized on Satellite L

    Hello All of the usb 2.0 device is not recognized on my laptop.I got a message stating that the driver are not installed. I'm looking for the driver on the support site, but could not find them...I've updated the bios and chip set utility, but still