No video in MSN using Live! Motion

I just purchased a live! Motion last week. The software installation was fine. However, when I use MSN messenger 7.5, the video is often lost (blank window). Sometimes restarting windows can solve it, but once the video is lost for some unknown reason, I have to restart again. Does anyone have a similar problem?
btw, I am using Windows XP sp2.

The camera that recorded the tape was obviously NTSC and therefore will be able to play back an NTSC tape. (Any NTSC deck or camera "should" work)
That doesn't mean you don't have other problems, but you have to have the correct device for playback before you can do anything.
rh

Similar Messages

  • How to use live type in motion 4

    how to use live type in motion 4

    There is a LiveType (or LiveFonts) content section in the Library in Motion 4 (but NOT Motion 5 - LiveType is obsolete, much to my chagrin...) - but you can still import LiveType projects into Motion 4 just as you could in Motion 3 - a simple drag'n'drop from the finder will do; or use Import from the file menu.

  • Live Streaming H.264 Video on iOS using AIR

    We would like to build an AIR app that plays Streaming H.264 Live/VOD videos that would work through AIR on the iOS platform.
    I've seem some traffic on the forums that RTMP will work to iOS - but additionally heard that video applications that use RTMP streams will be rejected by the Apple App store.
    I have seen that progressive H.264 will work - but that's not streaming or live.
    HLS would work if we use the StageWebView object; however, that provides us little control/monitoring over the video inside of it; and it's not "really" integrated as a video player.
    For OSMF there seems to be a 3rd-Party plugin which will allow OSMF to read HLS streams - but (from what I've heard) is incomplete because it doesn't play adaptive nor is it completely updated for OSMF 1.6.1.
    I would love to be wrong here - but is there currently a way to play a Streamed H.264 Video to iOS that is non-RTMP?
    I've seem little information as to if F4M streamed files played via OSMF will work on iOS.
    Thanks for the info in advance.
    -Will

    I pasted a stripped down version of my test app below, that attempts to playback an m3u8 file. This works for me on an IPad2.
    Remember to test on the device itself otherwise wont work.
    Dependencies:
    1. Air 3.1
    2. OSMF 1.6.1
    3. Flex SDK 4.6.0
    renderMode="direct"
    HTH
    - Abey
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:mx="library://ns.adobe.com/flex/mx"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   backgroundAlpha="0"
                   backgroundColor="#000000"
                   addedToStage="onViewActivate(event)"
                   applicationDPI="160">
        <fx:Script>
            <![CDATA[
                private var nc:NetConnection;
                private var ns:NetStream;
                private var video:Video;
                private var currentVidUrl:String;
                protected function onViewActivate(event:Event):void
                    nc = new NetConnection();
                    nc.addEventListener(NetStatusEvent.NET_STATUS, onNetStatus, false, 0, true);
                    nc.addEventListener(SecurityErrorEvent.SECURITY_ERROR, onSecurityErrorHandler, false, 0, true);
                    currentVidUrl = "http://fmsserver/hls-vod/sample.mp4.m3u8";
                    nc.connect(null);
                private function onNetStatus(evt:NetStatusEvent):void
                    switch (evt.info.code) {
                        case "NetConnection.Connect.Success":
                            ns = new NetStream(nc);
                            var client:Object = {};
                            client.onMetaData = onMetaData;
                            client.onCuePoint = onCuePoint;
                            client.onBWDone = onBWDone();
                            ns.client = client;
                            nc.client = client;
                            var v:Vector.<StageVideo> = stage.stageVideos;
                            if (v.length >= 1) {
                                var stageVideo:StageVideo = v[0];
                                stageVideo.viewPort = new Rectangle(0, 0, mediaContainer.width, mediaContainer.height);
                                stageVideo.attachNetStream(ns);
                            else {
                                video = new Video();
                                video.width = mediaContainer.width;
                                video.height = mediaContainer.height;
                                mediaContainer.addChildAt(video,0);
                                video.attachNetStream(ns);
                            if (currentVidUrl) {
                                ns.play(currentVidUrl);
                            break;
                        case "NetStream.Publish.BadName":
                            break;
                        default:
                            break;
                private function onSecurityErrorHandler(event:SecurityErrorEvent):void
                protected function onMetaData(item:Object):void
                protected function onCuePoint(item:Object):void
                protected function onBWDone():void
            ]]>
        </fx:Script>
        <mx:UIComponent id="mediaContainer"
                        height="100%"
                        width="100%"/>
    </s:Application>

  • Way to use Live video (from camcorder) as a background?

    Hello.
    I was wondering if there's any way to use live video (from camcorder) as a background using Keynote.
    I am trying to add caption/subtitle on live video to projector.

    I haven't tried this myself recently (the last time I tried it, the delay was frozen to no less than 3 seconds), but a user in this thread said he got the delay down to .1 seconds by using QuickTime Broadcaster and altering the .sdp file.
    This technique uses Broadcaster to make your computer stream to itself and use the stream file in Keynote.
    http://discussions.apple.com/message.jspa?messageID=7228452#7228452

  • Video conference &msn messenger

    I'm trying to figure it out -a simple way how to keep in touch with a friends that are using Yahoo and MSN messenger and at the same time be able to have a video conference as well?
    Help appreciated.
    Angelo

    i dont think theres any one program that supports yahoo and msn AND video.
    aMSN and mercury messenger are the only msn clients for macs with video support. i use amsn...just like messenger
    if video is not a big issue, you want both yahoo and msn in one then go with adium, you will like it.

  • Replacement for Live Motion?

    I used Adobe Live Motion on my old mac but can't on my new MacBook Pro, has anyone any suggestions for a simple replacement?
    Live Motion was easy to use but am not sure about the new products.
    Any help much appreciated. Thanks in advance.

    Motion (bundled with FCS) has all the capabilities of LiveType and much, much more.
    -DH

  • [svn:fx-trunk] 12025: Switching out the old video component for the new video component that uses OSMF .

    Revision: 12025
    Revision: 12025
    Author:   [email protected]
    Date:     2009-11-19 17:48:04 -0800 (Thu, 19 Nov 2009)
    Log Message:
    Switching out the old video component for the new video component that uses OSMF.  Also fixing RSL issue with OSMF because a change in flex-config.xml accidentally got overwritten.  Also fixing a bug caught during the last code review where you would set the volume on the VideoPlayer, but the volumeBar wouldn't be made aware of that change.
    Switching out the video component results in many API changes.  The changes are highlighted below:
    Class name changes:
    - spark.primitives.VideoElement is being renamed to spark.components.VideoDisplay
    - spark.components.mediaClasses.StreamingVideoSource is renamed to park.components.mediaClasses.DynamicStreamingVideoSource
    - spark.components.mediaClasses.StreamItem is renamed to park.components.mediaClasses.DynamicStreamingVideoItem
    VideoDisplay/VideoPlayer event changes:
    The new video component's events are:
    - bytesLoadedChange : org.osmf.events.LoadEvent
    - currentTimeChange : org.osmf.events.TimeEvent
    - durationChange : org.osmf.events.TimeEvent
    - mediaPlayerStateChange : org.osmf.events.MediaPlayerStateChangeEvent
    The old video component's events were:
    - close : spark.events.VideoEvent (removed)
    - complete : spark.events.VideoEvent (replaced with mediaPlayerStateChange)
    - metaDataReceived : spark.events.VideoEvent (replaced with mediaPlayerStateChange)
    - playheadUpdate : spark.events.VideoEvent (replaced with currentTimeChange)
    - progress : flash.events.ProgressEvent (replaced with bytesLoadedChange)
    - ready : spark.events.VideoEvent (replaced with mediaPlayerStateChange)
    VideoDisplay/VideoPlayer property changes:
    Renames:
    - maintainAspectRatio:Boolean has been renamed to scaleMode:String and rather than true/false, it now access 4 values: none, zoom, letterbox, and stretch.  See the enum class org.osmf.display.ScaleMode.
    - playheadTime:Number has been renamed to currentTime:Number
    - playWhenHidden has been renamed to pauseWhenHidden, and it's "tense" has been reversed.  So playWhenHidden = true correlates to pauseWhenHidden = false.  Also, before we would only pause when the video component was explcitly set to visible=false, but now we detect if the video components or any of it's ancestors have been hidden.
    - totalTime:Number has been renamed to duration:Number
    New properties:
    - bytesLoaded:Number This is a new property not available on the old video component
    - bytesTotal:Number This is a new property not available on the old video component
    - loop: Boolean this was a property added a while ago on the old video component but not in the original video player spec
    - mediaPlayerState: this is a new property that details the state of the video component.  See org.osmf.media.MediaPlayerState for all the possible values.
    - seekToFirstFrame:Boolean (pending PARB approval) - This is a new property available on VideoDisplay/VideoPlayer.  When autoPlay = false, if seekToFirstFrame is set to true, then we will connect to the server to start downloading the video, figure out the size of the video and resize appropriately, and show the first frame of the video.  If seekToFirstFrame is false, then no connection to the server is made, there's no implicit size for this video, and the first frame will not be show automatically.  By default the value of this property is true.  In the old video component, when autoPlay = false, we always has the same behavior as seekToFirstFrame = true.  Now it is controllable through this property.  Eventually, (not for Flex 4.0), we will most-likely have support for a thumbnail source or a splash screen so the video's preview will show up without making an unneeded connection to the server.  The property name may change depending on PARB.
    Other changes:
    - autoRewind: The default of autoRewind is now true instead of false
    - enabled: before we paused the video when the video component was explicitly set to enabled = false.  Now we pause the video when the video component or any of it's ancestors have been disabled.
    VideoPlayer-only changes:
    - videoObject:flash.media.Video property is now a new property on VideoPlayer.  It was previously only on VideoDisplay.
    - The skin states for the old VideoPlayer were: connectionError, disabled, disconnected, loading, playing, stopped, connectionErrorAndFullScreen, disabledAndFullScreen, disconnectedAndFullScreen, loadingAndFullScreen, playingAndFullScreen, stoppedAndFullScreen.  The new skin states are: uninitialized, loading, ready, playing, paused, buffering, playbackError, disabled, uninitializedAndFullScreen, loadingAndFullScreen, readyAndFullScreen, playingAndFullScreen, pausedAndFullScreen, bufferingAndFullScreen, playbackErrorAndFullScreen, disabledAndFullScreen
    DynamicStreamingVideoItem property changes:
    - bitRate:Number renamed to bitrate:Number
    DynamicStreamingVideoSource property changes:
    - initialIndex has been added to DynamicSteramingVideoSource
    - live:Boolean has changed to streamType:String which accepts values: live, recorded, any.  See the enum class org.osmf.net.StreamType for more info.
    - serverURI:String renamed to host:Object
    - streamItems:Array has changed types to streamItems:Vector.
    ScrubBar property changes (THESE CHANGES ARE NOT DONE YET, BUT SHOULD BE DONE SOON)
    - bufferedStart will be removed
    - bufferedEnd will be renamed to loadedRangeEnd.  This property name still may change depending on PARB.
    - bufferedArea skin part needs to be renamed.  Probably will be renamed to loadedArea.  PARB still deciding.
    QE notes: -
    Doc notes: -
    Bugs: -
    Reviewer: Kevin
    Tests run: checkintests
    Is noteworthy for integration: Yes
    Modified Paths:
        flex/sdk/trunk/frameworks/flex-config.xml
        flex/sdk/trunk/frameworks/projects/spark/defaults.css
        flex/sdk/trunk/frameworks/projects/spark/src/SparkClasses.as
        flex/sdk/trunk/frameworks/projects/wireframe/build.xml
        flex/sdk/trunk/frameworks/projects/wireframe/src/spark/skins/wireframe/VideoPlayerSkin.mx ml
        flex/sdk/trunk/frameworks/spark-manifest.xml
    Added Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoPlayer.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/VideoPlayerSkin.mxml
    Removed Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoPlayer.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoPlayer2.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/mediaClasses/StreamItem.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/mediaClasses/StreamingVideo Source.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/VideoElement.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/VideoElement.png
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/VideoPlayerSkin.mxml
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/VideoPlayerSkin2.mxml

    I've got that same problem: iPod Touch 2nd Gen, Apple Component Cables, and an HD TV.
    The funny thing is, the cable works fine with an iPod Classic (160 GB) but not for the iPod Touch. Can anyone explain why that is?

  • Error #2032 while playing videos on msn.ca - all browsers MAC OSX 10.6.8

    Dear abode experts,
    I need your help as I am frankly desperate.
    When I try to play an video on msn.ca, I get error #2032 on all my browsers (firefox, chromse, safari) and the video never loads or plays.
    I am using MAC OS X 10.6.8 and flash player is up to date v 12.0
    Your expertise in resolving this issue is immensly appreciated...

    From what I've read on this, it's a "bad gateway" error. Usually people (Flash Developers) see it when they have a bad file path to a Flash Object on their testing server. That's not the case here, but it can also be caused by firewall settings. That would make more sense, because you're seeing it with ALL browsers, and Chrome uses a different plug-in than Safari or Firefox.
    Check your Firewall settings (http://blink.ucsd.edu/technology/security/firewall/mac-snow.html), and... if you have Antivirus (please tell me you didn't make the mistake of putting that junk on a Mac), disable it or better yet, remove it altogether.

  • Adding audio to a Video CD slideshow using Toast

    I have been able to create a Video CD slideshow using Toast Titanium 7.0. Has anyone successfully been able to add audio to a VCD slideshow? If so exactly how did you do it. The Toast help files were no help. They instructed me to use the application Motion Pictures which comes bundled with Toast. I was able to create a slideshow with audio with this application but could not figure out how to import it into Toast.

    1. I suggest you post all questions concerning the use of Toast to Roxio's own Discussion Groups. That's where you will find the ardent Toast gurus. This isn't the "Using Roxio Toast" Discussion.
    2. See also the "Other links" section of my my "VCD and SVCD Players" FAQ. That section contains links to some other sources of VCD/SVCD hints, tips, etc.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X
    Note: The information provided in the link(s) above is freely available. However, because I own The X Lab™, a commercial Web site to which some of these links point, the Apple Discussions Terms of Use require I include the following disclosure statement with this post:
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.

  • Video controls in Aperture: slow motion? 1/4 speed? Reverse?

    Hi.  I don't use Aperture for video, but might.  My search of the User Manual and the forum turned up nothing.  Is there any way to play a video in Aperture in slow-motion?  At any speed but normal?  In Reverse?
    Thanks.

    I don't believe so.
    Video in Aperture is  extremely limited. Apart from trimming the length of the clip there is't much else you can do with it.  I think it's meant mostly as a place to store the clips and integrate them with your stills. For any real video work you need to export to a real video editor.

  • Creative Live Motion - Vista - no pan and tilt softwa

    Everything seems to work. The driver installed perfectly and the webcam center also. Did anyone find or download pan and tilt software for this webcam for vista thanks much

    Have found another used Creative Live Motion cam. I guess the one I have has got some malfunction.
    Trying to replace some part of my new one from the donor old camera. Will post the result with pictures.
    For all the people experiencing extremely slow frame rate, a non-documented and not known fix is simple. Just disable the Auto Exposure checkbox in the camera settings first tab and see the smooth results. Manually adjust the exposure to a reasobable value according to camera placement and enjoy.
    Say thanks if your problem is solved.
    Thanks.

  • Vista Driver for Live Motion

    http://ask.creative.com/wwenglish/vi..._matrix_de.htm WebCam Live! Motion32-Bit Treiber Q4 CY2007?64-Bit Treiber TBC Q4 2007 Its a bad joke, isn't it?

    Hello, i've had my Creative Live Motion working fine under Vista for weeks until today after i have uninstalled the Logitech Quickcam software from my computer (as it doesn't work with my Sphere only the new Sphere MP). After that the Creative driver stopped working, i have searched around on internet and in this forum and looks like everybody have the same problem under Vista. after having tried everything else I have decided to reinstall the latest Logitech Vista driver :http://www.logitech.com/index.cfm/do...,contentid=003 and then the 2000/xp driver for the Live Motion from Creative website which finally installed correctly and is again working fine. I have developped webcamXP and i've been using this driver under Vista for days without interruptions and without any problems, everything is working fine including the directX functions to control the pan and tilt through software. This worked for me i hope it'll work for you

  • Is it possible to send the TV channel feed by using live encoder??

    Hi all,
    I am planning to stream one of my favorite TV channel on my web.I got permissions too to stream on my page,but whats my doubt is..
    1)How to send feed to my server from  TV channel  by using live encoder?
    2)I think third party tool should be use for converting the TV signals into digital is it right??
    Please give me proper inputs or procedure for streaming TV channel into webcasting
    As iam very new to this concept plz excuse me if any thing sounds wrong.......
    Thanks in Advance
    Plz help me out..

    Hi guys,
    First of all sorry for very late reply,
    Finally i am able to send the TV channel signals by using live encoder. It works good with small problems .
    problems:
    1) In player after connect to server the screen( channel screen) is not exactly showing that means bottom 1/4 portion is cut off. Is there any setting to avoid this problem??
    2) After connect to server, on client machine the video is not running smoothly,it breaks upto 2 sec then skip that portion and then continue...it is continuing like this for every 5min
    3) On FMLE the input and output panel showing with high color quality but once it send to server(even local server also) on web casting  it delivers very poor quality
    is there any setting to solve this problem?
    4)Last question (but not final one) i played  all these games on my local machine (with static IP) for testing purpose, i planning to take dedicated server in order to webcast my client channel for public. Please give me some suggestions which one i can prefer in the sense bandwidth,speed,RAM..etc so that i can make my client satisfy by avoiding all problems mentioned above..
    Waiting for your reply
    Thanks in advance

  • HELP: Failure flashing BIOS using Live Update 5

    Hi,
    I used Live Update 5 to download the latest BIOS version for my MB. Then when I was running the update, I chose "". (I know it's incorrect and I should have chosen the other one.) After the update, the machine restarted and showed a cursor blinking on the top left on a black screen, and it wouldn't proceed any more. I can enter the BIOS without a problem. I can also boot from CD or USB, but the windows on my machine simply wouldn't boot.
    After the problem arose, I have tried flashing the BIOS with the MSI Forum HQ USB Flashing tool on this forum. It tells me that  but the same problem remains.
    What should I do now?
    Thanks for your time and consideration!

    After any flash, the battery should be removed for awhile and the CMOS cleared. Reset all your BIOS menu settings again making sure the boot order etc. is correct and the proper mode is selected that your OS was installed under, i.e. IDE or AHCI mode.

  • Imovie on my ipad ...refuses to recognize AVCHD Video. Also when i remove video clips already used in a project, it is unable to recognize missing clips after I've put them back. How do I get around these 2 issues?

    My iMovie refuses to recognize, import, or work with AVCHD Video. It also refuses the same video clips even after I have converted them to Mp4. Also, when I delete a video clip already used in a project, then later import the same clip back to my ipad, the software is unable to recognize and find the clip again! Help! How do I get around these issues?

    Hi Craig,
    I also got the second problem. The storyboard on iMovie trailer has all these missing videos. If I import them on my iPad it doesn't find them.
    If you find a solution it would be much appreciated to share it here ... I'll do the same.
    Thanks,
    Rafael

Maybe you are looking for

  • Xorg 1.6, nvidia brokenness w/ dual monitors [SOLVED]

    Hi, I upgraded this past week to xorg-server 1.6.1-1, nvidia 180.44-1, and kernel26 2.6.29.1-4.  When I rebooted today I found a few things are broken: I have a laptop and external monitor dual screen setup where each screen is a separate x screen, a

  • Would a macbook pro do what I need...

    Heya guys I need some advice. First of all English isn't my main language so I apologize in advance if some things don't make sense. I'm studying networking, how to be a network administrator. I'm about to finish my first semester and at first I thou

  • Bridge opens in Paint

    I had a problem with Bridge files opening in Paint. I changed the Bridge preferences file association and assigned my bridge files to open with PSCS3. It worked well. However within the past day for no apparent reason my Bridge images open in paint a

  • Combo Box  - Font on Closed

    Hi I changed the font using _global.styles.ComboBox.fontFamily = "AAA"; where ASU is an embedded font The font displays correctly when the combo box is open but closed it still show the default _sans Anyone help on changing the display font when clos

  • Faultless pdf print master shows mistakes on the printer's computer

    For years I have manufactured artworks in Indesign (now CS2) and link with it mainly psd image files. Exotic fonts are converted into paths. The exported pdfs are then sent as print master to to the printer's. With three different printing enterprise