(Youtube-) Video in a Swing GUI

Hey everyone,
I'm currently trying to play a video in my Swing GUI with JMF but I really can't get it to work.
With the help of google I got this far:
import java.awt.BorderLayout;
import java.awt.Component;
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URL;
import javax.media.CannotRealizeException;
import javax.media.Manager;
import javax.media.NoPlayerException;
import javax.media.Player;
import javax.swing.JFrame;
public class MediaPanel extends JFrame {
    public MediaPanel() {
        setLayout(new BorderLayout()); // use a BorderLayout
        // Use lightweight components for Swing compatibility
        Manager.setHint(Manager.LIGHTWEIGHT_RENDERER, true);
        URL mediaURL = null;
        try {
            mediaURL = new URL("http://www.youtube.com/watch?v=Q7_Z_mQUBa8");
        } catch (MalformedURLException ex) {
            System.err.println(ex);
        try {
            // create a player to play the media specified in the URL
            Player mediaPlayer = Manager.createRealizedPlayer(mediaURL);
            // get the components for the video and the playback controls
            Component video = mediaPlayer.getVisualComponent();
            Component controls = mediaPlayer.getControlPanelComponent();
            if (video != null) {
                add(video, BorderLayout.CENTER); // add video component
            if (controls != null) {
                add(controls, BorderLayout.SOUTH); // add controls
            mediaPlayer.start(); // start playing the media clip
        } // end try
        catch (NoPlayerException noPlayerException) {
            System.err.println("No media player found");
        } // end catch
        catch (CannotRealizeException cannotRealizeException) {
            System.err.println("Could not realize media player");
        } // end catch
        catch (IOException iOException) {
            System.err.println("Error reading from the source");
        } // end catch
    } // end MediaPanel constructor
}But all I get is errors:
Warning: The URL may not exist. Please check URL
No media player found
Can you please please help me get this working? I would really appreciate a little walkthrough
Best regards,
Patrick
Edited by: 954807 on Aug 24, 2012 6:52 AM

Just use \ tags. People don't like to go to external sites.
I really advise you to consider using JavaFX 2 here. Swing is old and not really supported anymore, JMF is also old and absolutely not supported anymore.                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Similar Messages

  • After upgrading to Firefox 24, YouTube videos never load

    I have Lubuntu 12.04 and Gnash. Up until yesterday (when Upgrade Manager uploaded the latest Firefox to version 24) all was well.
    NOW, the page loads, I click on the large "Play" symbol superimposed over the video image, and all I get thereafter is the circling dots loading symbol.
    Gnash gets far enough that it creates the "videoplayback__" file for the video, but it is typically only a few kb large (and it cannot be played, naturally).
    If there is a workaround/solution, great - if not, please tell me how to get version 23 back (but also let me know when the problem is fixed so I can get the new fixed version)
    Thank you.
    P.S. To get this question down to an acceptable size, I deleted all the printer-related Troubleshooting Information that for some reason Troubleshooter saw fit to include....
    Before I did so, I was told to: "Ensure this value has at most 30,000 characters (it has 47,676)." ("Value" ???)
    Version information:
    uname -a
    Linux scott-Asus-M2N68-AM-Plus 3.2.0-54-generic #82-Ubuntu SMP Tue Sep 10 20:09:12 UTC 2013 i686 athlon i386 GNU/Linux
    firefox --version
    Mozilla Firefox 24.0
    gnash --version
    Gnash 0.8.10 (release_0_8_10-21522-2e609a6)
    Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
    Gnash comes with NO WARRANTY, to the extent permitted by law.
    You may redistribute copies of Gnash under the terms of the GNU General
    Public License. For more information, see the file named COPYING.
    Build options
    Renderers: agg cairo
    Hardware Acceleration: none
    GUI: GTK
    Media handlers: gst ffmpeg
    Configured with: CFLAGS=-Wall -g -Werror-implicit-function-declaration -O2 CXXFLAGS=-Wall -g -O2 LDFLAGS=-Wl,--no-add-needed --host=i686-linux-gnu --build=i686-linux-gnu --prefix=/usr --sysconfdir=/etc --disable-testsuite --without-swfdec-testsuite --without-ming --disable-dependency-tracking --disable-rpath --enable-cygnal --enable-python --enable-jemalloc --enable-media=gst,ffmpeg --enable-gui=gtk,qt4,dump --enable-renderer=agg,cairo --enable-docbook --enable-extensions=fileio,lirc,mysql --with-npapi-plugindir=/usr/lib/gnash --with-plugins-install=system --enable-shared=yes
    CXXFLAGS: -Wall -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wpointer-arith -Wreturn-type -Wnon-virtual-dtor -Wunused -fvisibility-inlines-hidden

    YouTube videos freezing up after about 30s
    I am contributing the following observations both as information and in an effort to help FF find a fix for what broadly speaking is an on-going problem, but possibly not as some users have suggested specifically with FF or on the other hand with Adobe Flash. Please forgive the length.
    After updating FF23.0.1 to FF24.0 and updating Adobe Flash Player from 11.8.* to 11.9.900.117 shortly afterwards I have found that when using my broadband dongle ANY YouTube video I play in FF freezes up after 26-30 seconds although the progress bar continues; if I give it long enough the screen turns green - a first for me - and I receive a message that the Adobe Flash Player has crashed. The SAME effect occurs in Google Chrome using its default Adobe Flash Player, v11.8.* (it recognizes 11.9.900.117, but I have not tried that in Chrome yet).
    With Opera v12.16 and v15, however, with and WITHOUT the turbo feature on for slow connections, I have no problem with YouTube videos. In a single test using FF with an ethernet connection YouTube videos played properly. So, superficially, the problem would seem to be related to a slow connection speed with the dongle, although this does not explain the crashing of the Flash Player in FF and Chrome, but not in Opera: I have been using the dongle since December 2009 and have NEVER encountered this issue before. Also, with FF, I tried playing a flash video on another website at various qualities and the video did not freeze up. So, why this problem with YouTube? It might also be added that FF users have been reporting FF/Adobe Flash/YouTube problems for at least a few years and it is unlikely that they were all using broadband dongles. I do have some difficulty playing some Quicktime videos while using my dongle, which may also suggest an internet connection issue; nevertheless, as noted, this does not explain the persistent and unusual crashing of the Flash Player or the green-screen effect or Opera's ability to play YouTube videos.

  • Play a YouTube video in JavaFX?

    Moderator action: deleted rant and cleaned up what remains.
    I am trying to make this code play an FLV video, and it doesn't show any video. Only Music. How can I convert, for instance, a YouTube video, to play in JavaFX? If I download a YouTube video, how can i encode it?
    package musica;
    import javafx.application.Application;
    import javafx.beans.property.ObjectProperty;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.layout.GridPane;
    import javafx.scene.layout.StackPane;
    import javafx.scene.media.Media;
    import javafx.scene.media.MediaErrorEvent;
    import javafx.scene.media.MediaPlayer;
    import javafx.scene.media.MediaView;
    import javafx.scene.text.Font;
    import javafx.scene.text.FontPosture;
    import javafx.stage.Stage;
    import javafx.util.Duration;
    import javax.swing.Action;
    import javax.swing.JFileChooser;
    import javax.swing.JOptionPane;
    //import javafx.io.http;
    * @author André Lopes
    public class Musica extends Application {
        public MediaPlayer MP;
        public Media Media;
        public static String URL;
        public static JFileChooser JFC;
        public static Duration currentTime;
        public MediaView mediaView;
        //Main
        public static void main(String[] args) {
            launch(args);
        public Musica()
         currentTime = Duration.ZERO;
         mediaView= new MediaView(MP);
           URL = "";
         //URL = "http://download.oracle.com/otndocs/products/javafx/oow2010-2.flv";
        @Override
        public void start(Stage primaryStage) {
            primaryStage.setTitle("Hello! This is Yours Music Player!");
            //Botão Play
            Button Play = new Button();
            Play.setText("Play");
            Play.setOnAction(new EventHandler<ActionEvent>() {
                @Override
                public void handle(ActionEvent event1) {
                    Media = new Media(URL);
                    MP = new MediaPlayer(Media);
                    MP.setStartTime(currentTime);
                    mediaView.setMediaPlayer(MP);
                    MP.play();
                    System.out.println("?"+ MP.getStatus());
                    mediaView.setOnError(new EventHandler<MediaErrorEvent>() {
                    @Override
                    public void handle(MediaErrorEvent arg0) {
                                System.out.println("MP.getStatus: " + MP.getStatus());
            //Botão Hello World
            //Botão pra escolher Musica
            Button SelctFileButton = new Button();
            SelctFileButton.setText("Music Chooser/Finder:");
            SelctFileButton.setOnAction(new EventHandler<ActionEvent>() {
                @Override
                  public void handle(ActionEvent arg0) {
                    System.out.println("Java File Chooser Opened");
                    JFileChooser search = new JFileChooser();
                    search.showDialog(search,URL);
                    URL = search.getSelectedFile().toURI().toString();
                    System.out.println("URL:"+URL);
           //Botão para pausar;
           Button Pause = new Button();
           Pause.setText("Pause");
           Pause.setFont(Font.font(null, FontPosture.ITALIC,15));
           Pause.setOnAction(new EventHandler<ActionEvent>() {
           @Override
                public void handle(ActionEvent arg0) {
                try {
                    currentTime = MP.getCurrentTime();
                    MP.pause();  
                    }catch(java.lang.NullPointerException e)
                     System.out.println("java.lang.NullPointerException \n");  
                     System.out.println("Error: Unable To pause! May happens if you didnt have a music Playing!");  
           //Botão Para Continuar;
           Button Continue = new Button();
           Continue.setText("Continue/UnPause");
           Continue.setOnAction(new EventHandler<ActionEvent>() {
                @Override
                public void handle(ActionEvent arg0) {
                   //MP.setStartTime(currentTime);
                   MP.pause();
            //Grid ! Layout
            GridPane grid = new GridPane();
            StackPane root = new StackPane();
            grid.setHgap(2);
            grid.setHgap(2);
            grid.setVgap(2);
            Scene Scene = new Scene(root,500,500);
            root.getChildren().add(grid);
            root.getChildren().add(mediaView);
            //Scene.getStylesheets().add(Musica.class.getResource("Musica.css").toExternalForm());
            //grid.getStyleClass().add(Musica.class.getResource("Musica.css").toExternalForm());
            primaryStage.setScene(Scene);
            primaryStage.show();
            //Adicionando Botoes no Grid
            grid.add(Play,10,10);
            grid.add(SelctFileButton,11,10);
            grid.add(Pause,10,11);
    }Edited by: 932269 on 06/05/2012 20:36
    Edited by: 932269 on 06/05/2012 20:37
    Edited by: EJP on 8/05/2012 12:02

    After the question title has been cleaned up, I can see now that it relates to youtube video playback.
    Just embed the youtube html5 video player in a webview and stream video from youtube.
    This will work for videos that youtube has made compatible with their html5 player (about 30% it seems).
    Here is a sample embedding a youtube hosted trailer uploaded by sony pictures.
    import javafx.application.Application;
    import javafx.scene.*;
    import javafx.scene.web.WebView;
    import javafx.stage.Stage;
    public class YouTubePlayer extends Application {
      public static void main(String[] args) throws Exception { launch(args); }
      @Override public void start(final Stage stage) throws Exception {
        final WebView webView = new WebView();
        webView.getEngine().loadContent(
          "<iframe width=\"640\" height=\"390\" src=\"http://www.youtube.com/embed/IyaFEBI_L24\" frameborder=\"0\" allowfullscreen></iframe>"
        stage.setScene(new Scene(webView, 660, 410));
        stage.show();
    }If you have any questions, you can read more about youtube embedding here: https://developers.google.com/youtube/player_parameters

  • Unable to watch YouTube video

    I am noble to watch YouTube videos.  This is just a recent problem.  Any fixes please?

    OS X 10.8.4 Mountain Lion / Safari 6.0.5
    1. System Preferences > Other/ Flash Player > Advanced >  Delete  All
         Press the "Delete All" button
         Install Adobe Flash Player.
        http://get.adobe.com/flashplayer/
        Quit Safari.
        Restart computer. Relaunch Safari.
    2.  Enable Plug-ins
        Safari > Preferences > Security
        Web Content:  > "Enable Plug-ins".
           or
        Internet Plug-ins >  "Allow all other plug-ins
    3. Check  whether you are currently  in  YouTube HTML 5 trial.
         http://www.youtube.com/html5
        At the bottom  left of the page  uncheck the box beside
       "You are currently in the HTML5 trial".
    4. Reset Safari.
        Click Safari in the menu bar.
        From the drop down select "Reset Safari".
        Uncheck the boxes next to all items.
        Check the box next to "Remove all website data".
        Click "Reset".
    5. Turn off Extensions, if any.
        Safari > Preferences > Extensions
         Now try YouTube.
    Best.

  • Windows 8: After update to Flash Player 13 no audio/youtube videos

    Youtube videos only play a second, after that they reload multiple times and then youtube gives me some error about how it can't play the video.
    Audio stopped working completely and itunes won't play songs. It's stuck at 0:00.
    I already tried to reinstall. Also, I didn't find any previous versions for my windows like the mac users got.
    Any help is very much appreciated. Yesterday evening the laptop did everything alright.

    What browser do you use?

  • Embedded youtube video not showing up in IE

    Ok, I dont know whats wrong here. Im redesigning a site and Im trying to embed a youtube video. It works fine in ff and in chrome but nothing appears on my page at all in IE. Ive looked on every forum i could for the answer but no one seems to really have one that I already havent done. Ive checked everything i need to in tools/internet options, as well as in control panel. I tried uploading another video and i get the same problem. ALSO, I tried making the video real big on my page just for kicks...in ff, it showed up and my whole page was out of whack. I checked in IE and everything was how it should be but without the video. So apparently IE isnt picking it up at all. Code is below and video is in RED. Forgive the amount of text. I never seem to paste enough of it in. Please take a look.
    Note: using asp for this site so thatswhy you wont find <html> or <body> tags. Code is also a little messy but my job is to just re-design whats already there.
    Thanks for your potential help...
    <script language="JavaScript" type="text/JavaScript">
    <!--
    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 MM_swapImgRestore() { //v3.0
      var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    //-->
    </script>
    <style type="text/css">
    <!--
    .style1 {
        color: #333333;
        font-weight: bold;
    -->
    </style>
    <table cellpadding="10" cellspacing="0" border="0" width="100%" class="bodytext">
        <tr>
            <td colspan="2"><img src="Images/ah_dz/self_publishing.jpg" border="0"></td>
        </tr>
        <tr valign="top">
            <td colspan="2"><!--<span class="ProductHeadings2"> Self Publishing</span><br />-->
             <span class="LandingPageDetails"><a href="default.aspx?Display=Launch">Launch Package</a> | <span class="LandingPageDetails"><a href="default.aspx?Display=Folio">Folio Package</a></span></span>      </td>
        </tr>
        <tr>
          <td colspan="2">Print On Demand has made it possible for authors to get their work into the marketplace without having to deal with the bigger publishing houses or the costs                 associated with them. The idea of selling the book first and then printing it does away with excess stock and obsolescence. Read about the services we offer below and decide between our <a href="default.aspx?Display=Launch">Launch</a> or <a href="default.aspx?Display=Folio">Folio</a> packages to determine which would best suit <i>your</i> vision. </td>
      </tr>
        <tr>
          <td width="55%"><br />
    What we will provide for you:
      <ol>
        <li>Consultation on the choices available to you</li>
        <li>Book archival, production and distribution on demand </li>
        <li>Legal and administration fulfillment</li>
        <li>Partnership with design and layout</li>
        <li>E-commerce, distribution, tracking and payment of royalties</li>
        <li>Complete in-house printing and bindery facilities</li>
        <li>14 Docutech printing systems</li>
        <li>IGen3 Advanced colour printing system</li>
        <li>4 DocuColor 2045 colour printing systems</li>
        <li>8 Docu-12 printing systems</li>
        <li>21 offset presses</li>
        <li>Direct Imaging Press (full colour)</li>
        <li>Complete in-house coating and laminating systems</li>
        <li>Complete Soft and Hard Cover solutions</li>
      </ol>
      Why Volumes?
      <ol>
        <li>You maintain total ownership and control of book rights</li>
        <li>You choose between two robust publishing packages</li>
        <li>We post press releases to thousands of potential buyers</li>
      </ol></td>
          <td width="45%" align="left"><object width="305" height="214"><param name="movie" value="http://www.youtube.com/v/4_hzyUKzRII&hl=en&fs=1&color1=0x2b405b&color2=0x6b8ab6&border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/4_hzyUKzRII&hl=en&fs=1&color1=0x2b405b&color2=0x6b8ab6&border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="305" height="214"></embed></object></td>
      </tr>
        <tr>
            <td colspan="2">
            <table align="center" class="style1" rules="all" frame="box" width="700" border="1" bordercolor="#CCCCCC" cellpadding="4" cellspacing="1">
            <tr>
              <td width="46%" bgcolor="#E3E4FA"> </td>
              <td class="SPLinks" width="27%" align="center" bgcolor="#E3E4FA" style="font-family:Geneva, Arial, Helvetica, sans-serif; font-size:16px"><a href="default.aspx?Display=Launch" style="text-decoration:none"><b>Launch Package</b></a><br /><span class="price" style="font-size:14px"><b><i>$799.00</i></b></span></td>
              <td width="27%" align="center" bgcolor="#E3E4FA" style="font-family:Geneva, Arial, Helvetica, sans-serif; font-size:16px"><a href="default.aspx?Display=Folio" style="text-decoration:none"><b>Folio Package</b></a><br /><span class="price" style="font-size:14px"><b><i>$1699.00</i></b></span></td>
            </tr>
            <tr>
              <td bgcolor="#f0f5f0" style="font-family:Geneva, Arial, Helvetica, sans-serif; font-size:12px">ISBN Assignment</td>
              <td align="center" bgcolor="#f0f2f6"><img src="Images/V.gif" width="10" height="10" /></td>
              <td align="center" bgcolor="#f4f1f6"><img src="Images/V.gif" width="10" height="10" /></td>
            </tr>
            <tr>
              <td bgcolor="#f0f5f0" style="font-family:Geneva, Arial, Helvetica, sans-serif; font-size:12px">CIP Arrangement</td>
              <td align="center" bgcolor="#f0f2f6"><img src="Images/V.gif" width="10" height="10" /></td>
              <td align="center" bgcolor="#f4f1f6"><img src="Images/V.gif" width="10" height="10" /></td>
            </tr>
            <tr>
              <td bgcolor="#f0f5f0" style="font-family:Geneva, Arial, Helvetica, sans-serif; font-size:12px">Design an EAN Barcode</td>
              <td align="center" bgcolor="#f0f2f6"><img src="Images/V.gif" width="10" height="10" /></td>
              <td align="center" bgcolor="#f4f1f6"><img src="Images/V.gif" width="10" height="10" /></td>
            </tr>
            <tr>
              <td bgcolor="#f0f5f0" style="font-family:Geneva, Arial, Helvetica, sans-serif; font-size:12px">Copyrighted Webpage Layout</td>
              <td align="center" bgcolor="#f0f2f6"><img src="Images/V.gif" width="10" height="10" /></td>
              <td align="center" bgcolor="#f4f1f6"><img src="Images/V.gif" width="10" height="10" /></td>
            </tr>
            <tr>
              <td bgcolor="#f0f5f0" style="font-family:Geneva, Arial, Helvetica, sans-serif; font-size:12px">Include a Copyright Notice</td>
              <td align="center" bgcolor="#f0f2f6"><img src="Images/V.gif" width="10" height="10" /></td>
              <td align="center" bgcolor="#f4f1f6"><img src="Images/V.gif" width="10" height="10" /></td>
            </tr>
            <tr>
              <td bgcolor="#f0f5f0" style="font-family:Geneva, Arial, Helvetica, sans-serif; font-size:12px">2 Copies Sent to National Library</td>
              <td align="center" bgcolor="#f0f2f6"><img src="Images/V.gif" width="10" height="10" /></td>
              <td align="center" bgcolor="#f4f1f6"><img src="Images/V.gif" width="10" height="10" /></td>
            </tr>
            <tr>
              <td bgcolor="#f0f5f0" style="font-family:Geneva, Arial, Helvetica, sans-serif; font-size:12px">Monthly Financial Report on Sales and Royalties</td>
              <td align="center" bgcolor="#f0f2f6"><img src="Images/V.gif" width="10" height="10" /></td>
              <td align="center" bgcolor="#f4f1f6"><img src="Images/V.gif" width="10" height="10" /></td>
            </tr>
            <tr>
              <td bgcolor="#f0f5f0" style="font-family:Geneva, Arial, Helvetica, sans-serif; font-size:12px">Electronic Master of the Book</td>
              <td align="center" bgcolor="#f0f2f6"><img src="Images/V.gif" width="10" height="10" /></td>
              <td align="center" bgcolor="#f4f1f6"><img src="Images/V.gif" width="10" height="10" /></td>
            </tr>
            <tr>
              <td bgcolor="#f0f5f0" style="font-family:Geneva, Arial, Helvetica, sans-serif; font-size:12px">Front and Back Cover Design</td>
              <td align="center" bgcolor="#f0f2f6"><img src="Images/V.gif" width="10" height="10" /></td>
              <td align="center" bgcolor="#f4f1f6"><img src="Images/V.gif" width="10" height="10" /></td>
            </tr>
            <tr>
              <td bgcolor="#f0f5f0" style="font-family:Geneva, Arial, Helvetica, sans-serif; font-size:12px">Proof for Review by Author</td>
              <td align="center" bgcolor="#f0f2f6"><img src="Images/V.gif" width="10" height="10" /></td>
              <td align="center" bgcolor="#f4f1f6"><img src="Images/V.gif" width="10" height="10" /></td>
            </tr>
            <tr>
              <td bgcolor="#f0f5f0" style="font-family:Geneva, Arial, Helvetica, sans-serif; font-size:12px">Archive the Book for Future Ordering</td>
              <td align="center" bgcolor="#f0f2f6"><img src="Images/V.gif" width="10" height="10" /></td>
              <td align="center" bgcolor="#f4f1f6"><img src="Images/V.gif" width="10" height="10" /></td>
            </tr>
            <tr>
              <td bgcolor="#f0f5f0" style="font-family:Geneva, Arial, Helvetica, sans-serif; font-size:12px">Sell Through Other On-line Bookstores</td>
              <td align="center" bgcolor="#f0f2f6">-</td>
              <td align="center" bgcolor="#f4f1f6"><img src="Images/V.gif" width="10" height="10" /></td>
            </tr>
            <tr>
              <td bgcolor="#f0f5f0" style="font-family:Geneva, Arial, Helvetica, sans-serif; font-size:12px">Discounted Rate for Channels Mutually Agreed Upon</td>
              <td align="center" bgcolor="#f0f2f6">-</td>
              <td align="center" bgcolor="#f4f1f6"><img src="Images/V.gif" width="10" height="10" /></td>
            </tr>
            <tr>
              <td bgcolor="#f0f5f0" style="font-family:Geneva, Arial, Helvetica, sans-serif; font-size:12px">500 Full Colour Business Cards</td>
              <td align="center" bgcolor="#f0f2f6">-</td>
              <td align="center" bgcolor="#f4f1f6"><img src="Images/V.gif" width="10" height="10" /></td>
            </tr>
            <tr>
              <td bgcolor="#f0f5f0" style="font-family:Geneva, Arial, Helvetica, sans-serif; font-size:12px">500 Full Colour Bookmarks</td>
              <td align="center" bgcolor="#f0f2f6">-</td>
              <td align="center" bgcolor="#f4f1f6"><img src="Images/V.gif" width="10" height="10" /></td>
            </tr>
            <tr>
              <td bgcolor="#f0f5f0" style="font-family:Geneva, Arial, Helvetica, sans-serif; font-size:12px">20 Finished Copies to the Author</td>
              <td align="center" bgcolor="#f0f2f6">-</td>
              <td align="center" bgcolor="#f4f1f6"><img src="Images/V.gif" width="10" height="10" /></td>
            </tr>
            <tr>
              <td bgcolor="#f0f5f0" style="font-family:Geneva, Arial, Helvetica, sans-serif; font-size:12px">Listing in the Canadian Booksellers Association Magazine</td>
              <td align="center" bgcolor="#f0f2f6">-</td>
              <td align="center" bgcolor="#f4f1f6"><img src="Images/V.gif" width="10" height="10" /></td>
            </tr>
            <tr>
              <td bgcolor="#f0f5f0" style="font-family:Geneva, Arial, Helvetica, sans-serif; font-size:12px">Press Release of the Author’s Book Title</td>
              <td align="center" bgcolor="#f0f2f6">-</td>
              <td align="center" bgcolor="#f4f1f6"><img src="Images/V.gif" width="10" height="10" /></td>
            </tr>
            <tr>
              <td bgcolor="#f0f5f0" style="font-family:Geneva, Arial, Helvetica, sans-serif; font-size:12px">Electronic Press Release</td>
              <td align="center" bgcolor="#f0f2f6">-</td>
              <td align="center" bgcolor="#f4f1f6"><img src="Images/V.gif" width="10" height="10" /></td>
            </tr>
            <tr>
              <td bgcolor="#f0f5f0" style="font-family:Geneva, Arial, Helvetica, sans-serif; font-size:12px">E-Commerce Ordering Covered by Volumes</td>
              <td align="center" bgcolor="#f0f2f6">-</td>
              <td align="center" bgcolor="#f4f1f6"><img src="Images/V.gif" width="10" height="10" /></td>
            </tr>
            <tr>
            <td bgcolor="#f0f5f0" style="font-family:Geneva, Arial, Helvetica, sans-serif; font-size:12px">Volumes Will Also Make Your Book Available On-line</td>
            <td align="center" bgcolor="#f0f2f6">-</td>
            <td align="center" bgcolor="#f4f1f6"><img src="Images/V.gif" width="10" height="10" /></td>
            </tr>
          </table>
            <br>
              <p>Volumes can make your book available all over the world to major booksellers&rsquo; websites. We also provide our own on-line bookstore to handle e-commerce distribution if this is the route that you choose to take. <br>
              </p>
              By working with Volumes to self-publish you will:
                      <ol>
                          <li>Keep total control of your book. Ownership of the content and design is all yours &ndash; You keep the rights. Whether you sell the content to other publishing houses, foreign rights, television or promotion rights &ndash; You will own them all.</li>
                          <li>Cover layout and design at no extra cost. We understand the concept of the cover sells and will work with the cover layout until you are 100% satisfied.</li>
                          <li>We take the headaches out of producing the EAN bar code, ISBN number, Library of congress number, Copyright page and Cataloging in Publication data.</li>
                          <li>With our state-of-the-art electronic archival system you can print the quantity you want when you want it. This new process lowers the risk that you would undertake using any other publishing process. No more administration cost for warehousing, obsolescence and interest expense. You have no extra cost for ordering on demand. You also have the ability to make revisions and updates at a later date with no additional cost.</li>
                          <li>We manage the royalties and pay you on a bi-monthly schedule plan. By partnering with Volumes you will reap the well-deserved rewards. When signing up with most publishing firms you will not only lose total control but you will receive a royalty payment between 6% &ndash; 8% per book. By self-publishing you will increase this royalty to over 60% of the retail price.</li>
                          <li>Volumes' consulting team will also sell the books to you at our print cost. When you need to sell your book in seminars, book affairs and other related shows we will not offer a discount but sell you the books at cost. We encourage this as you take the extra time and effort in selling your book. We want you to be well-rewarded.</li>
                          <li>We work with the National Library to register your book. We ship 2 copies for their records and charge no extra shipping or handling fee.</li>
              </ol>
                      <p>Writing and producing a book takes a lot of hard work. Let your hard work speak Volumes. Choose one of our two publishing packages that best suits <i>your</i> needs.                </p>
                        <p>If you have written a book, <a href="mailto:[email protected]">tell us about it</a>!<br>
                        or give us a call toll free:  (888) 571-2665, (519) 571-2665</p>
                        <p>Click here for information about: <br>
            <span class="LandingPageHeadings"><a href="default.aspx?Display=Launch">Volumes Launch Package</a></span> <br>
                <span class="LandingPageHeadings"><a href="default.aspx?Display=Folio">Volumes Folio Package</a></span>
                <br></p>
                      <hr noshade="noshade" align="left" color="#94AEFF" width="100%" size="1" />
      <br>
    <div align="left"><a href="ftp://ftp.mtprint.com/" onClick="MM_popupMsg('Welcome to Volume\'s anonymous FTP server. Please note that you may only deposit files here.     You may not read, delete, or overwrite files that already exist. Also, please note that you may not create folders in this directory either.\r\rOn a Windows-based PC, simply drag and drop your file(s) or file folder onto the ftp window that will appear once you click ok below.\r\rOn a Macintosh-based machine, please use Fetch to anonymously submit your files.\r\rOnce your files are delivered here, please send an email to your Volumes consultant.\r\rThank you for choosing Volumes! ')" target="_blank" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('FTP','','Images/StationeryLanding/FTP2.png',1)"><img src="images/StationeryLanding/FTP.png" name="FTP" border="0" id="ftpbutton"></a><br>
    </div>
    <div class="instructions"><br>
      If you have met or talked with one of our representatives and need to submit a file, please click the FTP button above.</div>        </td>
        </tr>
    </table>

    You added a couple of spaces to the Youtube code.
    Change:
    & border=1
    to:
    &border=1
    in two places so that it matches the code from the Youtube embed code. Or copy the code from Youtube again. The result:
    <td width="45%" align="left"><object width="305" height="214"><param name="movie" value="http://www.youtube.com/v/4_hzyUKzRII&hl=en&fs=1&color1=0x2b405b&color2=0x6b8ab6&border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/4_hzyUKzRII&hl=en&fs=1&color1=0x2b405b&color2=0x6b8ab6&border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="305" height="214"></embed></object></td>
    It works in my test.
    Mark A. Boyd
    Keep-On-Learnin' :-)
    If you are reading this via email, be aware that it may not be an accurate representation of my message. Login to read the actual message and/or to reply.

  • Can you use soundtrack pro's loops in your youtube videos or do you need to purchase a license since it is royalty free?

    Can you use soundtrack pro's loops in your youtube videos or do you need to purchase a license since it is royalty free?
    I understand they are royalty free, I am just confused about using the actual loops for films, videos, etc - if there is a special license you must purchase or what?
    Yes sure, it's a library and may be used a lot - but is it legal or against agreement?
    And to clarify - what about music I create on the program , that is ok right?

    If you purchased the software you have the right to use the loops that came with the software in the software to make whatever you want.

  • Screen goes black playing YouTube videos

    I am using Google Chrome web browser with version 11.1.102.55 Adobe flash player on a Windows Vista 64-bit operating system.  This problem also occurs in Internet Explorer.  When I play a Youtube video on my PC most of the time after a few seconds of play my monitor goes completely black.  I have a TV near my computer that I have set up as a secondary monitor.  It does not go black, but continues to look fine.  If I turn the power off my monitor and turn it back on, the screen comes back.  Though if the video is still playing it quickly goes off again.  If I can manage to pause the video before it goes off again, it continues to work.  My monitor is a ViewSonic VX2235 and I am using its specific video driver.  I have the latest update of that.  My video card is a ATI Radeon HD 3800 series.  My TV is using just the standard Generic PnP Monitor driver.  I have tried uninstalling the ViewSonic driver and using the Generic PnP monitor for the monitor, but I still get the problem.  I have also unchecked "Enable hardware acceleration" in the Adobe Flash Player Settings.
    Any suggestions to get this to stop happening are appreciated.

    That's odd.  Have you tried hooking up your TV as the primary (or only) monitor to see if it's also put into "sleep" mode?
    Chris

  • AirPlay fails on embeded youtube video (livestream) from New iPad to Latest gen AppleTV.

    Hello,
    I just purchased a new Apple Tv (03/24/2014) and tried to airplay an embeded youtube video from Safari and Chrome on my iPad and received an error. Airplay is working fine from the youtube app, and other apps as well. I've done some poking around and wasn't able to find any concrete answers as to why it's not working. Apparently this used to work prior to sometime in August (not sure exactly when) of 2013. Any helo would be much appreciated are this is one of the main reasons I purchased the Apple Tv.

    Hi IntroMike.
    Take a look at this URL in the XBMC forum.
    http://forum.xbmc.org/showthread.php?tid=179961&page=36
    This discusses the issue you are seeing. It seems to be specific to the Youtube app and some embeded videos.
    There is no known solution at this time apparently.

  • Firefox crashes when I load any youtube video on the latest version, it not only crashes firefox but my whole computer goes blank and I have to restart, why is this?

    Backstory: There are two possible events that could be causing this
    1: At some point I may have followed a ''Tinyurl' link that consquently lead me to a youtube video, to which youtube worked perfectly fine before hand, and this is where i witnessed the first crash. Theories into whether this link, previously stated, may have done something to my system have been thought about, but the fact that youtube still works on the latest Microsoft Internet Explorer seems to present the idea of a virus or an error redundant. I own the latest Macfee antivirus software and Ccleaner(running the registry check) and have run them complete with disc defragment and scan disc error recovery along with an additional malware scanner. Nothing seems to have come up on anything. After doing all this, my last resort was System restore and this seemed to solve the problem, mainly because i had an earlier version of firefox. therefore i resisted updating for aslong as possible whenever it told me to update. but the otherday i thought i'd risk it again thinking it may have been a problem alot of people have been having and it would of been fixed, but sadly it hasn't. this lead me to google the problem and was advised to start firefox on 'safe mode' as there may have been a confliction between add ons or plugins with youtube or some thing like that, but sadly that hasn't worked either. The plugins i had installed with it were the ones firefox has told me to get, or recommended and the only two addons i had on firefox was Adblock plus (fanboy subscrip) and Noscript.
    Details of what actually happens: go to a youtube link, video loads for about 2 seconds(both video and audio), screen freezes, and flashes maybe once with some small lines across the bottom half of the screen horizontally towards the right corner, then the screen goes blank and makes my laptop dorment, but still running, thus I restart my system.
    Sadly now when I system restore there isn't a point far back enough before this problem. So its either i downgrade(which seems to be the only option) or simply stop using firefox, as internet explorer works perfectly fine. however running firefox with no scrip and adblock plus is the ideal browser customisation, which is why this is rather annoying.
    so number 1 was the tinyurl theory and i must admit i was abit foolish to follow such a random link, but whats happened has happened.
    2: basically there is a major disfunction with the latest firefox that has to with the addons i have included onto firefox and this seems to be causing a terrible effect on my system.
    in a nutshell: firefox worked perfectly before upgrading to the new firefox and before i followed this link, the rest of my system is completely normal and virus and error free or so it says, Other browsers seem to work also. safe mode does not cure the problem.
    Running on a customised Dell laptop, which is pretty midrange-toprange and hasn't been active long, so it has the general HD video card thats included in all Studio 15 Dell laptops.
    any help appreciated.
    cheers.
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MDDC; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; Creative AutoUpdate v1.40.02; AskTbMYC-SRS/5.7.1.11118)

    I have had a similar problem with my system. I just recently (within a week of this post) built a brand new desktop. I installed Windows 7 64-bit Home and had a clean install, no problems. Using IE downloaded an anti-virus program, and then, because it was the latest version, downloaded and installed Firefox 4.0. As I began to search the internet for other programs to install after about maybe 10-15 minutes my computer crashes. Blank screen (yet monitor was still receiving a signal from computer) and completely frozen (couldn't even change the caps and num lock on keyboard). I thought I perhaps forgot to reboot after an update so I did a manual reboot and it started up fine.
    When ever I got on the internet (still using firefox) it would crash after anywhere between 5-15 minutes. Since I've had good experience with FF in the past I thought it must be either the drivers or a hardware problem. So in-between crashes I updated all the drivers. Still had the same problem. Took the computer to a friend who knows more about computers than I do, made sure all the drivers were updated, same problem. We thought that it might be a hardware problem (bad video card, chipset, overheating issues, etc.), but after my friend played around with my computer for a day he found that when he didn't start FF at all it worked fine, even after watching a movie, or going through a playlist on Youtube.
    At the time of this posting I'm going to try to uninstall FF 4.0 and download and install FF 3.6.16 which is currently on my laptop and works like a dream. Hopefully that will do the trick, because I love using FF and would hate to have to switch to another browser. Hopefully Mozilla will work out the kinks with FF 4 so I can continue to use it.
    I apologize for the lengthy post. Any feedback would be appreciated, but is not necessary. I will try and post back after I try FF 3.16.6.

  • I am unable to watch Youtube videos on Firefox ?

    I don't know why I am unable to play Youtube videos on Firefox (this problem stated around mid Sept. 2014).
    I explored many solutions but in vain. Firefox/flash (I am not sure) is behaving weirdly, I found some solutions on 'Mozilla Support' when I apply these, I am able to play YT videos but after some time (usually after a re-boot) I get the screen "An error occurred please try again Later" and this cycle repeats. I use a public Wifi/LAN of my university and everyone(using Firefox) has the same problem, and everyone noticed the problem at the same time.
    Some solutions I tried are:
    1. Deleting Cache, Cookies, History etc etc
    2. Uninstalling and Re-installing Firefox and flash.
    3. I do have the latest version of both flash and Firefox
    4. Using Firefox in safe-mode (Sometimes even in safe-mode I couldn't play YT videos)
    5. Disabling Hardware Acceleration (though I use a I5 machine with Windows 7 and Intel(R) 3000 Graphics card).
    6. Tweaking DNS settings (changed my DNS server address to 8.8.4.4 etc)
    7. Degrading to previous versions of Firefox (I used FF 28.0 in Linux worked fine for a while and then the problem repeats itself)
    I am confused, I am not sure where the problem is, because I use Linux(Ubuntu 14.04) and Windows 7 and in both of them Firefox won't play YT videos but Chromium/Chrome does. As I said before videos would play for certain time and then they would stop playing giving me "An error occurred please try again Later......". Another observation is there were only 2 resolutions (1020p and 240p ) available and the result won;t change even if I change them.

    Hi, first of all Thank you for your instant response.
    Yes, I have updated to version 33, Now the problem is not as random as it was before. I found that I have absolutely no issues when I use FF for the first time after starting my computer. At this point there is no issue at all I can watch videos when both logged-in/logged-out and also they work perectly if I switch between flash and HTML5.
    But as soon as I restart Firefox I cannot watch the videos at all. No matter if I am logged in/logged out, I did try HTML5 but still it didn't work. The error message was same in all the cases "An error occurred, please try again later".
    We are secured by "Cyberoam" so I don't have access to proxy sites.
    By the way these observations are for Windows 7.

  • I have Mozilla Firefox and Adobe Flash Player 13 Plug-in won't allow me to watch YouTube videos

    Up until last week I had IE9 and was able to download and watch YouTube videos with my son and play Facebook games.  Then one evening I tried to pull up a Yo Gabba Gabba video on YouTube and the video window was blank.  I had watched this video the night before with him, and the only thing I can think of is there was a Flash Player update that tried to download.  I saw several posts that suggested downloading a new broswer, but I waited for 3 nights thinking it was just a glitch.  I finally gave up and sent a pm to one of my friends who is a Internet Service Technician.  She told me to download Mozilla Firefox, which I did, and the problem seemed to be solved.  I was once again able to download and watch YouTube videos, as well as play games on Facebook.  And it seemed my pages, pictures, etc. all downloaded 10x faster.  That worked until the next evening and suddenly I once again could not download and watch YouTube videos.
    I checked my system and it found that Adobe had done an automatic update so that instead of just having Adobe Flash Player 13 Active X I now had Adobe Flash Player 13 plug-in.  I also noticed that Adobe Air was downloaded on my computer.  I went in and uninstalled the Adobe Flash Player 13 Plug-in and I was once again able to download and watch YouTube videos.  But when I tried to play games on Facebook I was told I would need to install at least Adobe Flash Player 10.0.2.  I went to find that or an older version but each time I tried to download from Adobe I would get the Adobe Flash Player 13 Plug-in version, and once again I was unable to download and watch YouTube videos.  I was, however, able to play the games on Facebook again.
    Remember when I just had Adobe Flash Player 13 Active X I was able to do both while having Mozilla Firefox.  I have looked all over the internet and I cannot find recent articles that talk about this problem.  Can someone please tell me what I can do so that I can keep Mozilla Firefox, as it is 10X faster than IE9 and with Firefox my Facebook doesn't crash all of the time?  But I also want to have the ability to download and watch YouTube videos with my son, as well as the play games on Facebook.
    I should also note each time I went to uninstall Adobe Flash Player 13 Plug-in I received an error message saying there was a conflict with Mozilla Firefox and I first had to shut it down before the uninstall would proceed.  Also, I received a reply on Adobe's Facebook page from a Tech who had me check to see if I had the latest version of Flash Player.  I did have the most recent version.  He then asked me to go to my add-ons and enable Shockwave.  I followed the instructions and it was already enabled (or it said always activate).  Neither of those helped me be able to download and watch YouTube videos.  But I can still play Facebook games.

    What is your current Flash Player version: http://helpx.adobe.com/flash-player/kb/installation-problems-flash-player-windows.html ?
    What is your display adapter, driver version & date?  See http://forums.adobe.com/thread/945765

  • Unable to load youtube videos. Neither browsing nor the youtube app are working, this hapenned after I updated to iOS6

    Unable to load youtube videos. Neither browsing nor the youtube app are working, the video start loading but nothing more happen. This issue is hapenning after I updated to iOS 6.

    Try this first.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.
    And then try this.
    Go to Settings>Safari>Clear History, Cookies and Data. Restart the iPad. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    And ... Are you using the mobile YouTube website?
    http://m.youtube.com/home

  • Is there a way we can edit and improve existing youtube videos by using premiere pro? Just simple changes like having professional looking opening and closing credits?

    Is there a way we can edit and improve existing youtube videos by using premiere pro? Just simple changes like having professional looking opening and closing credits?

    Assuming you do not have access to the "original" video/project and the YouTube video is the only copy, there is a method. Try "YouTube Downloader" which is a free software that allows you to download clips from YouTube as .mp4 files. You can then edit with Premiere, and re-encode again for upload to YouTube. Just keep in mind that you are re-compressing the video so there will be some quality loss. The better the quality of the original, the better the copy will hold up.
    Thanks
    Jeff Pulera
    Safe Harbor Computeres

  • How do I stop Thunderbird playing youtube videos in a tab

    For ages I've been trying to get Thunderbird to work how it used to work but I seem to be fighting a loosing battle. I have done everything I can do to try and stop Thunderbird from ever using tabs. The latest thing I'm trying to stop is Thunderbird playing YouTube videos in a tab. Often I get emails with videos in them that play really small. If I click in the fullscreen option in the video it doesn't work and I've no idea why? So I click on the YouTube link in the video and I want it to open in Firefox. But instead it opens in a tab. This would be okay except that it plays really slowly and I can't reposition the tab. This is one of the reasons why I hate tabs in Thunderbird. I want to read things (or watch videos) in the centre of my screen, not where Thunderbird decides to open a tab, which is usually in the top right of my screen. With a very large screen it is much more frustrating than it would be on a laptop or other small screen.
    Can someone please tell me how to fix this?
    Another thing I would like to fix is the search function. I use search all the time and it is very powerful/useful. But again, when I click on the search results it opens the result in a tab. It would be okay if it opened a tab in the search results window but it opens the tab in the main Thunderbird window. It may also be okay if search opened a tab. But opening search in a new window and then showing the search items in a tab on the main window is just so frustrating. It almost makes me want to stop using search. I looked at using X Search Desktop for search but it no longer supports Thunderbird.
    Again, can someone please tell me how to fix this?
    I absolutely love Thunderbird but I really wish it were possible to roll back the changes that have been made in a number of areas. I spend so much time looking for add-ons just to get it back to how it used to be. With every new version there seems to be another change to the interface. I have to use "manually sort folders" just to get the folders to be in the order I want them. Like everyone else I want the security fixes that come with new versions but I don't want interface changes forced on me for no reason.
    But now so many add-ons seem to stop working with each new release. I used to have an add-on that provided two simple buttons to increase/decrease the text size of incoming emails/RSS feeds. It also allowed me to set the font size/type I wanted for each incoming email/RSS feed and overide whatever was originally set. That stopped working a while back and I'd love to know if there is an alternative. Some RSS feed fonts are now set for smart phones and are simply massive in Thunderbird.
    If anyone can help me with these issues I'd be most grateful.

    You can check the home page (startup) setting:
    *https://support.mozilla.org/kb/How+to+set+the+home+page - Firefox supports multiple home pages separated by '|' symbols
    If you do not keep changes after a restart then see:
    *http://kb.mozillazine.org/Preferences_not_saved

Maybe you are looking for

  • Totals not working correctly

    I am trying to create a calculation by evaluating a set of records and including only those that meet the criteria in the total. The calculation seems to work correctly on the individual records, but the total does not... it seems to be doubling the

  • Get the user group in a JSP portlet

    Hi, I'm developping a JSP portlet and i'd like to know how to get the group of the user ? (the JSP will display URL links only if a user belongs to a specific group). I've seen the objet ProviderUser but it doesn't have methods wich give the user gro

  • How to convert oracle forms in j2ee platform

    hi, i want to know how can i convert oracle forms into j2ee platforms. if is it possible then please tell me the steps that i need to follow . thxs

  • Printer Setup in OPK8 T-code

    Hi, How do we set up multiple printers for a single MRP controller in OPK8 t-code. My requirement is for ZZZ mrp controller i need to set up 3 printers(SOS1,SOS2,SOS3) and number of print out also will changes based on the printer. I tried to config

  • Uninstall adobe photoshop element 12

    After down loading adobe photoshop element 12 on a trial offer. I find no way to uninstall if the discission is made not to purchase the program. Is there a way?