Playing video streaming

I begin to implement a video chat in java. I used JMF for capturing video streaming from a digital camera and RTP protocol for transmiting the video stream. I want to play the stream into an Applet (so on the client side). I don't want to use jmf on client side (an RTP Applet Player or something like this) because this means that the client needs to instal the JMF package. I need a solution to play the stream stream into an applet but I want that the client don't need to instal any software. I can use anything on server side (from where I transmit)...Is this possible? Please help me. Thank you.

I've only done some web cam capturing code, but I thought you only need the "performance pack" of JMF installed on a machine if you want to perform capturing.
So, maybe you can still use JMF in an applet without a formal installation on the client pc.
Just itry ncluding the jmf.jar and any CODEC class files necessary to replay your video stream ?
It's worth a shot... although someone may very well correct me on this.
regards,
Owen

Similar Messages

  • SpryTabbedPanel: Flash player in tabs do not play video streams

    Note: I am a complete noob (no experience with Javascript and rudimentary experience with htlm/css). Please be patient (I hope that this is the correct forum for this) and know that I am appreciative of any help or solution that anyone can provide.
    Using Dreamweaver CS4 on Mac OS 10.5.8
    We recently switched all of our streaming servers from Windows Media (good riddance) to Flash Media Server 3.5 (now getting awesome H.264 quality in comparison).
    I was asked to re-design this webpage with the aim of re-organizing the content so that it is more accessible:
    http://www.librarymedia.net/VideoGallery.html
    We used Adobe's test page for our first page:
    http://www.librarymedia.net/flash/videoplayer.html?source=rtmp://63.116.232.4/live/livestr eam&type=live&idx=10
    This was meant as a temporary page to get us started, and as you can see, it needs work but at least it works.
    I've been working the the final version of this page. My boss wants a tabbed web page with links to our video streams (tab for each category of streams).
    This is what I have so far:
    http://www.librarymedia.net/Flash2/videoplayer2.html?source=rtmp://63.116.232.4/live/lives tream&type=live&idx=10
    I realize that I had several options before building this. One, I could have made a separate page for each tab and linked them with a tab menu. In hindsight, this might have been a better option since I could have just copied the working page that we already have for each tab. Or I could have done what I have tried to do: to use Dreamweaver's SpryTabbedPanel to make the tabs and insert a Flash player with links into each tab.
    The problem:
    1. The streams do not play. The player says "initializing" and then "please enter a stream name and play". Please note that I used SpryURLutils to get each link to open in the appropriate tab.
    2. After reading about the benefits of external vs. inline javascript, I took all of the inline javascript that was contained in Adobe's sample page and placed it in an external file. I tried placing the javascript back into the source code (inline), but this did not fix the problem. I guess there is a Javascript problem or I need extra Javascript code to get this to work.  The javascript code is below. Use view source in your web browser to see source code. Please let me know if I need to provide more information.
    Thanks.
    // (C) Copyright 2008 Adobe Systems Incorporated. All Rights Reserved.
    // NOTICE:  Adobe permits you to use, modify, and distribute this file in accordance with the terms of the Adobe license agreement accompanying it. 
    // If you have received this file from a source other than Adobe, then your use, modification, or distribution of it requires the prior
    // written permission of Adobe.
    // THIS CODE AND INFORMATION IS PROVIDED "AS-IS" WITHOUT WARRANTY OF
    // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
    // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
    // PARTICULAR PURPOSE.
    // THIS CODE IS NOT SUPPORTED BY Adobe Systems Incorporated.
    // Version check based upon the values defined in globals
                                                var hasRequestedVersion = DetectFlashVer(10, 0, 0);
                                                if(!hasRequestedVersion)
                                                    var div = document.getElementById("flashcontent");
                                                    div.innerHTML = '<a href="http://www.adobe.com/go/getflashplayer/" style="color:black"><img src="images/ERROR_getFlashPlayer.gif" width="641" height="377" /></a>';
                                                else{
                                                        AC_FL_RunContent(
                                                            "src", "swfs/videoPlayer",
                                                            "width", "640",
                                                            "height", "377",
                                                            "id", "videoPlayer",
                                                            "quality", "high",
                                                            "bgcolor", "#000000",
                                                            "name", "videoPlayer",
                                                            "allowfullscreen","true",
                                                            "type", "application/x-shockwave-flash",
                                                            "pluginspage", "http://www.adobe.com/go/getflashplayer",
                                                            "flashvars", flashVars
                                          // -->  
    // Javascript in original page
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function changeImages() {
        if (document.images && (preloadFlag == true)) {
            for (var i=0; i<changeImages.arguments.length; i+=2) {
                document [changeImages.arguments[i]].src = changeImages.arguments[i+1];
    var preloadFlag = false;
    function preloadImages() {
        if (document.images) {
            navi_01_over = newImage("images/button_dynamic_up.gif");
            navi_02_over = newImage("images/button_samples_up.gif");
            navi_03_over = newImage("images/button_interactive.gif");
            preloadFlag = true;
    function changetab(obj, obj2, obj3, left1, left2, left3, nav1, nav2, nav3){
        document.getElementById(obj).style.display = 'block';
        document.getElementById(obj2).style.display = 'none';
        document.getElementById(obj3).style.display = 'none';
        document.getElementById(left1).style.display = 'block';
        document.getElementById(left2).style.display = 'none';
        document.getElementById(left3).style.display = 'none';
        document.getElementById(nav1).src = "images/" + nav1 + "_up.gif";
        document.getElementById(nav2).src = "images/" + nav2 + "_down.gif";
        document.getElementById(nav3).src = "images/" + nav3 + "_down.gif";
    function tabout(obj, nav){
        if (document.getElementById(obj).style.display == 'block'){
            document.getElementById(nav).src = "images/" + nav + "_up.gif";
        else{
            document.getElementById(nav).src = "images/" + nav + "_down.gif";
    function tabover(obj){
        document.getElementById(obj).src = "images/" + obj + "_up.gif";
    // Functionality
        <script language="javascript">
            var queryParameters = new Array();
            var flashVars = "";
            var tag = "";
            var url = "";
            window.onload = function ()
                for(var i=1 ; i<=10;i++)
                    var ids = String("sel"+i.toString());
                    document.getElementById( ids ).style.visibility = "hidden";
                    document.getElementById( ids ).className = "style76";
                // mark the entry for that index
                if(queryParameters['idx'] != "")
                    document.getElementById("td" + queryParameters['idx'] ).className = "style75";
                    document.getElementById("sel" + queryParameters['idx'] ).style.visibility = "visible";
            function initialise()
                function getUrlParam( name )
                      name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
                      var regexS = "[\\?&]"+name+"=([^&#]*)";
                      var regex = new RegExp( regexS );
                      var results = regex.exec( window.location.href );
                      if( results == null )
                            return "";
                      else
                            return unescape( results[1] );
                queryParameters['source'] = getUrlParam('source');
                queryParameters['type'] = getUrlParam('type');
                queryParameters['idx'] = getUrlParam('idx');
                   flashVars += "&videoWidth=";
                flashVars += 0;
                flashVars += "&videoHeight=";
                flashVars += 0;
                flashVars += "&dsControl=";
                flashVars += unescape("manual");
                flashVars += "&dsSensitivity=";
                flashVars += 100;
                flashVars += "&serverURL=";
                flashVars += queryParameters['source'];
                flashVars += "&DS_Status=";
                flashVars += "true";
                flashVars += "&streamType=";
                flashVars += queryParameters['type'];
                flashVars += "&autoStart=";
                flashVars += unescape("true");
                tag = "&lt;object width='640' height='377' id='videoPlayer' name='videoPlayer' type='application/x-shockwave-flash' classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' &gt;&lt;param name='movie' value='swfs/videoPlayer.swf' /&gt; &lt;param name='quality' value='high' /&gt; &lt;param name='bgcolor' value='#000000' /&gt; &lt;param name='allowfullscreen' value='true' /&gt; &lt;param name='flashvars' value= '"+                   
                flashVars+"'/&gt;&lt;embed src='swfs/videoPlayer.swf' width='640' height='377' id='videoPlayer' quality='high' bgcolor='#000000' name='videoPlayer' allowfullscreen='true' pluginspage='http://www.adobe.com/go/getflashplayer'   flashvars='"+ flashVars +"' type='application/x-shockwave-flash'&gt; &lt;/embed&gt;&lt;/object&gt;";
            function playStream()
                var url = "source=" + document.getElementById('inputURL').value;
                var type;
                if(document.getElementById('vodCheckbox').checked==true)
                    type="vod";
                else
                    type="live";
                url += ("&type=" + type);
                document.getElementById('playBtn').href="videoplayer.html?" + url;
            function checkbox(type)
                if(type=="vod")
                    if(document.getElementById('liveCheckbox').checked==true)
                        document.getElementById('liveCheckbox').checked=false;
                if(type=="live")
                    if(document.getElementById('vodCheckbox').checked==true)
                        document.getElementById('vodCheckbox').checked=false;
            initialise();

    Should I have posted this in the Spry forum instead? My apologies if this is the wrong forum.
    >There is a sample application of the code included with the zip file  which shows how to implement it.
    The sample doesn't really tell me what I need to do to the code to make it work (I do not know javascript), and unfortunately, I have not found any helpful instructions/documentation online. You've given me the answer, I just don't know enough to implement it. This is what I've done:
    1. Placed the FAVideo.js file in my site folder and linked it to the page: <script src="FAVideo.js" type="text/javascript"></script>
    2. I added the following code (taken from the SimpleDemo.html example inside the FAVideo folder). My comments in bold. Page at
    http://www.librarymedia.net/Flash2/videoplayer2.html?source=rtmp://63.116.232.6/vod/mp4:Ol ympics2010_640x480.mov
             <! To the <body> section:-->
    <body onLoad="">
        <div id="divOne"></div>
    <!-Do I have to place the entire page within the "divOne" div (or just the section containing the tabs) in order for the javascript to work?-->
             <!-In the <head> section: -->
       <script type="text/javascript">
            playerOne = new FAVideo("divOne", "TabbedPanels1", "demo_video.flv",0,0,{ autoLoad:true, autoPlay:true });
        </script>
    <!- I noticed that the body code added a div id called "divOne", so I added the "TabbedPanels1" div id to the above code thinking that this would apply the javascript code to all of the tabs. Dreamweaver adds <div id="TabbedPanels1" class="TabbedPanels"> to the page when you insert the tabbed menu, so I'm thinking the javascript has to point to either one of those for it to work. The "demo_video.flv",0,0 code is probably unneccesary, right? As you can see, I'm completely clueless. -->
        <script>
            playerOne.addEventListener("playheadUpdate",this,myHandler);
            playerOne.removeEventListener("playheadUpdate",this,myHandler);
            function myHandler() {
                //alert("eh");
        </script>
    </body>
    Once again, thanks for your help.

  • To play video stream by using MHP

    Hi
    I want to play a video from the MHP application.
    Could anybody help me of that.
    Thanks,
    Ranikkarasu

    u can use the ##### JMF ##### (Java Media Framework)(java.sun.com/javase/technologies/desktop/media/jmf/) :
    and take a look here :)
    1/haptics.eas.asu.edu/kanav/material/cse408material/presentations/JavaMediaFramework.ppt
    2/ and 'biensur' : tucs.fi/publications/attachment.php?fname=miscPaHaKoBjNySa04a.pdf , if u are using the OpenMHP .

  • Video stream recording (not webcam) help required

    I am making a media player / recorder type web application in flex 4.
    The application plays video streams streamed from my red5 server.
    I want to give users the ability to make / record clips of the video they are viewing.
    I know that netstream.publish is used to record/save video on the server.
    All the help i've found on google so far just give examples to save video from webcam.
    But i want to save video from a video being streamed from red5 server and being played
    on VideoPlayer control in flex.
    All help is greatly appreciated.
    Thanks.

    Thanks for the reply but i think u misunderstood my problem.
    I am not receiving any RTP Stream but RTMP stream.RTMP is a proprietary protocol of Adobe For Streaming Flash video from Flash Media Server (FMS).
    I again state the problem.
    I am getting an RTMP Stream now i want to convert it into an RTP Stream so that i can process or transmit it further.I want to convert this RTMP Stream to RTP format.
    Anyone plz help me out.I am stuck into this for past 2 days and it is very critical for my project. :-(

  • My iPad will no longer play any streaming video.  It loads but will not play. Does anyone else have this problem?

    My iPad will no longer play any streaming video.  The video loads but will not play.  This happens on all apps including you tube, abc, Netflix, etc.  can you help?

    Tried a soft reboot and it worked.  Thanks for the suggestion.

  • Embedded flash player is not working... Unable to play the streaming videos... Browser is hanging many times!!

    Hi,
    Pls help me to fix an issue with my playbook browser. The embedded flash player is not working... Unable to play the streaming videos... Browser is hanging many times. Restart done, cleared history etc.. Still doesn't work.
    Any help would be appreciated.
    Thanks.
    Solved!
    Go to Solution.

    Hello ak_kanan, 
    Welcome to the forums. 
    Try doing the following. In the browser swipe down from the top and choose Settings, now choose Content, here where it says Enable Flash change this to Off.  Now try going to the website that was not working (it will not work again this is fine) Once on the page swipe down from the top again and this time enable the Flash setting. Now reload the page and test to see if you have the same issue. 
    Let us know how you make out. 
    -SR
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • Video Streaming in Windows media player won't play through Airport Extreme

    Hello and thank you for reading my issue.
    I have the current square shaped airport extreme base station. My mother has a Windows XP system on her Toshiba laptop and she takes an online class which has video streaming for the lectures. When we connect to the network wirelessly or with an ethernet cable through the base station, the video will not begin to buffer and won't play from the website. It just states ready and doesn't buffer. However, if we connect the laptop straight to our cable modem without the base station, the videos stream and play perfectly. Anybody know how we can fix this to play through the wireless network? Thanks a lot.
    MacBook Pro 2.33 GHz Intel Core 2 Duo, 2 GB 667 MHz DDR2 SDRAM   Mac OS X (10.4.8)  

    I've played with all sorts of software settings and configurations. This is what worked for me, but I'm not sure how it would work for anyone else, or if the issues are even related, but here goes.
    1 - Turn multicast rate to 1 MBPS in the drop down menu found in Airport Utility>Airport icon>Wireless Options Button.
    2 - Turn off multicast in Windows Media Player or Real Player
    3 - Turn on Video Overlay Optimization check box in Real Player.
    These things worked for me, hopefully they will help or give you some ideas for your own situtation.
    Russ

  • 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 is my ipad2 not buffering videos streaming from web as quickly as it can play them and keep making my videos stop playing?

    When I try watching videos streaming from itunes or u tube or any streaming source the ipad2 does not buffer the videos as fast as they are being played. This makes the videos stop playing within a few seconds after they start and I have to continuously hit the play button to watch videos in bits and pieces. This makes the streaming of videos on this device virtually impossible.

    You may be having some problem in your local network or your internet connection is not fast enough to properly stream the videos.
    What type of internet connection are you using (cable, DSL, etc?)
    What sort of local network do you have? router make/model, etc.
    What other traffic is on your network?

  • 30GB ipod does not play videos, it loads but does not streams...

    i have a 30gb 5gen ipod, ant it has a problem... it doesn't plays video. video clips i used were converted in itunes, so it had to fit the requirments. video loads ok, but when i try to play it it shows play sign in the left up corner, however nothig hapens, just black screen. when i push the forward buton it goes forward and i can see that the video clip loaded well, it's just not streaming, looks like it is on pause or something. i have tried to restore it, reinstall it... nothing helped
    please help!!!

    Hard Reset the  iPod  as below- this does not delete or erase any song or data.
    After charging till full charge, at least 2 hours (preferably 4 hours)
    Toggle the Hold switch, make sure you dont see the red mark when you do the  next step
    Reset the iPod -> Press Menu and Center button simultaneously for about 10 secs till the Apple Logo comes ON
    Then release the buttons
    Select your preferred language.
    Here is the Apple support Article on the 5Rs
    http://www.apple.com/support/ipod/five_rs/classic/
    Good Luck!

  • Playing IP Multicast Video Stream

    I want to get an app that allows the iphone to receive and display an encoded video stream. The video stream could be coming over 3G or over WiFi. It will be an UDP/IP Multicast stream with an address in the 235.239.0.1 range. The VLC laptop version will receive and play the stream, but so far I cant find an iPhone app that will do it (VLC for iPHone will not receive a multicast stream over WiFi). Please help.
    M-

    See Haivision's InStream Mobile.

  • On my ipad video streaming stops after a few seconds only sound is playing .what could be the reason.

    on my ipad 2 video streaming stops after a few seconds, only sound is playing .what could be the reason and how to solve this problem.
    I have a feeling that it may have started after upgrading to ios6.

    Hi,
    Is this failing with Error 20 ?
    Sometimes in a the router or modem if you use Port Forwarding then you are your Buddy may be missing the Screen Sharing Port.
    The Screen Sharing part uses a different port to the Audio port.
    As the port for Audio (And therefore Video) are known and can be port Forwarded it is the random Screen Sharing port that can be the problem.
    iChat 3 info http://support.apple.com/kb/HT1507 that includes Bonjour and Jabber info
    iChat 4 info http://support.apple.com/kb/HT2282
    If you are not using (or your Buddy) UPnP then I would change the method of opening the port to that.
    6:14 PM Saturday; June 20, 2009

  • Video streaming from iPhone to Apple TV only plays the sound.  How can I fix this?

    Video Streaming using AirPlay from iPhone(5s) to Apple TV only plays the sound.   The TV screen goes blank when I choose AirPlay but only the sound plays.   How can I fix this?

    Is this using a specific app or apps?  Not all apps support video out over AirPlay, the option is up to the app developer.

  • C# Playing Video From A Memory Stream Using DirectShow (quartz.dll).

    I have a C# Visual Studio WinForms app that plays video using the QuartzTypeLib (quartz.dll). With the code I've written, I can play any video file from the hard drive. Here's the code at the top that executes when the app starts:
            public const int WS_CHILD = 0x40000000;
            public const int WS_CLIPCHILDREN = 0x2000000;
            public QuartzTypeLib.IMediaControl mc;
            public QuartzTypeLib.IVideoWindow videoWindow = null;
            IMediaPosition mp = null;
    And here's the code that opens the video file:
            private void openMediaToolStripMenuItem_Click(object sender, EventArgs e)
                // Open a media file.
                OpenFileDialog ofd = new OpenFileDialog();
                ofd.Filter = "Video Files|*.mpg;*.avi;*;*.wmv;*.mov";
                ofd.FilterIndex = 1;
                if (DialogResult.OK == ofd.ShowDialog())
                    // Stop the playback for the current movie if a video is currently playing.
                    if (mc != null)
                        mc.Stop();
                    if (pbVideoDisplay.Image != null)
                        pbVideoDisplay.Image = null;
                    // Load the movie file.
                    FilgraphManager graphManager = new FilgraphManager();
                    graphManager.RenderFile(ofd.FileName);
                    mp = graphManager as IMediaPosition;
                    mc = (IMediaControl)graphManager;
                    tsbtnPlay.Enabled = tsbtnPause.Enabled = tsbtnStop.Enabled = true;
                    // Attach the view to the picture box (pbVideoDisplay) on frmMain.
                    try
                        videoWindow = (IVideoWindow)graphManager;
                        videoWindow.Owner = (int)pbVideoDisplay.Handle;
                        videoWindow.WindowStyle = WS_CHILD | WS_CLIPCHILDREN;
                        videoWindow.SetWindowPosition(
                        pbVideoDisplay.ClientRectangle.Left,
                        pbVideoDisplay.ClientRectangle.Top,
                        pbVideoDisplay.ClientRectangle.Width,
                        pbVideoDisplay.ClientRectangle.Height);
                    catch //(Exception Ex)
                        // I'll write code for this when I have a need to.
                    // Now we convert the video to a byte array.
                    FileStream fs = new FileStream(ofd.FileName, FileMode.Open, FileAccess.Read);
                    try
                        // Here we convert the video to Base 64.
                        VideoInBytes = new byte[fs.Length];
                        VideoInBytes = System.Text.Encoding.UTF8.GetBytes(ofd.FileName);
                        VideoInBase64 = Convert.ToBase64String(VideoInBytes);
                    catch //(Exception Ex)
                        //throw new Exception("Error in base64Encode" + Ex.Message); Worry about this later.
    Notice that I have code that converts the video to a Base64 string. I'd like to add code that will allow me to play a video from a memory stream or any other type of stream that might work better. Is that even possible and if so, what code would I need to add
    and where would I put it?

    You should be able to do it by developing a plug-in for the existing DShow filter. For instance, wmv files are being opened/read with the "WM ASF Reader" filter. You can register your own protocol and implement your own plug-in for that protocol
    (e.g. you could name it 'memory', and your URL would look like
    memory://something.wmv). You can register your protocol under the [HKEY_CLASSES_ROOT\memory\Extensions] by creating a new string value with the file extension as a name (.wmv). The value is the WM ASF Readers's
    GUID ({187463A0-5BB7-11D3-ACBE-0080C75E246E}).
    You also need to register your plugin that will be used for a wmv file when used with the 'memory' protocol.
    In [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Media\WMSDK\sources] create a new string value with the protocol name and the value is a path to you DLL plug-in. Your plug-in must implement the IStream interface. The plugin DLL exports a single function:
    HRESULT WMCreateStreamForURL( LPCWSTR pwszURL, BOOL *pfCorrectSource, IStream **ppStream )
    MSDN can provide more info on WMCreateStreamForURL() and plugins in general.
    Once you do that, what will happen is this: each time you open a file like "memory://myfile.wmv", the WM ASF Reader filter will load your plugin, call WMCreateStreamForURL() and it will use your custom IStream object for all read/write operations.

  • When I play videos (you tube, live streaming, etc, firefox freezes

    Hi
    When I play video links or watch something with live streaming, firefox just freezes. I cannot do anything except go to task manager and try end the task there.

    I am not sure I did this right. This is what I did: right-mouse clicked on the desktop, whent to properties, went to display properties, went to settings, clicked on advanced tab, and then clicked on troubleshooting tab. There I drug the hardware acceleration slider to the left to disable it, clicked ok twice as directed, restarted the computer and then I couldn't get firefox to open at all, but I went to internet explorer and got on you tube and tried to watch a video, but it crashed again.
    So I don't think that worked. I couldn't figure out how to disable hardware acceleration in the Flash plugin, but did it on the desktop instead. Are there different steps I need to take to accomplish this?
    Thank you!

Maybe you are looking for

  • ITunes store error - network connection could not be established

    I can browse anywhere on the store but when I click to buy music I get an error saying "network connection could not be established. There was an error in the iTunes store. Please try again later" iTunes 11.0.2 (26) OSX 10.6.8 Any ideas on how to sol

  • Lightroom 5 - Importing Your Images | Getting Started with Adobe Photoshop Lightroom 5 | Adobe TV

    Discover how to quickly download and import your images into Lightroom. Then, decide which method is the most efficient for your workflow. http://adobe.ly/11iaqIz

  • Acrobat update Error 1513

    Situation: MacBookPro - fresh install of OS 10.6.5. with the latest patches up to 3. December 2010 Installed CS5 Design Premium Volume license - update of all Applications Installed CS5 Acrobat 9 - the disk that came with CS5 launching updates from w

  • Problem of reading source HTML document  via URL object?

    Hi, Friends, why the following simple program can't work correctly? import java.net.*; import java.io.*; public class URLReader { public static void main(String[] args) throws Exception {      URL ieee = new URL("http://www.ieee.com/");      Buffered

  • Video (Only Audio) Works on Mac-Created QT Web Movie

    I'm on a Mac with iMovie 6. When I export a Quicktime movie using the standard Web export setting then post it on the Internet, PC users can only hear the audio but not see the video portion. What am I missing? Thanks! G5, Tibook Mac OS X (10.4.7) G5