Embedding Windows media play in LabVIEW

Hi,
I´ve tried to play AVIs (coded MPEG4) using ActiveX Plug-in of Windows Media Player. 
The problem appears when I change the window appearance property.
If the property "window has title bar" is unchecked, the video will not be shown, but the sound track (formated MP3) is still loaded.
So how can I play the video without title bar?
BR,
Wilbur 
Solved!
Go to Solution.

In some project I have used the Quick Time player ActiveX component. It is better than the Windows Mediaplayer. Quick Time is free to download.
Besides which, my opinion is that Express VIs Carthage must be destroyed deleted
(Sorry no Labview "brag list" so far)

Similar Messages

  • Embedded Windows Media PLayer With Non-Standard File Extension

    I have embedded a windows media player in a asp.net web page, using the usual
    <object> and <embed> tags. The video is served by an ashx (http handler). When I try to play the video, I usually (but not always) get an error message telling me that the file extension (ashx) does not match the file format.
    This happens in IE (8, 9, 10, 11) and also in Firefox (latest) with the WMP plugin.
    I know that the tags (with classid, etc) are correct because the media player displays and allows me to click the 'play' button.
    The ashx returns the correct mime type (video/x-ms-wmv) and a valid file name (somevideo.wmv) in the response headers. I have tried content-disposition attachment and inline.
    I have tried urls using 'http://', 'https://', and '//' (which I prefer)
    If I put the url (including the .ashx) of the video file in the browser address bar directly, the video downloads and plays in the standalone media player.
    If I modify the object tag to use a direct path to the video file (/somewhere/somevideo.wmv), it works - but I can't use this as a solution.
    The same ashx serves up video and audio in various other formats with out any fuss - it just seems that the embedded windows media player doesn't like it.
    This has been working for several years - I think this is some new behavior, though I can't identify what has changed, other than browser updates.
    Any ideas on what could be causing this? Am I missing something simple?

    Hi,
    Tools>Internet Options>Security tab, click "Reset all zones to default"
    Advanced tab of Internet Options>uncheck "Do not save encrypted files to disk"
    f12>Networking tab, click the Start button, navigate to your page and observer the response header and content.
    To determine if you page is being rendered in a x64 host (all IE versions and WaterFox, type
    navigator.platform in the IE Developer tools Console tab,
    Post questions about html, css and scripting for website development using MSIE browsers to the IE Web Development forum... WITH a link to your website.
    Rob^_^

  • Spry menu bar hidden behind embedded windows media player in IE but Not Firefox

    Hi ppl.. My spry menu bar submenus are hidden below my embedded windows media player when I go over the menu. Is there anything I can do to solve this. This doesn't happen in Firefox.(The submenu appear on top of the embedded player) Pls help.. Thank you!
    Here's my spry menu bar css code:
    @charset "UTF-8";
    /* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    LAYOUT INFORMATION: describes box model, positioning, z-order
    /* The outermost container of the Menu Bar, an auto width box with no margin or padding */
    ul.MenuBarHorizontal
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        cursor: default;
        width: auto;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
        z-index: 1000;
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        position: relative;
        text-align: left;
        cursor: pointer;
        width: 9em;
        float: left;
    /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarHorizontal ul
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        z-index: 1020;
        cursor: default;
        width: 9em;
        position: absolute;
        left: -1000em;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
        left: auto;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
        width: 9em;
        border-bottom-width: thin;
        border-bottom-style: solid;
        border-bottom-color: #CCC;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
        position: absolute;
        margin: -5% 0 0 95%;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
        left: auto;
        top: 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    ul.MenuBarHorizontal ul
        background-color: #333;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
        display: block;
        cursor: pointer;
        color: #FFF;
        text-decoration: none;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 12px;
        font-weight: bold;
        padding-top: 1.1em;
        padding-right: 0.75em;
        padding-bottom: 1.1em;
        padding-left: 0.75em;
        text-align: center;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
        color: #000;
        background-image: url(../images/navimg2.gif);
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
        color: #000;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenu
        background-image: url(SpryMenuBarDown.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
        background-image: url(SpryMenuBarRight.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
        background-image: url(../images/navimg2.gif);
        background-repeat: repeat-x;
        background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
        background-image: url(SpryMenuBarRightHover.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
        position: absolute;
        z-index: 1010;
        filter:alpha(opacity:0.1);
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
        ul.MenuBarHorizontal li.MenuBarItemIE
        display: inline;
        f\loat: left;
    Here's my embedded windows media player code.
    <OBJECT ID="MediaPlayer" WIDTH="425" HEIGHT="344" CLASSID="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95"
    STANDBY="Loading Windows Media Player components..." TYPE="application/x-oleobject">
              <PARAM NAME="FileName" VALUE="aqeedah1v7.wmv">
              <PARAM name="autostart" VALUE="true">
              <PARAM name="ShowControls" VALUE="true">
              <param name="ShowStatusBar" value="true">
              <PARAM name="ShowDisplay" VALUE="false">
              <EMBED TYPE="application/x-mplayer2" SRC="aqeedah1v7.wmv" NAME="MediaPlayer"
    WIDTH="425" HEIGHT="344" ShowControls="1" ShowStatusBar="1" ShowDisplay="0" autostart="1"> </EMBED>
    </OBJECT>

    Add
    <param name="WindowlessVideo" value="-1">

  • I am a new iPod shuffle 4th Generation user and I cannot sync the music in my Windows Media play to my new iPod, can someone help?

    I am a new iPod shuffle 4th Generation user and I cannot sync the music in my Windows Media play to my new iPod, can someone help?

    Hi Daisymae3,
    The iPod shuffle does not use Windows Media Player to sync, it uses Apple’s iTunes application, available for free from this web site -
    Apple - iTunes - Download iTunes Now
    http://www.apple.com/itunes/download/
    See also the manual for your iPod shuffle -
    User Manual iPod shuffle
    manuals.info.apple.com/MANUALS/1000/MA1550/en_US/iPod_shuffle_4thgen_User_Guide .pdf
    Specifically Chapter 3 - Setting up the iPod shuffle.
    iTunes is the free software application you use to set up, organize, and manage your content
    on iPod shuffle.
    Thanks for using Apple Support Communities.
    Best,
    Brett L

  • Spry Menu Bar hides behind embedded windows media player

    Hi guys. My Spry Menu Bar hides behind my embedded windows media player when I go over the menu with my mouse. Below is the code I used to embed my player. How can I make it transparent? Thank you!

    To the Params in your object tag, add this:
    To the attributes in your embed tag, add this:
    wmode="opaque"
    Note that z-index is totally irrelevant to Flash. also note that the Adobe Flash Player is wildly inconsistent from browser to
    browser and from OS to OS, which is one of the more valid reasons for Apple abandoning the technology's support on its touch
    devices.
    Al Sparber - PVII
    http://www.projectseven.com
    Dreamweaver Menus | Galleries | Widgets
    http://www.projectseven.com/go/hgm
    The Ultimate Web 2.0 Carousel

  • Windows media player 9 labview 7

    I'm having problems with this, just as some other people have. After looking through the MSDN library, it seems all you need to do is place the Windows Media Player object in a front panel ActiveX control. Then on the block diagram, wire the object to a property node. Finally, wire the path to the URL property. This should load the file and automatically play it. Well, I've tried this with several different files. With all files, the video plays for the correct amount of time, but no picture shows up in the control on the front panel!
    What's interesting is that if I place an older version of the control (6.4) on the front panel (which I could only do by copy-paste from an example someone posted here - it's not available i
    n the Select Active X object box) and wire the path to the FileName property, it works perfectly.
    I've attached an example showing this. Place the path to a video (I'm using .avi files) in the path control and run the vi.
    Any ideas?
    Dave.
    ==============================================
    David Kaufman
    LabVIEW Certified Developer
    ==============================================
    Attachments:
    WMP_test.vi ‏37 KB

    I have version 9 also and here is a VI that works for me. I cannot remember if I got it from this forum or from LAVA but anyway this might work for you.
    Joe.
    "NOTHING IS EVER EASY"
    Attachments:
    show_video.vi ‏88 KB

  • Controlling windows media player in labview

    Hi,
    I am having difficulties controlling a WMP in LabVIEW using it's ActiveX controls... What i need to do is to have a control to to go from frame to frame. I made something but when i slide the crontroller, it suddenly hangs?
    Also: when i play the video in mij windows media player, it opens normally, but when i open it in the labview activex control, the screen stays balck? I have an AVI file that is H.264 compressed and i've installed the latest k-lite codec pack.
    I use a property Node (activeX) to adjust the controls "IWMPPlayer4" => "controls" -> IWMPControls => "current position".
    Does anyone has experience with this?
    Best regards,
    Thijs Boeree
    Solved!
    Go to Solution.

    Hello Thijs,
    With the first VI I was not able to reproduce the issue.
    With this one I am able to reproduce the hanging.
    I have slightly adapted your code to show you were it goes wrong. (see attachment)
    You see that if you click on a certain point/position in the slider you only get one execution of the "slider value change" event case.
    If you start sliding back and forth, then you have (very easily) several hundreds of executions of this event case.
    This is what is causing your "hanging".
    You also see that if you wait long enough, then you'll normally end up at the right position in the video.
    So this is where you would have to change your design.
    How do you actually want your design to follow the slider in LabVIEW?
    Do you want it to detect all small changes to the slider?
    Do you only want it to change after a significant change in slider value?
    Do you want it to only change when you've stopped sliding?
    Or do you want a combination of the things mentioned above?
    The attached Code is provided As Is. It has not been tested or validated as a product, for use in a deployed application or system, or for use in hazardous environments. You assume all risks for use of the Code and use of the Code is subject to the Sample Code License Terms which can be found at:
    http://ni.com/samplecodelicense
    Kind Regards,
    Thierry C - Applications Engineering Specialist Northern European Region - National Instruments
    CLD, CTA
    If someone helped you, let them know. Mark as solved and/or give a kudo.
    Attachments:
    WMP_paul_adapted.vi ‏20 KB

  • Using windows media player in labview

    Need to learn how to use Windows Media Player 9 in Labview 6.1 and 7.

    Try this. It loads the media player. hit play movie then select which movie you want to play. this loads the movie into memory and starts playing then when you hit stop vi it stops the vi and the movie.I do not have any movie files to try this with but I tried this with other media and it worked fine
    Joe.
    "NOTHING IS EVER EASY"
    Attachments:
    WMA.vi ‏39 KB

  • Windows media plays instead of Quicktime

    I'm currently running 10.4.8 and both my internet browsers Safari and Firefox used to play video files in quicktime format. I did an update in firefox an all of a sudden the default player is windows media in which i dont like. I did have Flip for mac on my desktop but have since deleted it. i have also went through the preferences in both safari and firefox and selected quicktime as the default player but still no luck. I do not like the windows media player at all. any suggestions?
    Thanks

    try the following:
    open quicktime.
    from the menu select "quick time preferences"
    this will bring up a new window.
    click on the "Advanced" tab
    once there, click on "MIME settings" (bottom left button)
    Thta should open a new window "Select the MIME types that...."
    There you should be able to select and deselect your preferences and "MPEG" should be ALL ticked (so the initial view is a tick" the other one to lock for is
    "Video". now that's likely to havea "-" in there. It all depends on your system setup.
    good luck

  • Audigy ls and no sound with Windows media playe

    I have an audigy ls and can play music with winamp, and dvd's with power dvd. However, when i receive audio/video clips via email, i am not able to get audio when i play the clips with windows media player 9. The video works fine. the trouble shooter tells me taht there is no hard ware installed or the device is being used by another program or the device is not functioning properly. i get error codes 0xC00DBA: Cannot play the file and Condition ID = 0x00000000. Anyone have any suggestions? Thank you, Sid

    Thanks Jeremy,
    However, when i try to play MP3's that i can play on winamp, I receive the same error messages as I mentioned above. I know that the MP3's are good... I can play them on winamp without problems. And I've been able to convert them ot WAV files and burned them on CD-R's and they ahve worked fine. the problems seems to be between media player and the sound card/drivers.
    Sid

  • FOR THOSE WHO WISH TO RIP IN DIFFERENT FORMATS WITH Windows Media Playe

    I decided to put a little something together for those who want to rip CD's in different formats and sizes.
    it's rather easy. If you have Windows Media Player, but not 0, then I suggest you go here and get it.
    Anyhow. 4 simple ste
    ps.
    STEP ONE: (just follow the pictures and red words)
    Go to the Tools menu and then click on Options...
    <IMG src="http://img49.exs.cx/img49/87/wmp0stephy.png">
    STEP TWO:
    from there, click on the Tab that says Rip Music
    <IMG src="http://img49.exs.cx/img49/5079/wmp0step20ud.jpg">
    STEP THREE:
    choose which format you want. I would suggest WMA over MP3.
    <IMG src="http://img49.exs.cx/img49/3267/wmp0step38hv.jpg">
    STEP FOUR:
    you're almost finished! Here, select what size of a file you want. Remember, MP3 files will be bigger, for less quality.
    <IMG src="http://img49.exs.cx/img49/5739/wmp0step49mp.jpg">
    now, press OK, it shouldn't be that hard to find.. LOL. now when you rip music from CD's it'll go into whatever prefrences you chose it to.
    Hope that hel
    ps.
    If you have any questions, email me at [email][email protected]][email protected][/url], catch me on aim (leed2k3), or catch me on MSN Messenger, [email][email protected]][email protected][/url], might be some other name though.

    GB only exports to AIFF files, you need to make conversions in iTunes:
    http://thehangtime.com/gb/gbfaq2.html#converttomp3

  • Windows Media Play Song Information

    Good Day,
    I have been using Windows Media player until recently when I tried Itunes. I am now totally using Itunes. The one thing that I liked with Media Player is you could right click on a song title and select "get album information" and it would search the internet and download the ablum name, picture, etc for that song. I would like to know if this same option is available in Itunes. I have over 400 songs and I really don't want to have to enter everything manually. Thanks in advance.
    Fraser
    NX8220 Windows XP Pro
    NX8220   Windows XP Pro  

    Welcome to discussions!
    You can get lots of album info by doing a right-click on the song (or songs), then Advnaced > Get CD track names.
    You have to be connected to the internet for that to work.
    iTunes won't find album art, but if you search these forums for "album art" there is a utility that will automatically find art for iTunes songs. I just don't have that link handy...

  • The windows media play plug in will not install or work with firefox, but will with crappy ie. Plese help

    I go to the website of microsoft and download it even followed the help page forums on here and it still has an error when loading.

    See:
    [[Using the Windows Media Player plugin with Firefox]]
    http://kb.mozillazine.org/Windows_Media_Player#Missing_plugin

  • Mediasource or Windows Media Play

    Just purchased my Zen Micro and looking for some advice. I loaded MediaSource to organise my MP3s etc but it seems to do the same thing as Windows Media Player. Any advice on which I should use - I want to do the normal things - rip my CDs, organise my mp3s, purchase music online and sync with my Zen Micro. Any thoughts much appreciated....Many thanks, Confused Helen!

    I use subscription music service (Yahoo Music Unlimited To Go) so I use that to manage my player rather than Creative Media Source or Windows Media Player.
    The Yahoo Music Engine allows you to rent music, create playlists, rip CDs to MP3 and sync music and album art to compatible Creative Players.
    I use it with a Creative Zen Vision M, Creative Microphoto, and a Treo 650 with PocketTunes.

  • I am having trouble with all websites that have the embedded Windows Media Player. If I go to a page with a Webcam that is using Windows Mwdia, the player does not play or even show up. Any ideas?

    With all my other browsers, thia is not an issue including Firefox 3.6. For example, this page http://www.liveduvalstreet.com/ will display fine in every browser except Firefox 4. Because of that issue, I reverrted back to 3.6 until I can find a fix. I have tested this page in Chrome, Maxthon 2 and 3, Internet explorer 8 and Firefox 3.6 with no issues at all. This is just an example site. All sites with the embedded player will not work.

    Thanks a million! Thatr did the trick. I had an older versiuon of the plug in installed as well.

Maybe you are looking for