Playing Live Window Streams in Quicktime

Hello all,
I was wondering how I would go about playing live window streams in Quicktime? An example would be:
http://horseracing.sportsline.com/cbs/liveracing/
This shows live streams in windows media format. Would Quicktime Pro allow me to do so?
Thank you in advance,
Pono

Not on a PC.
Mac users can use third party software (replaces Media Player for Mac) that does play most WMP content inside QuickTime Player.

Similar Messages

  • How can I play live http streaming in osmf?

    Hi,
    I was trying to play live http streaming in osmf player but it was saying "Error #1009: Cannot access a property or method of a null object reference.". I think I need to do some change in OSMF player code to play live as vod plays fine. Can anybody point me in that direction?
    Thanks and Regards,
    Amit

    I downloaded StrobeMediaPlayback from https://sourceforge.net/projects/smp.adobe/files_beta/StrobeMediaPlayback_1.5_Sprint-4/ (10.1 version) and it is working for me.
    By the way when I try to play live Http in debug flash player with my previous player then I get following error :
    VerifyError: Error #1014: Class org.osmf.net.httpstreaming.f4f::AdobeBootstrapBox could not be found.
                    at org.osmf.net.httpstreaming::HTTPStreamingNetLoader/createNetStream()[C:\Documents and Settings\akuma\Adobe Flash Builder 4\OSMFPlayer\src\org\osmf\net\httpstreaming\HTTPStreamingNetLoader.as:86]
                    at org.osmf.net::NetLoader/finishLoading()[C:\Documents and Settings\akuma\Adobe Flash Builder 4\OSMFPlayer\src\org\osmf\net\NetLoader.as:406]
                    at org.osmf.net::NetLoader/startLoadingHTTP()[C:\Documents and Settings\akuma\Adobe Flash Builder 4\OSMFPlayer\src\org\osmf\net\NetLoader.as:724]
                    at org.osmf.net::NetLoader/executeLoad()[C:\Documents and Settings\akuma\Adobe Flash Builder 4\OSMFPlayer\src\org\osmf\net\NetLoader.as:289]
                    at org.osmf.traits::LoaderBase/load()[C:\Documents and Settings\akuma\Adobe Flash Builder 4\OSMFPlayer\src\org\osmf\traits\LoaderBase.as:111]
                    at org.osmf.traits::LoadTrait/load()[C:\Documents and Settings\akuma\Adobe Flash Builder 4\OSMFPlayer\src\org\osmf\traits\LoadTrait.as:170]
                    at org.osmf.media::MediaPlayer/load()[C:\Documents and Settings\akuma\Adobe Flash Builder 4\OSMFPlayer\src\org\osmf\media\MediaPlayer.as:1854]
                    at org.osmf.media::MediaPlayer/updateTraitListeners()[C:\Documents and Settings\akuma\Adobe Flash Builder 4\OSMFPlayer\src\org\osmf\media\MediaPlayer.as:1497]
                    at org.osmf.media::MediaPlayer/onTraitAdd()[C:\Documents and Settings\akuma\Adobe Flash Builder 4\OSMFPlayer\src\org\osmf\media\MediaPlayer.as:1332]
                    at flash.events::EventDispatcher/dispatchEventFunction()
                    at flash.events::EventDispatcher/dispatchEvent()
                    at org.osmf.elements::ProxyElement/processTraitsChangeEvent()[C:\Documents and Settings\akuma\Adobe Flash Builder 4\OSMFPlayer\src\org\osmf\elements\ProxyElement.as:475]
                    at org.osmf.elements::ProxyElement/onTraitAdd()[C:\Documents and Settings\akuma\Adobe Flash Builder 4\OSMFPlayer\src\org\osmf\elements\ProxyElement.as:436]
                    at flash.events::EventDispatcher/dispatchEventFunction()
                    at flash.events::EventDispatcher/dispatchEvent()
                    at org.osmf.elements::ProxyElement/set proxiedElement()[C:\Documents and Settings\akuma\Adobe Flash Builder 4\OSMFPlayer\src\org\osmf\elements\ProxyElement.as:182]
                    at org.osmf.elements::LoadFromDocumentElement/onLoadStateChange()[C:\Documents and Settings\akuma\Adobe Flash Builder 4\OSMFPlayer\src\org\osmf\elements\LoadFromDocumentElement.as:152]
                    at flash.events::EventDispatcher/dispatchEventFunction()
                    at flash.events::EventDispatcher/dispatchEvent()
                    at org.osmf.elements.proxyClasses::LoadFromDocumentLoadTrait/loadStateChangeEnd()[C:\Documen ts and Settings\akuma\Adobe Flash Builder 4\OSMFPlayer\src\org\osmf\elements\proxyClasses\LoadFromDocumentLoadTrait.as:50]
                    at org.osmf.traits::LoadTrait/setLoadState()[C:\Documents and Settings\akuma\Adobe Flash Builder 4\OSMFPlayer\src\org\osmf\traits\LoadTrait.as:266]
                    at org.osmf.traits::LoadTrait/onLoadStateChange()[C:\Documents and Settings\akuma\Adobe Flash Builder 4\OSMFPlayer\src\org\osmf\traits\LoadTrait.as:417]
                    at flash.events::EventDispatcher/dispatchEventFunction()
                    at flash.events::EventDispatcher/dispatchEvent()
                    at org.osmf.traits::LoaderBase/updateLoadTrait()[C:\Documents and Settings\akuma\Adobe Flash Builder 4\OSMFPlayer\src\org\osmf\traits\LoaderBase.as:208]
                    at Function/org.osmf.elements:F4MLoader/protected:executeLoad/org.osmf.elements:finishLoad() [C:\Documents and Settings\akuma\Adobe Flash Builder 4\OSMFPlayer\src\org\osmf\elements\F4MLoader.as:211]
                    at Function/org.osmf.elements:F4MLoader/protected:executeLoad/org.osmf.elements:onComplete() [C:\Documents and Settings\akuma\Adobe Flash Builder 4\OSMFPlayer\src\org\osmf\elements\F4MLoader.as:192]
                    at flash.events::EventDispatcher/dispatchEventFunction()
                    at flash.events::EventDispatcher/dispatchEvent()
                    at flash.net::URLLoader/onComplete()
    Regards,
    Amit

  • How to play live Video Stream with Flex?

    I'm trying to get Flex Builder 3 to play a live video stream with Flash Media
    Server and Flash Live Media Encoder.
    I'm able to stream pre-recrorded (vod) flvs in flex from flash media server.
    I'm able to stream live video using Flash/FMS/Flas Live Media Encoder, but not
    with Flex.
    This code streams pre-recorded Video on Demand flvs, but not live streams:
    If I change source to "rtmp://localhost/live/livesream.flv, I get nothing.
    What am I doing wrong?
    <?xml version="1.0"?>
    <!-- controls\videodisplay\VideoDisplayFMS.mxml -->
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
        <mx:HBox>
            <mx:Label text="RTMP FMS 2.0"/>
            <mx:VideoDisplay
                autoBandWidthDetection="false"
                source="rtmp://localhost/vod/Legend.flv"/>
        </mx:HBox>
    </mx:Application>
    Oh and sorry for the double post. I didn't know there was a seperate FMS forum.

    That worked! Thanks  *very* much. Stupid of me to forget to set the live attribute to true. Also removed the .flv. BTW: what video component do you prefer?
    Here's the working code:
    <?xml version="1.0"?>
    <!-- controls\videodisplay\VideoDisplayFMS.mxml -->
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
        <mx:HBox>
            <mx:VideoDisplay
                live="true"
                autoBandWidthDetection="false"
                source="rtmp://localhost/live/livestream"/>
        </mx:HBox>
    </mx:Application>

  • Why won't Firefox play live video streams such as webcam pages.

    just upgraded to windows 7 as well as the latest version of firefox. Flash movie sites such as youtube play without difficulty. It is only sites such as http://www.liveduvalstreet.com/crowdcam.htm that do not work. before these sites worked without difficulty.

    Thanks for the response. That did indeed solve the problem. Figured it out about an hour after posting. Interestingly it works fine on my wifes computer (vista64) without the wmp plug in.

  • .mov files from my mac won't play on windows

    I created a PowerPoint CD with many .mov movies which I saved as a PowerPoint show (.pps). This powerpoint program will play on Windows but the movies will not play. Windows machine has QuickTime but Error message says I need QuickTime and H.264 decoder. Tried this with no success. Also tried QuickTimeAlt190. Help.

    Hi karina, and welcome to Apple Discussions.
    If no one is able to help in this forum, you may want to post your question in the iPhone forums: http://discussions.apple.com/category.jspa?categoryID=201
    Message was edited by: tjk

  • How to play live streaming in windows phone 8.1 silverlight app?

    Hi,
    I am developing a windows phone 8.1 silverlight app. In my I want to show live streaming youtube channel , I think it is not possible, 
    Actually that youtube channel is a television channel , I want to stream that live tv in my app.(I tried to load youtube channel in webbrowser in iframe tag but it is not opening)
    Anybody help me how to play live tv or live streaming in my app,
    Thanks..
    Suresh.M

    Hello,
    You will likely need to write a custom
    MediaStreamSource that can access the media stream and parse it. Windows Phone supports h.264 natively and as long as the site serves up a media stream that contains h.264 frames you can parse it and have our built in decoder decode and display it. You
    will need to have intimate knowledge of the streaming protocol used by the website that you are trying to play. You must also make sure that the website is not using protected content. IANAL so I would recommend that you have your local law professional
    (lawyer) review the licensing of the website that you are attempting to connect to and stream from before continuing your development. Your lawyer can make sure make sure their licensing allows you to do this.
    I hope this helps,
    James
    Windows SDK Technologies - Microsoft Developer Services - http://blogs.msdn.com/mediasdkstuff/

  • Avi plays in Windows Live Movie Maker but probs in Quicktime and Premiere Pro

    Hello,
    I'm completely new to Premiere Pro and am trying to edit a recording of a webinar for work.  I have it in both .avi and .wmv formats but can't import either into Adobe Premiere Pro CS6 or CS5.5.  They both play in Windows Media Centre, Windows Live Movie Maker and Windows Media Player, but the audio is corrupted and no images appear when I play in Quicktime with the avi and when I try to play the wmv in Quicktime it says the file is not in a format that Quicktime understands.  When I try to import either into Premiere Pro I get the error message "Unsupport format or Damaged File".  I've used Gspot to determine that the codecs I need are installed and am at a loss in terms of what to do next.  I've spent literally hours on this and would dearly love some help.  Can anybody shed light on my problem?  With many thanks in advance.  Shan

    Hi Jim,
    It said 0x0055 MPEG-1 Layer 3, 44100Hz  128 kb/s tot , Stereo for the audio
    and H264, H.264/MPEG-4 AVC for the video.
    Thanks for looking at this for me.

  • How to enable live audio streaming in FF running Windows 7

    I am unable to listen to live audio streams, please help !

    Which plugin is used for those streams?
    Your More system details list shows the WMP plugin and the Flash plugin as commonly used plugins to play streams.
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]

  • Flash media live encoder, play live streaming failed!

    Hi, I install a fms3.5 and fmle3.1 on my computer. In fmle, I set video format is h264,and fms url:RTMP://192.168.8.6/live ,stream: livestream. The input and output windows' video is ok.
    The following is fmle log:
    Tue Jun 22 2010 12:25:19 : Primary - Connected
    Tue Jun 22 2010 12:25:19 : Primary - Network Command: onBWDone
    Tue Jun 22 2010 12:25:19 : Primary - Stream[11] Status: Success
    Tue Jun 22 2010 12:25:19 : Primary - Network Command: onFCPublish
    Tue Jun 22 2010 12:25:19 : Primary - Stream[11] Status: NetStream.Publish.Start
    Tue Jun 22 2010 12:25:19 : Session Started
    Tue Jun 22 2010 12:25:19 : Video Encoding Started
    The following is my source code to play live stream:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
        <mx:Script>
            <![CDATA[
             import mx.controls.Alert;
             private function showFlv():void {
                //myVideo.source = "rtmp://192.168.8.6:1935/vod/test.flv";
                myVideo.source = "rtmp://192.168.8.6:1935/live/livestream";
                 Dumper.info(myVideo.source);
             ]]>
        </mx:Script>
        <mx:Panel width="100%" height="100%">
          <mx:VBox width="100%" horizontalAlign="center">
            <mx:Text text="code display"/>
            <mx:Button label="play flv" click="showFlv();"/>
          </mx:VBox>
          <mx:VideoDisplay width="100%" height="100%" id="myVideo"/>
        </mx:Panel>
    </mx:Application>
    If I use myVideo.source = "rtmp://192.168.8.6:1935/vod/test.flv" ,it can play video.  Use :myVideo.source = "rtmp://192.168.8.6:1935/live/livestream",  Can't get video. Why?
    I just want to play live video on pc.

    Who can help me??

  • Windows Browsing Into A Live QT Stream

    Windows Browsing Into A Live QT Stream
    Let’s face it. Most of the world is using Windows browsers. I, however, am a Macite using Macintosh and Panther Server to stream.
    What can I do in my offering webpage and in my stream to make it foolproof and easy for Windows browsers to watch my live stream?
    The rumor is that all Windows boxes have QuickTime buried somewhere in them. I’m not so sure of that. Even if they do the user might have to dig for it and install it. Not an easy task for most Windows users.
    We do know that Windows boxes have Microsoft Media Player and maybe RealPlayer.
    I’d like to set up a webpage that (1) allows Mac users to click their icon to begin watching my live QT stream and (2) allows Windows users to click their icon on the same page to begin watching the same live stream with whatever players they have.
    I have used Safari to browse into some neat news channel websites to watch really good streaming. I just know that these sites have contemplated both Mac and Windows. I have viewed the website code for these pages and have seen amazing things. It’s mostly over my head.
    It’s going to save me a lot of time and trouble if you can point me to how to solve this problem. I’m sure that this wheel has been invented many times.
    Merrily, merrily gently down the stream.
    John the Macite

    I never got a reply to this one.

  • How to get quicktime files to play in Windows Media Player...

    Hello. I've got a Mac and use iMovie to create vid's. I need them to export in a format that can be played in Windows Media Player on a PC. I've installed WMV (even bought the Studio version) and they were converted to mp4 files. They play great on the PC using Quicktime in the mp4 format, but when opening them into windows media player I keep getting a codec error. Is there anyway to get around this? Unfortunately, they have to be played on a PC in media player to be presented. Thanks for your time once again!

    Your bought WMV? Do you mean Flip4mac? If you just mean the ancient Windows Media Player for Mac, it won't work.
    Reading this set of directions you export to WMV and name the file with a WMV extension:
    http://www.flip4mac.com/pdfs/Flip4MacWMVQuickStart.pdf
    If you don't have Flip4mac, that is, the $50 version, not the $29 version, you can't export, just import.

  • Hi, planning to buy MD101, I will most be working on photoshop, playing live/audio production, occasionally render videos, mild gaming-prototype.gta4 types..my question is mac or windows? my budget stops at MD101 and no further :/

    Hi, planning to buy MD101, I will most be working on photoshop, playing live/audio production, occasionally render videos, mild gaming-prototype.gta4 types..my question is mac or windows? my budget stops at MD101 and no further :/

    Hey thanks for the reply
    its not like i must...but i do prefer apple for build quality and the way the os uses the hardware..
    Priority of the laptop will be:
    1- Going live with it, using softwares like ableton like or garageband to trigger samples and ambient patches with MIDI keyboard.
    2- Designing on photoshop
    3 - Occasional video rendering mostly non hd but good quality like youtube 720p
    4 - Gaming when i am bored - I am not at all into gaming but i would surely love to play some
    But i want something that will be durable/storngly built and its hardware/processor good enough to run for 3-4 years.
    Now if a laptop then which one?
    Thank you

  • 2 Iphone4 play live stream not same

    I stream live video from my streaming server and use 2 iphone4 to display.
    Unit 1. it play live stream normally.
    Unit 2. it play about 20-30 sec, and replay again again and again.
    Please advise me, what parameter that i should check or tune ?
    Thanks,

    I tried streaming with the Adobe Flash Media Live Encoder3 instead of my Broadcater.swf.  This connects fine and pushes h.264 no problem.
    But the reciever is still seeng VOD not Live video.
    Is there something wrong with my receiver?

  • Microsoft Expression Encoder 4 crashes when clicking Start button to begin live smooth streaming to a publishing point created in Windows Server 2012

    Microsoft Expression Encoder 4 crashes when clicking Start button to begin live smooth streaming to a publishing point created in Windows Server 2012, I've got the following error. Can anyone help me with this? Thanks in advance!
    Nombre del evento de problema:    CLR20r3
      Firma del problema 01:    encoder.exe
      Firma del problema 02:    4.0.4276.0
      Firma del problema 03:    4eafa0d7
      Firma del problema 04:    mscorlib
      Firma del problema 05:    4.0.30319.18408
      Firma del problema 06:    52310b91
      Firma del problema 07:    3e69
      Firma del problema 08:    0
      Firma del problema 09:    System.InvalidCastException
      Versión del sistema operativo:    6.2.9200.2.0.0.272.7
      Id. de configuración regional:    3082
      Información adicional 1:    5861
      Información adicional 2:    5861822e1919d7c014bbb064c64908b2
      Información adicional 3:    dac6
      Información adicional 4:    dac6c2650fa14dd558bd9f448e23afd1
    Lea nuestra declaración de privacidad en línea:
      http://go.microsoft.com/fwlink/?linkid=190175
    Si la declaración de privacidad en línea no está disponible, lea la declaración de privacidad sin conexión:
      C:\Windows\system32\es-ES\erofflps.txt

    2014-12-17 16:05:41  Msg 5170, Level 16, State 1, Server \\.\pipe\Microsoft##WID\tsql\query,  Line 2
    Cannot create file 'C:\Windows\WID\Data\SUSDB.mdf' because it already exists
    Looks like somebody forgot to remove the database from the last time WSUS was installed.
    Lawrence Garvin, M.S., MCSA, MCITP:EA, MCDBA
    SolarWinds Head Geek
    Microsoft MVP - Software Packaging, Deployment & Servicing (2005-2014)
    My MVP Profile: http://mvp.microsoft.com/en-us/mvp/Lawrence%20R%20Garvin-32101
    http://www.solarwinds.com/gotmicrosoft
    The views expressed on this post are mine and do not necessarily reflect the views of SolarWinds.

  • Can't play HD video 1080 In quicktime in windows

    Hi
    When i try to play a HD movie in quicktime it takes a minute then a dialoge box apears and it say don't send, send, or debug. i try all three the videos is not playing. I have the latest version of quicktime 7.6.2 and i have windows xp Proffesional. Intel pentium 4 1.81 Ghz 2 of Gb Ram

    What format are the movies (i.e. with what codecs were they created)? Alternatively, from where did they come?
    Note that a 1.8GHz Pentium 4 system probably isn't fast enough to play 1080 content without at least some stuttering, if it will play at all. Apple specifies that HD-quality videos purchased on the iTunes Store requires a 2.0GHz Intel Core 2 Duo or faster processor, and HD movies from the iTunes Store are only 720p quality.
    Message was edited by: Dave Sawyer

Maybe you are looking for