Issues while watching content after live streaming operation

Hi,
1)We have performed a live streaming of an event using Azure Media Services , we streamed the entire event 
which was of about 5-6 hrs duration . But at the end we came to know that it has streamed only last  1 hour of 
entire event.
Can you let me know what might be the issue?
2)We performed a live streaming of an event in 2 parts using azure media services. After 2 hours we stopped the streaming of 1st part and deleted the channel for 1st part and we started streaming of another part by creating another channel . We are unable to
view the 1st part through content url while we are able to view the 2nd part through content url?
Can you let me know what might be the issue?
Thanks,
Pushkar

The fan is speeding up to cool the GPU. The GPU (graphic's chip) heats up because video's and game's work the GPU much harder than normal desktop activities.
When was the last time you checked and cleaned the air intake grill on the bottom of your iMac?
I shutdown (stopping the fans), disconnect the power and vigorously vacuum out the bottom grill work on my Mac's a couple of times a year to keep them running cool.

Similar Messages

  • After live stream is completed. Steps to make it available as VOD content?

    I'll be streaming different events about every 2hrs in a single night. After each live event is completed,  what steps need to be done to make each finished live event available as VOD? Do I need to package all the individual segment file into a single .flv file?
    Thanks!
    Dave

    Apoorva Arora wrote:
    Also, if your requirement is just about making content available after live streams are over, you can look for DVR functionality in your manifest.xml and set the values of begin and end offsets as 0 and 0.
    So my manifest file would like this:
    livepkgr/_definist_/liveevent/liveevent.f4m
    <manifest xmlns="http://ns.adobe.com/f4m/2.0">
      <baseURL>http://myserver/hds-live/livepkgr/_definst_/liveevent/</baseURL>
      <dvrInfo beginOffset="0" endOffset="0"/>
      <media href="liveevent1.f4m" bitrate="282"/>
      <media href="liveevent2.f4m" bitrate="482"/>
      <media href="liveevent3.f4m" bitrate="832"/>
    </manifest>
    Or do I still need to have and use this file:
    livepkgr/_definist_/liveevent/Manifest.xml
    <manifest xmlns="http://ns.adobe.com/f4m/1.0">
      <dvrInfo beginOffset="0" endOffset="0"/>
      <media streamId="liveevent1" bitrate="282" />
      <media streamId="liveevent2" bitrate="482" />
      <media streamId="liveevent3" bitrate="832" />
    </manifest>
    For a MBR live event should my 'livepkgr/_definist_/liveevent/' directory contain the following files
         liveevent.f4m, liveevent.m3u8, Event.xml and Manifest.xml
    OR JUST
         liveevent.f4m, liveevent.m3u8, Event.xml
    Thanks again for all the assistance in getting started!
    Dave

  • New-AzureDeployment - Error while copying content to a stream

    Hi All,
    I am trying to deploy a packages using the Azure Powershell Cmdlets.
    Each time I try to deploy a particular package, I get the following error message..
    New-AzureDeployment : Error while copying content to a stream.
    At line:1 char:1
    + New-AzureDeployment -DoNotStart -ServiceName $strStagingCCPDeploymentServiceName ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: (:) [New-AzureDeployment], HttpRequestException
        + FullyQualifiedErrorId : System.Net.Http.HttpRequestException,Microsoft.WindowsAzure.Commands.ServiceManagement.HostedServices.NewAzureDeploymentCommand
    Looking at the inner exception I am getting
    Unable to read data from the transport connection: The connection was closed.
    The package itself is only 80mb and uploads to my blob storage successfully however when it tries to deploy using my config file the error occurs.  The same config file works fine if I use the Azure Website to deploy the package, rather than the cmdlets
    and I can deploy other packages successfully using PowerShell and using Visual Studio.
    Thank you for any help you can provide.

    Hi,
    This seems to be a network issue, but it's quite strange as you can deploy the package from Visual Studio. Could you please try it on another machine (in another network environment if possible)? Also, can you try
    to write a program and call the management API (http://msdn.microsoft.com/en-us/library/windowsazure/ee460813.aspx) to deploy it?
    Best Regards,
    Ming Xu
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Can I publish static content to Live stream

    I have a requirement of publishing static content like video files mentioned in a playlist to be published to a live stream. It is like creating a TV station with pre-recorded content but with live stream. It will great  if anyone let me know is it possible with FMS?

    Yes its very much possible.
    What you need to do is place all your files on server and play it via server-side stream. You can go through FMS documentation and you should be able to get it work. However i will tell you briefly here how to go about it.
    Create an application folder , under applications directory of FMS. Let us name it as "test". Create a folder called "streams" under "test" and then under "streams" create "room" folder. So structure would be as follows : <FMS installation directory>/applications/streams/room. Now place all your static content here , say you place one.mp4,two.mp4,three.mp4.
    Now you want to give effect of live stream.
    Create a file called main.asc under "test" folder.
    Write below code in main.asc:
    var mylivestream;
    application.onAppStart = function(){
         mylivestream = Stream.get("mp4:livestream.mp4");
         mylivestream.play("mp4:one.mp4",0,-1,true);
         mylivestream.play("mp4:two.mp4",0,-1,false);
         mylivestream.play("mp4:three.mp4",0,-1,false);
    Above code would play all three static content one after other. Subscriber client would have to subscribe in following manner:
    ns.play("mp4:livestream.mp4",-1,-1)
    Please note that above code is sample code and not the most optimal or correct and will need tweaking depending on what is your requirement.
    Hope this helps

  • Memory issues while fetching content

    HI all,
    I am using SAP KM Apis. however i am facing some memory issues while using them.
    I am using getContent() api on a resource. and then getInputStream on the Icontent object. I am using a ByteArrayOutputStream for writing the data. here is the code snippet:
    byte[] buf= new byte[4096];
    InputStream inputStream = content.getInputStream();
    ByteArrayOutputStream os = new ByteArrayOutputStream(1024)
    while ((count = inputStream.read(buf)) != -1)
        os.write(buf, 0, count);
    byte[] arr=os.toByteArray();
    THis code consuimes a lot of memory . we need to optimize this. we also tried removing BYteArrayOutputSteam and directly read the bytes in chunk :
    int n; 
    do 
         n = inputStream.read(buf, 0,(int)content.getContentLength()); 
    while (n != -1); 
    however this approach has not helped us.
    please suggest an approach where memory consumption is less and the entire content is fed.
    thanks

    Hi
    This code worked for me for reading from a KM res...
    BufferedReader reader = new BufferedReader(new InputStreamReader(is));
    StringBuilder sb = new StringBuilder();
    String line = null;
            try {
                while ((line = reader.readLine()) != null) {
                    sb.append(line + "\n");
            } catch (IOException e) {
                e.printStackTrace();
            } finally {
                try {
                    is.close();
                } catch (IOException e) {
                    e.printStackTrace();
    return sb.toString();
    Regards
    BP

  • I have no sound when watching videos or live streams which works fine with IE or Linux on the same system

    I have no sound when watching videos on you tube or live streaming. If I switch to Linux everything is fine in firefox on this system but nothing with firefox in windows. If I use internet explorer everything is fine again, which seems to me to say that the problem lies within firefox 36. Can anyone help with this problem?

    Tried that with the same result. I can't understand why it works with Linux (Ubuntu) and not Windows. IE works as well but I prefer to use Firefox, so I guess I'll just have to switch browsers when playing videos - weird.

  • Issues on publishing an f4v live stream

    i use the FMLE  to push an f4v live stream to my FMS 4.0's livevideos app.  then i set the strobe media playback to play the live video. unfortunately, i cannot view the live video in my strobe player. then i make a change  (just delete the steam type : mp4 and the extension : f4v and the h264 to vp6 format)  in the FMLE to push a flv live stream, and configure the src (just delete the steam type : mp4 and the extension : f4v) of strobe player, this time i get the live stream.  what is the matter?
    BTW after i get the flv stream in my strobe player , i restore the FMLE to push an f4v stream to my FMS, and restore back src on my strobe and  this time i can get the f4v live stream.
    the main.asc on my fms 4.0 is so simple and i am sure of the configuration of my FMLE is correct.

    Thank you for your response. my linux os version is rhel 5.4. the adobe official website recommand linux rhel os 5.3. does that matter?
    my main.asc is very simple. but add some authenticatioon via webservice. the FMLE's fms url setting is like the following string :
    rtmp://192.168.1.2/livestreams/266?username=abc&videoId=89edrs; the fms dev guide says that the fms url is like rtmp://192.168.1.2/livestreams/266 without the query string. the query string added is to send some useful infomation to the fms 4.0, then i can parse the query string via client.uri to get the infomation to authorize the publisher.  does the query string matters?
    the live application seems OK. i just copy the live application's application.xml and make some change to the "LIVE_DIR". all 3 occassions use different OS on different machine from the same xp client .

  • Remove last frame after live stream

    Hi,
    How can I remove/reset the last frame sent by a live streaming client? I'm using FMS 3.5.
    It can be a server or client side solution. any ideas?
    tks.

    Hi,
    What do you mean by removing the last frame from live stream?
    A live stream that is published to the server and there is a client which is subscribing to that live stream. And you dont want to send the last frame of the stream to the subscriber, is it? Or something else?
    Regards,
    Janaki L

  • Issue while accessing EM after installing OCJ4

    Hi There,
    I have installed OC4J as stand alone application.
    After installation when i try accessing http://localhost:8888/em i get following error.  Is there some setting am supposed to do.
    Internal Server Error
    Servlet error: An exception occurred. The current application deployment descriptors do not allow for including it in this response. Please consult the application log for details.

    Abhilash K wrote:
    Hi
    One of the concurrent program is erroring with below error.
    “ORA-22288: file or LOB operation FILEOPEN failed
    No such file or directory”
    I have performed the below steps to create the folder. Kindly help me find out if I have missed any step.
    Step1:
    Create directory in UNIX:
    “host”
    $CUSTOM_TOP/data/SLM_GROUP_ATTACH
    chmod 777 $CUSTOM_TOP/data/SLM_GROUP_ATTACH
    Create directory in DB:
    DECLARE
    lc_dir VARCHAR2(200):=NULL;
    BEGIN
    SELECT VALUE||'/data/SLM_GROUP_ATTACH'
    INTO lc_dir
    FROM apps.fnd_env_context
    WHERE variable_name in ('CUSTOM_TOP')
    AND concurrent_process_id = (SELECT MAX(concurrent_process_id)
    FROM apps.fnd_env_context);
    EXECUTE IMMEDIATE 'CREATE OR REPLACE DIRECTORY SLM_GROUP_ATTACH AS '''||lc_dir||'''';
    END;
    what is actual & complete content of "lc_dir"?

  • How to edit ABOUT and HELP contents after app build operation?

    I hope people can read the HELP contents and ABOUT information from the program after I build the VI into an exe file or an install file. I don't know where to edit those informations. Thanks!

    After you build a VI into an application, (.exe) nothing in it can be changed since any changes would require the application to be recompiled, and that requires the LabVIEW development environment.
    On a Windows PC, the "Help" file is external to the application, so you could setup in the VI Proerties > Documentation the link to the exteranl Help file, then edit that file whenever you need to. This path would have to setup before you build the .exe and would not be able to be changed.
    You could use a similar approach for an "About" screen. Make a sub-vi for the About screen, and have the application builder set to "Small target file with exteranl file for suVIs" under the Build Options. This will create two files for your built application. An .exe th
    at is your top level VI, and an .llb that contains all your subVIs. When you need to change the About info, you would just need to modify your original About dialog, then copy it into the .llb of the built application overwritting the original one.
    If this is not what you are asking, please provide some more detail.
    Ed
    Ed Dickens - Certified LabVIEW Architect - DISTek Integration, Inc. - NI Certified Alliance Partner
    Using the Abort button to stop your VI is like using a tree to stop your car. It works, but there may be consequences.

  • Minor color issues while watching videos on my iPod

    Hey, I have a minor issue, but still an annoying one. When I watch movies on my iPod, I have to hold the iPod tipped towards me at about a 15 to 20 degree angle in order for the colors to be right. If I hold it at a comfortable angle to my eyes, the dark colors turn kind of funky, which makes dark scenes difficult to see sometimes.
    Resetting the brightness doesn't seem to help. Are there any other settings somewhere that could help rectify this problem?

    plug in your headphones. LOl jk, maybe your videos got corrupt because of a error. A few videos on my ipod got corrupt because of videora, and i still dont know why. Like sound would trail of drastically.

  • Lost content after a restore operation.

    I received a message that a software update was available for 2nd gen Touch, but when I tried to execute the update, the thing froze and only a restore would work. The restore worked, however, the content is gone. I don't see a backup that will provide all of the music and apps previously loaded. Being new to the Touch, can anyone point me in the direction that will get all of the content back.
    thanks

    Yes, all of the "stuff" is under C:\My documents\My Music\iTunes\iTunes Music or C:\My documents\My Music\iTunes\Mobile Applications or C:\My documents\My Music\iTunes\iTunes Music\Previous iTunes Libraries. Some of the music content synchronizes, but not all.
    Thanks.

  • Screen Sleeps while watching DVD or Stream

    Hello
    I have a problem with my PowerBook. I hate the energy saver function. When I use normal programs everything is o.k. and when their is no input it sleeps after a couple of minuten.
    The problem is that while I watching an DVD or an Interstream my energy Saving Options put my screen to black because their is no input or mouse moving.
    Is their a way to prevent the screen to go to black without switching off the engergy saving options while watching a DVD or Stream??

    Disable all sleep functions. IMHO, they're overrated.

  • Watch UFC 129 online free , ufc 129 live stream hd

    watch UFC 129 Live Stream , UFC 129 Live ,UFC 129 Live online,UFC 129 online,watch UFC 129 free Mauricio “Shogun” Rua vs. phenom Jon “Bones” Jones
    UFC 129 Live Stream The Ultimate Fighting Championship returns to Prudential Center in Newark, N.J. on Saturday,   with the long-awaited title fight between UFC 129 live stream UFC light heavyweight champion Mauricio “Shogun” Rua vs. phenom Jon “Bones” Jones. Jones is entering this bout for his UFC 129 Live injured teammate and former UFC light heavyweight champion Rashad Evans.
    Light Heavyweight Championship
    Saturday,  april 30, 2011 10 p.m. ET
    Prudential Center in Newark, N.J.

    I finally got someone who informed me my box didnt have the right software but would take 7 days due to the fact it removes all recording on device. Even though I have no recordings it was still going to take 7 days. This wasnt acceptable to me as I had spend the last 2 weeks trying to sort it out.
    In the end through complaints I have a youview box winging its way by monday. At least I then have a modern box with the right software. The delivery of this only takes 2 days.
    As has been said, the silver box is useless for sport and must be changed. I would recommend a youview box personally as it doesnt tie you to bt when your contract is up. I'll let u know if I get sport on monday with the youview box.

  • Live stream - buffer and replay

    Hi,
    i have this issue, which i'm pretty sure isn't feasible, but my boss insists that i give it a try, so here we go:
    i've developed a video player being used by a commercial TV channel, both for its VOD and live stream.  all the video content - live & VOD - is supplied via external CDN, over which i have little (or even no) control.
    what we're trying to achieve now, is while the channel's live stream goes on commercials break, to display our own (website's) ads.  we can tell when the break begins and when it ends, but we cant' know in advance how long it'll last.
    so our plan is to start running our own ads as the break begins, and when it ends - in case the ad is still running, buffer and 'record' the live stream, so when the ad ends the player will display the live stream, but from when its commercials break ended, with a short delay.
    is such a thing even possible?  i mean displaying live stream with a deliberate delay?
    thanks in advance for any thought or idea,
    eRez

    Hi,
    One way you can do this is to use php script to identify the user agent of the client (http://php.about.com/od/learnphp/p/http_user_agent.htm) and then generate dynamic webpages based on the client (HLS for iOS based clients and HDS for flash based clients). As Apache can only serve static webpages, you'll need to use CQ/MySQL/something else. I've personally not attempted to do so, but this may be a good starting point : http://www.ibm.com/developerworks/linux/tutorials/l-php/
    Hope this helps.
    Thanks,
    Apurva

Maybe you are looking for

  • Problems importing my class

    Hello I'm writting just a simple game to get me back into java using Linux 7.0 When using windows a while back it compile ok buy wont on my Linux I have provided just the import statements because i know the rest of the code is fine. import java.awt.

  • Communication Channels for IDOC scenario

    Hi! I have a conceptual question regarding the communication channels within IDoc scenario. Case 1: - File_to_RFC scenario Here I defined a File communication channel from business system A. 1a) For which system (business system A or B) do I need to

  • Best Practice for Enterprise Application Integration

    I would like to integrate a few corporate systems together by using Oracle Fusion Middleware. I suppose the integrated process is running in synchronous mode such that it also supports two phase commit. In BPEL Process manager, there is a tool called

  • Mathscript null values in matrix

    Dear Forum members, Is there a command or method within MathScript of finding the range of rows within a matrix that contain all zeros. Example below shows a (5 x 3) matrix W: |  1    2    3   | |  4    5    6   | |  0    0    0   |   =  W |  0    0 

  • Custom xml transformer provider for xml iview template

    I have been trying to get a custom simple xml transformer to work, which will show up in the xml iview template.  I have seen the SAP Help docs and the recent weblogs on the subject.  I can't get this simple transform functionality to work.  I can ge