JMF video player

Has somebody an example of an xlet that can play a video (mpeg-2) with jmf player?
Thanks.

Hi guys,
I'm not exactly a MHP-guru :-) but I can point out something you can use as an example of a JMF player:
you can download the JavaTV Reference Implementation from:
http://wwws.sun.com/software/communitysource/javatv/download.html
(follow the instruction for installation)
there you can find also a few sample xlets.
This jTV-RI is actually missing the MPEG2 videos (and hence it won't present anything), but they are referenced by the code, so I tried to build a directory-tree corresponding to those ref's. Then I made up this archive with a bunch of padding videos, just to make it show something; you can find the videos (together with a BAT script) at
http://gfcyb.org/videos_for_JavaTV-RI.zip
after download, put all (=3) the files in the JavaTV-RI subdirectory:
samples/tv/
and run the batch script: if anything is well-done, you can select any channel and view a mpeg2 clip.
NOTE: this video archive will be available till August 2003 (afterward it could be removed).
bye
GF

Similar Messages

  • JMF Video Player Frame Rate comes down to zero

    Hi
    I am working on video Player using jmf. I am playing .mov file in the Applet. The appled have been signed and this part is working fine.
    I am able to get the video from server to the client using signed applet. But the problem now i am facing is that after few seconds of video download the frame rate and bit rate both comes down to Zero and the movie stops playing. I am using .mov extension with approximately 2-8 MB size of video.
    As i feels problem is coming with the http protocol. Because while playing the local video file with the same code it is performing well.

    This blog is written by one of the principle guys who writes the Flash plug-in.
    http://blog.kaourantin.net/?p=83
    I think it might have some answers for you--not the answer you want.

  • Embedding video player in TLF

    Hi Guys,
    Can we add a video player to a Richeditable text, if yes what is wrong in the code below? I can see it adds to the editor but soesnt show up
    <?xml version="1.0" encoding="utf-8"?>
    <!--
    // Copyright (C) 2009 Rad3 Limited.
    // All Rights Reserved.
    // If you have received this file from a source other than Rad3,
    // then your use, modification, or distribution of it requires
    // the prior written permission of Rad3.
    // -->
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                                     xmlns:s="library://ns.adobe.com/flex/spark"
                                     xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" creationComplete="initApp();">
              <fx:Declarations>
                        <!-- Place non-visual elements (e.g., services, value objects) here -->
              </fx:Declarations>
                        <fx:Script>
                                  <![CDATA[
                                            import flashx.textLayout.edit.EditManager;
                                            import flashx.textLayout.edit.SelectionState;
                                            import mx.controls.Alert;
                                            import spark.components.VideoDisplay;
                                            import spark.components.VideoPlayer;
                                  private var _videoDisplay:VideoPlayer;
                                  private var _editManager:EditManager;
                                  private var _videoContainer:Sprite;
                                  private function initApp():void
                                            var videoPath:String = "sample_vid.flv";
                                            _videoDisplay = new VideoPlayer();
                                            _videoDisplay.source = videoPath;
                                            _videoContainer = new Sprite();
                                            _videoContainer.width = 200;
                                            _videoContainer.height = 200;
                                            //_videoDisplay.play();
                                            // add the video
                                            _videoContainer.addChild(_videoDisplay);
                                            _editManager = rte.textFlow.interactionManager as EditManager;
                                            _editManager.insertInlineGraphic(_videoContainer,500,400, null, new SelectionState(rte.textFlow, 0, 0));
                                  ]]>
                        </fx:Script>
                        <s:RichEditableText id="rte" width="100%" height="100%"/>
    </s:Application>
    Thanks

    gauravjlj wrote:
    ..I need Video.. What formats do you need to support?
    ..Player in my Java Web Application.Do you mean embedded in the web page, or simply available from your site?
    Please guide me the right way to do it.For Sun's latest media project, see [http://javafx.com/].
    For older JREs, you might look to the JMF. See [http://java.sun.com/javase/technologies/desktop/media/jmf/] for further details.

  • Embed video player or flash payer on Jsp page

    HI all, I am new to java, and i want store videos in database(Mysql) and also want to retrieve and play videos on my jsp page,like youtube,how can i embed video player or flash payer on my jsp page so that i can play videos of almost all formats. iam doing all this in servlets.
    Can anybody help me?? and give details about all that??
    Thanks.

    Hi thanks for ur response,
    Can you please help me more, i am using eclipse on linux OS and trying to play video,using JMF,by using jmf.jar,mediaplayer.jar,multiplayer.jar files in my applications ,and when i run my class it gives error "No media player found" as there is no media player in linux,so how can i play my video in real player or in some other player in llinux using eclipse.
    iam using sample code provided by JMF to play video.
    Thanks.

  • Jmf video fps problem

    Hi to all,
    I'm developing a program that takes frames from a video, which are currently working on a jmf player object, and display them with jogl in a GLJPanel. the video is 30 fps. But my display function is called 20 times per second. Therefore I'm loosing some of the frames and video cannot be seen smoothly. I guess that the problem is due to the jmf player's frame rate, because it is the only thing that triggers jogl display function. What I want to know is if there is a way of displaying a 30 fps jmf video by jogl bindings and if yes how? I'm taking the current frame and displaying it as a texture within the display function. Is it ok for my application?
    I will be glad if anyone can help me..Thank you very much.

    Two things you should know:
    1) You can't play ANYTHING in AE.  It's not an editing application, and it doesn't work like one... as in, "push the spacebar and video plays".  Nope.   You have to do a RAM Preview by hitting the zero key on the numeric keypad.
    2) You'll save yourself days of frustration and anger by learning the basics, which can be found here:
    Getting started with After Effects (CS4, CS5, CS5.5,  CS6, & CC)

  • Issues with basic video player. Help?

    Hi all, I've been working on making an extremely basic video player for my java class at school and everytime I run it I'm getting an error. I assume it's because of the video format. I've tried avi and mpg to no avail.
    The avi error is...
    Unable to handle format: DIVX, 320x240, FrameRate=30.0, Length=230400 44 extra bytes
      Unable to handle format: mpeglayer3, 22050.0 Hz, 0-bit, Mono, Unsigned, 8000.0 frame rate, FrameSize=4608 bits
    Failed to realize: com.sun.media.PlaybackEngine@c5495e
    Error: Unable to realize com.sun.media.PlaybackEngine@c5495e
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerExceptionand the mpg error is...
    run:
    Exception in thread "JMF thread: com.sun.media.PlaybackEngine@c5495e[ com.sun.media.PlaybackEngine@c5495e ] ( configureThread)" java.lang.NegativeArraySizeException
            at com.ibm.media.parser.video.MpegParser.parsePacket(MpegParser.java:1513)
            at com.ibm.media.parser.video.MpegParser.mpegSystemParseBitstream(MpegParser.java:1226)
            at com.ibm.media.parser.video.MpegParser.initTrackSystemStream(MpegParser.java:673)
            at com.ibm.media.parser.video.MpegParser.getTracks(MpegParser.java:333)
            at com.sun.media.BasicSourceModule.doRealize(BasicSourceModule.java:180)
            at com.sun.media.PlaybackEngine.doConfigure1(PlaybackEngine.java:229)
            at com.sun.media.PlaybackEngine.doConfigure(PlaybackEngine.java:193)
            at com.sun.media.ConfigureWorkThread.process(BasicController.java:1370)
            at com.sun.media.StateTransitionWorkThread.run(BasicController.java:1339)The source code is... (excluding the main class)
    import javax.swing.*;
    import java.awt.*;
    import javax.media.*;
    import java.awt.event.*;
    import java.net.*;
    public class MediaPanel
        JFrame frame = new JFrame();
        Player player = null;
        public MediaPanel()
            try {
                URL url = new URL("file",null,"H:\\test.mpg");
                //URL url = new URL("file",null,"H:\\test.avi");
                player = Manager.createRealizedPlayer(url);
            catch (Exception e) {};
            Component control = player.getVisualComponent();
            frame.getContentPane().add( control, BorderLayout.CENTER);
            frame.pack();
            frame.setVisible(true);
            player.start();
    }This is the first time I've made anything that plays video and I took the basis for my code from this thread http://forum.java.sun.com/thread.jspa?threadID=5269983&tstart=30 so for all I know it could be a problem with the code and not the video file.
    Also, the page of supported formats would probably answer my question ( http://java.sun.com/products/java-media/jmf/2.1.1/formats.html ) except I don't know much about video formats and that table doesn't make much sense to me. Any help or a point in the right direction is awesome. Thanks!

    I have the same problem. I am new to JMF and I can not get an avi or a .mov to play. In fact, I can't find any movie file that actually does work. I am trying VERY simple code just to get this to work. Baby steps:
    javax.media.Player player = javax.media.Manager.createPlayer(ml);
              player.realize();
              java.awt.Component mediaViewer = player.getVisualComponent();ml is a MediaLocator from an url.
    I get the error:
    Unable to handle format: RGB, 200x200, FrameRate=30.0, Length=0, 8-bit, Masks=-1:-1:-1, LineStride=200, Flipped
    Failed to realize: com.sun.media.PlaybackEngine@d3c65d
    Error: Unable to realize com.sun.media.PlaybackEngine@d3c65d

  • Newbee : jmf video in full java ?

    Hello,
    I am trying to develop with the jmf technology. I tried to see quicktime movies with jmstudio. Failure. Of course I can see these movies with VLC or mplayer.
    Then I tried with the jmf for linux, so some of quicktime movies are seable with jmstudio.
    So my questions are :
    - Is it possible to have a full java video player? If yes : which file format and which CODEC ?
    - Do you tools to convert movies into this format ? (I try ffmpeg but without success)
    - Is it possible to select the video track or the sound track in this kind of movie ?
    - Is it possible to have the size (200 * 300) of the video track ?
    Thanks for any pointers
    PHL.

    You might want to start by posting question in the correct subforum...
    This forum is for mobile application development.
    If this IS the correct forum, I suggest you take a look at the available mobile api's. JMF, Swing and I realy have no clue what Java Server Faces would have to do with video playback...

  • JMF - video + subtitles ?

    hello everyone,
    I know the JMF supports only video and audio formats. How can a .srt file (subtitles) or something similar be viewed together with video ? I know SLIM can do the job (viewing both) but I don't think it's capable for media player development. So, any suggestions?
    thank you.

    nfs_xxx wrote:
    Hi there,
    does anyone no something about showing subtitles in a
    simple jmf-based video player?
    I need to show/hide subtitles of a quicktime cinepack
    video (*.mov)You can get it done at:
    http://www.thesoftwareobjects.com
    Hi.. I'm trying to learn how subtitles works... I need to change the font size and color according to user settings.
    The site http://www.thesoftwareobjects.com is out.
    Does anybody has experience with it, or can told me where I can find some doc, article, link that explains how to do it?
    Marcos - Brazil

  • An image changing to FLV Video Player in AJAX Update Panel

    Hi,
    I'm trying to design part of a website can seen as video gallery. I have videos related to subcategories; and subcategories that related to categories.
    I was using popups but now want to change it. Simply, firstly there are images and descriptions(in an update panel) of videos on page. After clicking thumbnail, the region includes thumbnail and description wil be changed to FLV video player.
    Outside of updatepanel player is working good. but when i move it into updatepanel; doesn't working in IE. Because JS code (AC_FL_RunContent(.....)) is not working in updatepanel. Tried another script (like alert('hello!');), it's working. I think i have problem with the function named AC_FL_RunContent(...). It's working as i want, if open page with Firefox.
    Looked for this in google. Visited many pages, but never find a solution for this nor source of problem. I hope someone can help me
    Using ASP.Net. I'm attaching my tree structure and codes below:
    Default.aspx
    <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default"%> 
    <! 
    DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" //www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

    html xmlns ="http://www.w3.org/1999/xhtml">

    head id="Head1" runat="server">
    <title>Untitled Page</title>
    <link href="StyleSheet.css" rel="stylesheet" type="text/css"/>
    <script type ="text/javascript">
    function  
    MM_CheckFlashVersion(reqVerStr,msg){
      with (navigator){
          var isIE = (appVersion.indexOf("MSIE") != -1 && userAgent.indexOf("Opera") == -1);
          var isWin = (appVersion.toLowerCase().indexOf("win") != -1);
          if (!isIE || !isWin){
            var flashVer = -1;
            if (plugins && plugins.length > 0){
                var desc = plugins["Shockwave Flash"] ? plugins["Shockwave Flash"].description : "";
                desc = plugins["Shockwave Flash 2.0"] ? plugins["Shockwave Flash 2.0"].description : desc;
                if (desc == "") flashVer = -1;
                else{
                  var descArr = desc.split(" ");
                  var tempArrMajor = descArr[2].split(".");
                  var verMajor = tempArrMajor[0];
                  var tempArrMinor = (descArr[3] != "") ? descArr[3].split("r") : descArr[4].split("r");
                  var verMinor = (tempArrMinor[1] > 0) ? tempArrMinor[1] : 0;
                  flashVer = parseFloat(verMajor + "." + verMinor);
            // WebTV has Flash Player 4 or lower -- too low for video
            else if (userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 4.0;
            var verArr = reqVerStr.split(",");
            var reqVer = parseFloat(verArr[0] + "." + verArr[2]);
            if (flashVer < reqVer){
                if(confirm(msg))
                  window.location = http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash;
    function  callFLVP(){
      AC_FL_RunContent('codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0','width','320','height','240','id','FLVPlayer','src','FLVPlayer_Progressive','flashvars','&MM_ComponentVersion=1&skinName=Clear_Skin_1&streamName=./VideoGallery/serpende&autoPlay= false&autoRewind=false','quality','high','scale','noscale','name','FLVPlayer','salign','lt','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','FLVPlayer_Progressive');
    </ 
    script>

    script src="Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
    </ 
    head>
    <body onload="MM_CheckFlashVersion('7,0,0,0','Content on this page requires a newer version of Adobe Flash Player. Do you want to download it now?');">
      <form id="form1" runat="server">
          <ajaxToolkit:ToolkitScriptManager ID="ScriptManager1" runat="server" />
          <div>
            <asp:UpdatePanel ID="UpdatePanel1" runat="server">
            <ContentTemplate>
                <asp:Literal ID="thumbLiteral" runat="server"></asp:Literal>
            </ContentTemplate>
            <Triggers>
                <asp:AsyncPostBackTrigger ControlID="showvideoButton" EventName="Click" />
            </Triggers>
            </asp:UpdatePanel>
            <asp:Button ID="showvideoButton" Text="Video" runat="server" onclick="showButton_Click"/>
         </div>
       </form>
    </ 
    body>
    </ 
    html>
    Default.aspx.cs
    public partial class _Default : System.Web.UI.Page
         protected void Page_Load(object sender, EventArgs e)
              thumbLiteral.Text = "<img src id=\"imgThumb\" src=\"./VideoGallery/small/serpende.jpg\" />";
         protected void showButton_Click(object sender, EventArgs e)
              string strNoScriptBlock = "";
              strNoScriptBlock += "<noscript>";
              strNoScriptBlock += "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0\" width=\"320\" height=\"240\" id=\"Object1\"><param name=\"movie\" value=\"FLVPlayer_Progressive.swf\" /><param name=\"salign\" value=\"lt\" /><param name=\"quality\" value=\"high\" /><param name=\"scale\" value=\"noscale\" /><param name=\"FlashVars\" value=\"&MM_ComponentVersion=1&skinName=Clear_Skin_1&streamName=serpende&autoPlay=false&a utoRewind=false\" /><embed src=\"FLVPlayer_Progressive.swf\" flashvars=\"&MM_ComponentVersion=1&skinName=Clear_Skin_1&streamName=serpende&autoPlay=fal se&autoRewind=false\" quality=\"high\" scale=\"noscale\" width=\"320\" height=\"240\" name=\"FLVPlayer\" salign=\"LT\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash\" /></object>";
         strNoScriptBlock += "</noscript>";
         string strScriptBlock = "";
         strScriptBlock += "<script>";
         strScriptBlock += "callFLVP();";
         strScriptBlock += "</script>";
         ScriptManager.RegisterClientScriptBlock(this, typeof(string), "strScriptBlock", strScriptBlock, false);
         thumbLiteral.Text = strNoScriptBlock;

    Let's check this first;
    If you have problems with current Shockwave Flash plugin versions then check this:
    * see if there are updates for your graphics drive drivers
    '''https://support.mozilla.org/kb/upgrade-graphics-drivers-use-hardware-acceleration'''
    * disable protected mode in the Flash plugin (Flash 11.3+ on Windows Vista and later)
    '''https://forums.adobe.com/message/4468493#TemporaryWorkaround'''
    * disable hardware acceleration in the Flash plugin
    '''https://forums.adobe.com/thread/891337'''
    See also:
    * '''http://kb.mozillazine.org/Flash#Troubleshooting'''

  • I get a security sandbox error #2122 when i try to use ImageSnapshot on video player

    hey guys... so all my application does is... it has a video player... and when i initiate the component it loads the flv from a different server, and plays the video... now while its playing the video i have a button called capture, and whe you hit that button the user is able to take snapshots of the current frame.
    this seems to work perfectly locally, but as soon as i uploaded it to the server i get problems...
    the error states:
    SecurityError: Error #2122: Security sandbox violation: BitmapData.draw: http://website1.com/Content/swf/oneStopImageVersion.swf cannot access http://website2.com/videos/originals/Grand_Opening.flv. A policy file is required, but the checkPolicyFile flag was not set when this media was loaded.
         at flash.display::BitmapData/draw()
         at mx.graphics::ImageSnapshot$/captureBitmapData()
         at modules.videoHandler::videoHandler/captureVideo()
         at modules.videoHandler::videoHandler/___videoHandler_LinkButton3_click()
    i have the crossdomain file in the root directory of website2.com, and i have the folloing line of code in there
    <?xml version="1.0"?>
    <cross-domain-policy>
         <site-control permitted-cross-domain-policies="all" />
         <allow-access-from domain="website1.com"/>
         <allow-access-from domain="*.website1.com"/>
             <allow-http-request-headers-from domain="*.website1.com" headers="SOAPAction"/>
    </cross-domain-policy>
    any ideas on how to fix this problem???
    my actionscript code is as follows
    public function captureVideo():void{
         var snapshot:BitmapData = ImageSnapshot.captureBitmapData(videoPlayer.videoDisplay);
         initialThumbnail.source = new Bitmap(snapshot); //this is the image tag in my mxml
    any help is greatly appretiated!!!!
    thanks in advance!

    any one with ideas???
    i've been doing some more research... and found a possible solution... where i could send the video thru a server proxy... but the only thing is doing that might slow down my process... i was wondering if there was any other solution to this problem??

  • My ant video player after i updated to firefox four is now in the upper part of the screen where it opens up and i cant find out how to fix it

    my ant video player after i updated to firefox four is now in the upper part of the screen where it opens up and i cant find out how to fix it

    Create a new profile as a test to check if your current profile is causing the problems.
    See "Basic Troubleshooting: Make a new profile":
    *https://support.mozilla.com/kb/Basic+Troubleshooting#w_8-make-a-new-profile
    There may be extensions and plugins installed by default in a new profile, so check that in "Tools > Add-ons > Extensions & Plugins" in case there are still problems.
    If that new profile works then you can transfer some files from the old profile to that new profile, but be careful not to copy corrupted files.
    See:
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • How can i make RealPlayer the default video player?

    I use safari 3.0.4
    When it accesses sites containing video, it plays it in Flash (eg YouTube)
    How do I get safari to use realplayer instead? (Even my Firefox 2.0 uses flash) (I have RP 10)
    I am teaching a course in media literacy and show some of the uploaded old tv commercials to my students. i want to show next year's class some of the same commercials, so i want to save the ones I find this year while they're available.
    At school, I work on a pc, and it plays video back in RealPlayer which gives me a 'download' option, so i can save these commercials.
    But when i find good clips at home, on my mac, all I can do is note the urls, then do it all again at school to get to them to download. it would be much easier if i could download them as I find them, then take them to school on my portable drive.
    any solution?
    Thank you
    Elizabeth

    At school, I work on a pc, and it plays video back in RealPlayer which gives me a 'download' option, so i can save these commercials
    RealPlayer v. 11.0.0 (may still be in beta) now includes that Downloader - a very useful item!
    It is a free download but they will ask for money in July. Must be why they call it RealPlayer Plus!
    You can get it here:
    http://uk.real.com/player/mac/
    I have had it for a couple of weeks and have had no problems.
    As for making RealPlayer the default video player, IMO that is not a good idea. There is a lot of stuff out there that RealPlayer would not be able to handle.
    These are the downloads and the settings you need in order to view/hear pretty much everything that the net can throw at you: The setup described below has proved repeatedly successful on both PPC and Intel macs, but nothing in life carries a guarantee!
    It is known to work in the great majority of cases with Safari 3.0.4, QT 7.3 or 7.4 and OS 10.4.11. (If you are running Leopard, ensure that all plug-ins have been updated for OS 10.5.2, but please see my footnote).
    Assuming you already run Tiger versions OS 10.4.9 or above (this has not yet been verified with Leopard) and have Quicktime 7.2 or above, and are using Safari 2 or 3, download and install (or re-install even if you already had them) the latest versions, suitable for your flavor of Mac, of:
    RealPlayer 10 for Mac from http://forms.real.com/real/player/blackjack.html?platform2=Mac%20OS%20X&product= RealPlayer%2010&proc=g3&lang=&show_list=0&src=macjack
    The new RealPlayer Plus (v.11) is still in beta and therefore free, but works well on Tiger. It includes a download function, and you can get that here:
    http://uk.real.com/player/mac/
    Flip4Mac WMV Player from http://www.microsoft.com/windows/windowsmedia/player/wmcomponents.mspx (Windows Media Player for the Mac is no longer supported, even by Microsoft)
    Perian from http://perian.org/
    You should read this support page http://perian.org/#support in case you need to delete older codecs.
    Adobe FlashPlayer should first be uninstalled using the appropriate uninstaller available here: http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14157&sliceId=2 and then the latest version obtained from here: http://www.adobe.com/shockwave/download/download.cgi?P1ProdVersion=ShockwaveFlash and installed.
    (You can check here: http://www.adobe.com/products/flash/about/ to see which version you should install for your Mac and OS, but please see my footnote if you are running Leopard.)
    In earlier versions than QT 7.1.3 in Quicktime Preferences, under advanced, UNcheck Enable Flash, and under Mime settings/Miscellananeous only check Quicktime HTML (QHTM).
    You should also ensure, if you are running Tiger 10.4.11 or Leopard, that you have downloaded and installed the correct version for your Mac of Security Update 2007-009.1.1, which also deals with the Quicktime/Flash issues you may have experienced, such as the '?'. What happened was that both Quicktime as well as Adobe FlashPlayer tried to play the Flash video at the same time. This no longer happens. (N.B. Security Update 2007-009 1.1 requires both a restart and a permission repair.)
    If you get problems with viewing video on a website try moving this file to your Desktop:
    Hard drive/Library/Internet Plug-Ins/QuickTime Plugin.webplugin
    and then restarting Safari. If all now works, you can trash that file.
    In Macintosh HD/Library/Quicktime/ delete any files relating to DivX (Perian already has them). However it should be noted that Perian is not an internet plugin and will not play DivX files imbedded on a website. For that you will need the DivX Player browser plugin available from http://www.divx.com/divx/mac/
    Now go to Safari Preferences/Security, and tick the boxes under Web Content (all 4 of them) to enable Java.
    Lastly open Audio Midi Setup (which you will find in the Utilities Folder of your Applications Folder) and click on Audio Devices. Make sure that both Audio Input and Audio Output, under Format, are set to 44100 Hz, and that you have selected 'Built in Audio'.
    Important: Now repair permissions and restart.
    You should also consider having the free VLC Player from http://www.videolan.org/ in your armory, as this plays almost anything that DVD Player might not.
    FOOTNOTE
    If you are running Leopard:
    Some users have mentioned that the latest Flash Player (v.9.0.115.0) conflicts with Leopard, and that they have needed to revert to v. 9.0.47. This can be downloaded from here:
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14266&sliceId=1

  • How can I remove a video player?

    Hi, awhile back I installed a video player, that I can't even remember the name of now, and it plays all my video's being watched over the web with this player now, it does give me the option to use original player, but you have to be lightning quick to click it and even then sometimes it won't. Its driving me nuts! I hate it! Can anyone tell me please how to maybe find this program and delete it. And what is the default video player on the Mac supposed to be?
    Thanks so much.

    From the Safari menu bar, select
    Help ▹ Installed Plug-ins
    Besides the following, what plugins are listed?
    iPhotoPhotocast
    Java
    QuickTime
    Shockwave Flash
    WebKit built-in PDF

  • The video player is in the connection error state.

    Flash cS 5.5 / Win 7. Inserting video into movieclip both with 'import video' wizard and via component. FLV that plays fine on a number of different servers. On opening (after gathering metadata) the message 'The video player is in the connection error state. It enters this state when a video stream attempted to load but was unsuccessful. There are two possible reasons for the error: no connection to the server or the stream was not found.' Firstly I am treating this as a progressive download, not streaming. Second this plays fine locally, it's only when I upload to a server it fails. The FLV is in a folder directly below the SWF. Result is same with FLV in same location as SWF. MIME type set to vide/x-flv although I've also set it to applicaiton/octet-stream.
    This is a very basic requirement to call the video directly from Flash, the default parameters of the component are adequate and work locally. However the video does not play. Is it fair to assume this functionality simply does not work correctly within Flash CS5.5? I'm unclear as to what >less< I could be doing with this file.

    You can place the Flash and any Flash assets in any folder location that you want.... provided that you understand how Flash assets (like .flv files) are "Pathed" or located by the .swf that is calling them. The underlying principle is that the Flash assets need to be pathed relative to the Web page that the .swf is located on, NOT the actual, physical location of the .swf.
    For review:
    Pathing issues
    Almost always when it works on the local machine and not the server, it's a pathing problem.
    You can put your Flash related files in whatever folders you want, they do NOT have to be in the root, they do NOT all have to be in the same folder. But if you have a problem and if sticking them all in the root folder works, then you know that the issue was a pathing problem.
    Just remember that paths used in the .swf become relative to the Web page on which the .swf is placed, NOT it’s physical location.  So for example, if your .swf is in the flash/data folder and you use that .swf on a Web page in the root folder, you are in effect, removing that .swf from flash/data and putting it in root. So if the .swf is loading any related files (xml, images, video, etc), the path used inside the .swf to load the .xml file has to be relative to it's new location in root and then back down into flash/data. This is true even though when testing the .swf by itself, it can be inside flash/data and work just fine, since relative to it's location, the path is just fine, they are in the same folder. But if that same path is used when the .swf is placed on a page two folder levels up, the relative path has changed, the old "same folder" path will not work.
    In fact if you are placing the .swf on a web page in a different folder than the .swf is stored in, and that .swf calls external assets, then direct clicking and opening of the .swf in it’s folder should NOT work! That’s because the paths to the external assets should be relative to the Web page and not the physical location of the .swf.
    So just be sure that you use addresses relative to the final Web page locations (not physical file locations) and you can put the Flash related files in what ever folders you want.
    Best wishes,
    Eye for Video
    www.cidigitalmedia.com
    So you can place the .flv wherever you want, but you can't just go and move the .flv without also correcting the path to the .flv inside the .swf.
    So be sure that you have the .flv in the correct subfolder before you do any insert of the Flash player.
    Also I'm not a great fan of requiring my viewers use the latest and greatest (and most bug filled version) of any pluggin or software for that matter.
    <param name="swfversion" value="11.0.0.0" />
    I refer NOT to upgrade to ver 11 so will not be seeing your Flash anytime soon. If you want to appeal to a large audience, change that to version 10.
    Best wishes,
    Adninjastrator

  • Lack of All format playable Video player with Full Screen STRETCH feature

    I am a big fan of Nokia and i know Windows phone is the world best smart phone.im using Lumia 820. but in my highend Lumia devices lack of a
    All format playable Video player (like mkv etc.)officially from Nokia or Microsoft.pls this is very important thing for all Lumia user for HD movie experience.pls update current video player.now I'm using Moli player but there is 1
    vital feature is missing...this is Full Screen STRETCH...when i play movie using Moli player on my phone screen upper and lower portion appear black bar.It mean Ascept ratio not match.This is very important for full screen movie exp.But  this
    feature is also available on Android  MX player.
             So,I request you please update current video player with
    Full Screen STRETCH feature for windows phone user.Thank you.

    Hello,
    You should ask in the
    Windows Phone forums on the Microsoft Community forums.
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog: Unlock PowerShell
    My Book:
    Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C406F75746C6F6F6B2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

Maybe you are looking for