Playlist with DMP locally stored content ?

Hi everyone
I am new with DMP and have two questions. DMS system in my LAB contains DMS 5.2 and couple DMPs 4400. I was able to upload java script along with required content into DMP (using FTP) and start presentation from DMP. Requirement is to change that DMP content every day !
Q1: Is it possible to upload content to DMP using scheduler or any other application or every time I need to manually change locally stored files?
Q2: Is it possible to create playlist or scheduler to play DMP locally stored assets (html, flash…)?
Thanks,
O

Good afternoon,
What you are looking for is the "Cisco DMS Content Distribution" mechanism (check
http://www.cisco.com/en/US/docs/video/digital_media_systems/5_x/5_2/dmm/user/guide/dmp/cds.html#wp2183551 for details)
In short, the way this works is the following:
You create a normal playlist on the DMM
With a Content Deployment task launched from the DMM you upload all the required content (in fact, only the files that changed since last deployment) to a group of DMP
Once the deployment has finished, you start they playlist from an automatically generated "Go to Url" task
If you need further clarification on any of the points mentioned in the documentation link I sent you, please, do not hesitate to contact me again.
Best regards
Daniel

Similar Messages

  • Atist name in playlist with a local phone number?

    Hi. I was syncing my iPhone 4s when I noticed a artist name on my play lists with a phone number from the city I live in. is this some type of adware?. I clicked on it and my computer got frozen, had to force shut down. any comments to this isue?.

    ATT should be okay, but not Verizon.  Look at the right panel, under "More like this", other users have asked similar questions.

  • Is it possible for me to share an itunes playlist with someone who is not on my local network and who has a different itunes account? I would like to send a playlist to my friend as a gift, but don't want to buy all the songs before I know it'll work.

    This is what I found when searching for an answer online, but iTunes has changed so much since this posting that I don't know if the answer is still valid:
    Give your playlist as a gift
    You can gift a playlist to a friend, assuming everything is available on the iTunes Store.If you want to share the contents of you favorite playlist with a friend, you can send it as a gift (within the limits of what’s available on the iTunes Store, that is). If you select a playlist, then click the small arrow icon to the right of its name, a dialog box will display asking if you want to give this playlist or publish it on the iTunes Store. If you click Give Playlist, iTunes will look at your songs, then take you to the iTunes Store. This is, of course, limited to what’s available, and if your playlist contains any songs that are album-only sales, you won’t be able to give these; in fact, if your playlist contains any album-only songs, the process will stop, and you won’t be able to give anything from that playlist until you remove the album-only songs (and iTunes won’t tell you which ones they are, but these are generally songs that are longer than 10 minutes). But assuming you can give the playlist you’ve created, I’m sure your recipient will be very happy.

    Hi czigrand,
    Thanks for visiting Apple Support Communities.
    Currently, you can gift dollar amounts or individual items (EG. songs) on the iTunes Store. See this article for more information:
    In the iTunes Store, you can gift a dollar amount or specific music, movies, TV shows, or apps from your iPhone, iPod touch, iPad, Mac, or PC. Follow these steps to send a gift from the iTunes Store.
    iTunes: Sending iTunes Gifts
    http://support.apple.com/kb/HT2736
    Best Regards,
    Jeremy

  • How do I let local Flash content communicate with the Intranet?

    How do I let local Flash content communicate with the
    Intranet if you don't have intenet access to set it up? you se like
    a host for example with is out of an internet conexion, but the
    flash file use a web service that it's on the intranet but can't
    config the Global security settings.....
    help!!!

    That variable could be simply called... nextSection
    If you plan to use frame labels, than nextSection would be a String, otherwise it would be an Int (integer).  So when you click the button for section X of the site, the nextSection value is assigned either the frame label or the frame number of that button's section.  Then at the end of your outro, you have a line of code.... gotoAndPlay(nextSection)
    The nextSection variable should be declared in an actions layer that only has code in frame one but extends unbroken for the full length of the timeline.  This makes it available to anywhere along the timeline where it needs to be either read or assigned.  I sually use two layers for actions... one to hold such things like this that get shared anywhere along the timeline (function/variables)... and another for frame-specific actions (stop, value assignment, function calls, etc)

  • Why since i have upgraded iphone  to io7 and upgraded itunes to the latest version that when i sync my iphone 5 with playlists the playlist are emplty yet the content still resides in itunes thgis is ******* me off as i have to use a playlist tomorrow

    why since i have upgraded iphone  to io7 and upgraded itunes to the latest version that when i sync my iphone 5 with playlists the playlist are emplty yet the content still resides in itunes thgis is ******* me off as i have to use a playlist tomorrow

    problem fixed when i updated iTunes with the latest update 11.1.1.11

  • Streaming stored content with FMS2... Please help.

    Hello,
    I am running the free FMS2 server for development purposes,
    hoping
    that it proves well enough to buy a licensed product before
    we launch
    our product to assist in streaming videos and mp3s (we might
    even
    implement some other applications in Flash 8 Pro given that
    we already
    bought a copy of Flash 8 Pro for this task alone).
    Current, I am only able to stream live events with FMS 2.0.4
    r79. The
    next part of my project adds the availabilty of stored
    content (aka
    on-demand; from what I understand). However, all of my
    attempts at
    streaming .flv files from FMS2 by using either FLVPlayback
    component
    with a contentPath set to
    rmtp://x.x.x.x/test/streams/cafe_townsend_chef
    I have omitted my server's public IP address.
    In another test, I tried adding the .flv file extension to
    contentPath. My clients fail to connect with either format.
    I have also used the stage and actionscript to test the
    stream with,
    it still fails, but here is a sample of my code with tracing:
    connection_nc = new NetConnectio();
    connect_nc.onStatus = function(info){
    trace("level is: " + info.level + "\n" + "code is: " +
    info.code";)
    connection_nc.connect"(rtmp:/x.x.x.x/test/streams");
    var play_ns:NetStream = new NetStream(connection_nc);
    theVideo.attachVideo(play_ns);
    play_ns.play("cafe_townsend_chef.flv");
    play_ns.onStatus = function(info) {
    trace("level is: " + info.code);
    trace("description is: " + info.description);
    trace("details are: " + info.details);
    In this .fla, I have "Video 1" on the stage with the name
    property set
    to theVideo.
    When I "Control->Test Movie" in Flash Pro 8, that produces
    these
    results (no videos or audio plays):
    level is: status
    code is: NetConnection.Connect.Success
    level is: NetStream.Play.Reset
    description is: Playing and resetting cafe_townsend_chef.flv.
    details are: cafe_townsend_chef.flv
    level is: NetStream.Play.Start
    description is: Started playing cafe_townsend_chef.flv.
    details are: cafe_townsend_chef.flv
    At this point, fms2_console.swf "View Applications" is
    showing a
    connection to "test" app, with "stream" as an instance. I
    show one
    client using rtmp with 6213/6813 bytes in/out, a recent
    Connection
    Time, and 2/4 messages in/out.
    I am using port 1935 by default and ability to be resource
    efficient
    with applications, which has been opened on the firewalls
    protecting
    our server which can be seen by the
    NetConnection.Connect.Success
    statement from what I have read. I am able to stream live
    events from
    this server during development and they work.
    During testing for stored content (what I am trying to
    accomplish
    now), I have also turned off apache, which normally binds to
    port 80
    and added the following lines to my
    conf/_defaultRoot_/Adaptor.xml
    defined inside <HostPortList></HostPortList>
    directives:
    <!-- <HostPort name="edge1"
    ctl_channel=":19350">${ADAPTOR.HOSTPORT}</HostPort> -->
    <HostPort name="edge1"
    ctl_channel=":19350">:1935</HostPort>
    <!-- Ready for testing when Apache is turned off -->
    <HostPort name="edge2"
    ctl_channel=":19351">:80</HostPort>
    After restarting FMS2, this only produces a slightly
    different result
    when using http instead of rmtp in any/all of the code above.
    In
    firefox, the status bar just keeps a "Waiting for
    x.x.x.x...", but
    never loads content in the player and doesn't show. In IE, I
    get a box
    to click on to play content, after clicking, it just reports
    "Done" on
    the status bar.
    I thought this was a Flash Pro 8 issue regarding my code
    (since this
    is my first project using Adobe's products), but I have tried
    several
    examples around Adobe's site (tutorials, live docs, FMS2
    development
    pdf provided with the server package), plus some off-site
    ones found
    by googling. I opened a case with Adobe's Flash Pro 8
    Customer Service
    team and they say it's an FMS2 problem after running some
    tests
    against my server.
    I have also traded out the .flv used for testing to verify it
    is not
    the source of my problems.
    Does anyone know my problem and have a fix or just have some
    advice on
    where to go from here?
    Hopefully Adobe staff can shed some light on this.
    Let me know if there are blanks I still need to fill in.
    Thanks.

    I tested with the Flash 8 Pro provided main.asc in
    fms2_install_dir/applications/test/ and see the same behaviour as
    majority of the other tests.
    In the process of searching for "FLVPlayback and main.asc" on
    Adobe's main site, I found an article that provides a thoroughly
    setup media player using FLVPlayback. The .fla leaves the
    contentPath blank on the component and sets a server variable in
    actionscript (default is localhost, I updated it with my server).
    When I publish preview the SWF, I get this error:
    Error : dir NetConnection.Call.Failed
    What could be causing this on either client or server side?
    When I publish HTML, the page never loads content.
    Some settings and where I have put them in certain files:
    <VirtualDirectory> settings contained within
    fms2_install_dir/conf/_defaultRoot_/_defaultVhost/Vhost.xml:
    <Streams>
    /approot;
    /opt/macromedia/fms/applications/MyCollection/streams/_definst_/
    </Streams>
    These are <FileObj> settings inside
    fms2_install_dir/applications/FileObj/Application.xml
    <VirtualDirectory>
    /approot;
    /opt/macromedia/fms/applications/MyCollection/streams/_definst_/
    </VirtualDirectory>
    fms2_install_dir = /opt/macromedia/fms
    Article:
    http://www.adobe.com/devnet/flashmediaserver/articles/on_demand_player.html
    Source:
    http://download.macromedia.com/pub/developer/on_demand_player.zip
    Example of this player live:
    http://robertsandie.com/demo/OnDemandPlayer.html

  • Why with the last update does the stupid GAMES CENTER always pop up when I want to open a locally stored game?  It is really annoying. I click on 'disable' and it just 'disables' it for that session only.

    Why is the stupid GAME CENTER a popup every single time I try to access a locally stored (and paid for) game application?  It is really annoying! I click on 'disable' and it only disables it for that session. When I come back a while later, the stupid GAME CENTER pops up again....
    this just started with the upgrade to iOS6...

    I share your frustration. Maybe there are more people that really hate what game center has become. Here's my problem: Ok, so when I open the Game Center app it asks me for my password to log in. But when (while "signed out" of Game Center) I open an app (game app) it automatically signs me in without me even putting in a password. So, if I go directly to the Game Center app, I have to use my password to sign in. If I open a game app, I don't need to use my password...I'm signed in without any verification. I now can close the game app, open the Game Center app and BAM!!! I'm signed in, password free. I have searched for a solution to this nonsense of two days. I have tried changing my Game Center ID four times and every time it says, "Welcome back '&amp;&amp;@&amp;!'!" Apple has every freaking app of theirs listed in the support communities but the Game Center app. Why? I am an adult that likes to relax and spend 30 minutes or so playing a game. I could give two flying $&amp;@&amp;s what I the other guy or a 4 year old did yesterday. I want a solution to delete completely or disable this tracking crapware. And the whole signing me in without me giving a password smells really fishy. I bet we will see a lawsuit really soon even if this is fixed. Definitely a security issue at the minimum. 

  • How to add a locally stored video file to a presentation

    Hi all ,
    I want to add a locally stored video file to a presentation .What is the url that i need to use..
    Ur help is much appreciated
    Thanks

    The recommended procedure is to create the presentation on the DMM (upload the video to the DMM) then create a deployment package using the presentation created on the DMM. Once you deploy it to the DMP, the DMM will FTP the video along with presentation files to the DMP which will contain the links to play the video that will be stored locally on the DMP.
    You may want to review the following thread to see how to trigger the local presentation to play and how to update it later:
    https://supportforums.cisco.com/message/3289668
    Regards,
    Fabio Bergamo
    Cisco TAC

  • Failed to Deploy playlist to DMP

    i am having problem deploying playlist to the DMP default storage ,the playlist i was tring to upload contains 3 video files (relativly small ones 3MB each)
    In the deployment manager there is a line which says the the current action is in "processing" but after some time the action fails with the following errors:
    1 )
          Error
    Error time: Tue Jun 08 09:00:32 IDT 2010
    Endpoint Id: 10.0.0.144
    Error Message: Missing or a partial file.
    Affected Content
    Content Name: n3.mpg
    Content Source URI: http://10.0.0.170:80/content/34630e6a-df20-46f3-b46f-103cc293d725.mpg
    Content Target URI: file:///tmp/ftproot/usb_1/deployment/content/34630e6a-df20-46f3-b46f-103cc293d725.mpg
    Affected Applications
    Application Name: Demo Playlist
    Application Type: Playlist
    Application Description: Demo Playlist
    2) Error
    Error time: Tue Jun 08 09:00:32 IDT 2010
    Endpoint Id: 10.0.0.144
    Error Message: File Content: ID = 10 Name = Source URI = http://10.0.0.170:8080/xTAS-core/api/xml/app/playlist/http_pull_59_start_playlist_xml_54_.htm Target URI = file:///usb_1/deployment/xTAS-core/api/xml/app/playlist/http_pull_59_start_playlist_xml_54_.htm Size = Not Available is not available with the File Access Service. The status is FAILED
    Affected Content
    Content Name:
    Content Source URI: http://10.0.0.170:8080/xTAS-core/api/xml/app/playlist/http_pull_59_start_playlist_xml_54_.htm
    Content Target URI: file:///tmp/ftproot/usb_1/deployment/xTAS-core/api/xml/app/playlist/http_pull_59_start_playlist_xml_54_.htm
    Affected Applications
    Application Name: Demo Playlist
    Application Type: Playlist
    Application Description: Demo Playlist
    What could be the issue ?
    it used to work few days ago !

    Please try the following:
    - Remove the suspect VIDEO asset(s) in problem Playlist & all playlists in which it may reside
    - Remove the suspect VIDEO asset(s) from the Media Library
    - Delete the suspect DEPLOYMENT PACKAGE
    - Re-add the original VIDEO assest(s) to the Media Library
    - Create Playlist with the New "Original" VIDEO assest(s)
    - Create a New DEPLOYMENT PACKAGE for New Playlist with
      New "Original" VIDEO assest(s)
    - Deploy New CD package to suspect DMP(s)
    - Please provide Results of Test.
    Thank You!
    T.

  • Playlists with videos won't go away

    iPod doesn't support playlist folders. As a result, the music playlists menu is annoying to use unless I trim it down to only include some of my playlists.
    The obvious way to get rid of unwanted playlists is to uncheck them in the "Music" tab under the iPod in iTunes. I did this, but some playlists just wouldn't go away. It turns out that when I am syncing "All Movies" and "All TV Shows", any unchecked playlist that contains a video will still appear in the music playlist menu. (It seems like they were always empty playlists in the iPod.)
    My workaround is to sync "selected playlists" for movies and tv shows, and to create a single playlist with all my videos. That playlist still appears under the music playlist menu of the iPod, but at least it's just 1.
    I assume this is a bug. Anyone have a better workaround? Or is there just something I'm missing?
    Mac Mini   Mac OS X (10.4.7)  

    Hi, Spangles1234, and welcome to the Community,
    I use the Windows Desktop version of Skype; please check this setting by clicking, in order:
    On the menu bar atop your contact list, Tools -> Options -> Advanced Options -> Connection -> check in Allow direct connections to your contacts only -> Save.
    As a proactive measure, please also run your preferred anti-virus/malware/spyware software suite using the most current virus signature files available.
    Continue to Block and check in the Report as Abuse/Spam button.  This is important and Skype does utilize these reports.  [Edited to redact e-mail address, which is no longer in service.]
    I recommend you create a new Skype account that includes no profile details and no references that could be connected with your first account. 
    Finally, please see this FAQ article: https://support.skype.com/en/faq/FA34447/what-should-i-do-if-i-see-abusive-behavior-on-skype
    This is key: Contact your local law enforcement agency to report the incident, and request that they, in turn, file a report with Skype to report these incidents.
    Kind regards,
    Elaine
    Was your question answered? Please click on the Accept as a Solution link so everyone can quickly find what works! Like a post or want to say, "Thank You" - ?? Click on the Kudos button!
    Trustworthy information: Brian Krebs: 3 Basic Rules for Online Safety and Consumer Reports: Guide to Internet Security Online Safety Tip: Change your passwords often!

  • Workflow status column in AllUserData Table with wrong coded in Content Database?

    I would like to write a stored procedure to find out all workflow instances with errors, directly from content database.
    I go to dbo.alllists to find out the workflow status column, and query AllUserData and find out not readable text
    like:
    쳀曩쌙䂻֞鼥
    㖦巀䐝义颹暲ﻇൿ
    ﱰ臨臸䋖ហ嬀ᨵ瘉
    鄌幀鴏䔖튅㐻⩷揬
    묨ή姖䩡ꊎ鉛۬浶
    ⟯봨飮䙕잳摕盜⣢
    屑䳬鑥䶵岿珽磯Â
    ꬁᆈ䀥䓝䶲紀篰䟫
    蓏ꋦ䥌肃瘓⯈᭄
    뵎㎙䈸䪿蔀ࢴ
    ෬꧋辂䘀馻ࡲ琓
    ꞎ鵫䬺ࢬ䀒✫ꡱ
    any ideas?

    Hi,
    Thanks to share your post.
    For the issue, I think it may due to the wrong handling of the encoding type “UTF-8”, please refer to the followed article, they may give you a hand:
    http://blogs.sun.com/shankar/entry/how_to_handle_utf_8.
    http://devlog.info/2008/08/24/php-and-unicode-utf-8/.
    Hope this could help you!
    Leo

  • Opening pdfs from Connect Stored Content flashes content and disappears???

    I've checked the existing threads and don't see this exact problem, so here goes - I hope someone can help! 
    I am using Adobe Connect and have pdfs stored on the server in my hosted account.  When I use Firefox, and I click on the link to bring up the pdf, a new window opens, the file loads and displays for a fraction of a second and then the window goes white.  If I hit refresh, the file flashes again and disappears.  It works OK in IE, but I seem to have this problem with all the pdfs in the Connect environment using Firefox.  I can view other pdfs in Firefox, just not these ones. It happens whether I am in the admin section and click a link from the stored content area, or copy/paste the url into the browser and try to access it that way.
    I'm using a PC, Windows 7, 64 bit, Firefox 10.0.2, and have installed all the updates for Connect.  Help?!
    Cheers, Kit.

    It sounds like you have an issue with using more than one Apple ID.  Only one Apple ID owns the purchased content.  If a different Apple ID tries to access it, issues result.

  • Event 1502: Cannot read locally stored profile

    Occasionally when restarting my Windows 8.1 PC, I am logged in with a temporary profile, and get the following Event log, ID 1502, User Profile Service:
    Windows cannot load the locally stored profile. Possible causes of this error include insufficient security rights or a corrupt local profile.
    DETAIL - The process cannot access the file because it is being used by another process.
    It happens maybe 1 out of 4 restarts and is very frustrating. I only have one Administrator User Profile on my PC. Any ideas?

    Hi,
    According to your description, it may be caused by account
    corrupted.
    Please refer to the similar thread about this issue:
    http://social.technet.microsoft.com/Forums/en-US/5627f84a-d724-4eb8-946c-8ec446c86420/my-user-files-are-suddenly-being-stored-in-temp?forum=w8itprogen
    If the issue persists, let us create a new account to test it.
    Keep post.
    Regards,
    Kelvin hsu
    TechNet Community Support

  • (HELP!)How can I import Windows Media Player Playlists, into iTunes Playlists, with Music . .  for an iPod

    How can I import Windows Media Player Playlists, into iTunes Playlists, with Music . .  for an iPod
    We are having no luck with the thousands of songs we have to manualy add to a particular playlist in iTunes alone. .. there must be a simpler way! How can this be done . . . if there is and it's complicated, is the Genius allowed to help us out with this? They seem to only master Mac's only. .  or can they help us? PL E A SE E E  HELLPPP!

    tt2,
    Your very helpful and knowledgeable. I for one appreciate all the hardwork and help you have been giving the people on theses lists, especially with the problems associated with the "importing playlists" from windows media. Unfortunately I need more help if you or someone else can provide it. I followed all the steps you have instructed so far in the threads I have seen. Unfortunately nothing so far works for me. Maybe you or someone can help me, I'd really appreciate it. I tried the notepad++ method and when I click on save I always get a notepad file that my iTunes can't do anything with. I click the "convert to UTF-8 without BOM" then click save as and it still saves as a notepad file. I am also unable to find the \n\ file path to replace with my \C:\ filepath. Here is a copy of the first part of one of my playlists:
    <?wpl version="1.0"?>
    <smil>
        <head>
            <meta name="Generator" content="Microsoft Windows Media Player -- 12.0.7601.17514"/>
            <meta name="ItemCount" content="161"/>
            <author/>
            <title>Power Surge</title>
        </head>
        <body>
            <seq>
                <media src="..\Various Artists\Mixed Tape 2\13 Out of Control.wma" tid="{650561AF-AA9D-4EA3-84CC-2F09C24DF3B3}"/>
                <media src="..\Various Artists\Mixed Tape 1\12 One Step Closer.wma" tid="{EE5ADD9D-A879-404A-BC60-CE841045BCB6}"/>
                <media src="..\Various Artists\Mixed Tape 1\15 Click Click Boom.wma" tid="{0F71941C-1B67-425F-BDAA-246618709179}"/>
    Now I went and switched the part from  <media src="..\ to <media src="C:\ in all the files in hopes that was where I am supposed to have my drive letter but it didn't seem to help. Please forgive my encoding ignorance if that's what my problem is. I hope you can help.  Thanks in advance.
    Madmaxneo

  • MobileMe/IMAP: locally stored messages disappeared

    Hi,
    with the current service window of MobileMe, I cannot access my e-mails via the web interface. Fair enough, I thought, I was looking for a message I sent yesterday, and this will surely be accessible through Mail or at least in my local IMAP directory. To my great horror, Mail does not show the folders, and in the library, the MobileMe directory is empty for all but the inbox files! All the folders are gone.
    I opened TimeMachine, and double-checked they used to be there. (Bad for me: the last backup was from before I sent the message.)
    Can anybody explain how locally stored IMAP folders and messages can suddenly disappear without warning?
    Thanks,
    Leo

    Same problem here today! Not good at all, i checked the settings of the account and even if i told mail to keep a local copy, all the messages disappeared.
    The thing doesn't affect the iphone mail luckily so i think that is a mail bug somewhere...

Maybe you are looking for

  • ABAP - BDC transaction not saving changes to records

    I am trying to write my first ABAP code using BDC recording.  Essentially I would like to flag the "Final Delivery" field (EKPO-EGLKZ) for a range of documents by recording transaction MASS. The code runs without errors - but the changes are not save

  • I am trying to update my iphone 3Gs for the IOS 5

    Please help! I am trying to update my  IPhone 3GS to the new update ios5 and it has downloaded and its now stuck on the Backing up Iphone bit and its been there since 3:00pm today and still wont go away, I have stopped it once due to thinking the com

  • Business Packages for Higher Education

    Hi, I am looking for Business packages for Higher Education/Campus Management. I Found only one on SDN. Business Package for SAP Higher Education & Research 1.0 Are any other  Business packages available ? Regards Mark

  • GZip Version Problems

    Hello Everyone, I have the need to decompress an array of bytes that are given to me in gzip format. The problem that I am facing is that I beleive that the version of gzip that the bytes are compressed with, is different than the version of gzip tha

  • PrEL 7 - Motion Menu Templates Disappeared...?

    I am using Adobe Premiere Elements 7, and I had my DVD project all ready to go, then I went to burn the disc and I crashed. Of course, I saved before trying to burn, so I just rebooted the system and started the program back up. However, now the moti