Displaying flv videos on web page

Please help!!!
I am trying to set up a site to display a number of flash
videos (FLV)
I have no problem creating a single instance - but what I
need to do is to have a number of buttons/links on the left and
then all the videos use the same layer/frame/space to play on the
same page.
So - if I click video 1 or 2 3 etc - they will each play in
the same place.
Can anyone help me with this - or send me to the right place
to research - I have googled my problem but cannot find a solution.
Regards
Alex

LexFaure wrote:
> Please help!!!
> I am trying to set up a site to display a number of
flash videos (FLV)
> I have no problem creating a single instance - but what
I need to do is to
> have a number of buttons/links on the left and then all
the videos use the same
> layer/frame/space to play on the same page.
> So - if I click video 1 or 2 3 etc - they will each play
in the same place.
> Can anyone help me with this - or send me to the right
place to research - I
> have googled my problem but cannot find a solution.
> Regards
> Alex
>
Try this FLV player:
http://www.jeroenwijering.com/
Roy

Similar Messages

  • CS6 - Trouble displaying Flash video in Web pages

    Hi,
    Here's my problem: I embedded .flv videos in HTML pages the same way I've been doing it for years. It worked fine until I moved to CS6.
    The last video clips were edited and encoded in Flash format (1024x576 for 1800 bps) in Premiere CSS6 then embedded in HTML pages in DW CS6 after creating the .swf files with Flash CS6. All CS6, no compatilbity problems then.
    Once onlie, they fail to display properly, i.e. you have to click a couple of times on the Start/Pause button and occasionally refresh the page to be able to view the video. It's works fine once started but the trouble is getting it to start automatically.
    There's over 300 videos ranging from a few seconds to about 15 min on this site, and this is the very first time I come across this kind of problem.
    Any suggestion?
    Here's on of the old videos: http://www.aquiceara.com/UK/Video/Bresil_Maranhao_Survol_Lencois.html
    And here's one of the CS6 "troublesome" videos: http://www.aquiceara.com/UK/Video/Chine_HK_Tai_Hang.html

    The answer is to exactly copy the code from the CS5.5 and below versions of Dreamweaver.
    Bu Nancy is correct. Everyone is moving to other standards for video on websites. Nancy generally recommends Pickle Player and I have been hand-coding using the HTML5 standards. I have generally found that all videos play in all browsers using the new standards, though you do have to support OGG and WEBM video files on your server.

  • Display FLV file on web page - what code is needed

    In Premiere Elements 7 I used the share option to make a .FLV file to place on a web page. What code is needed to display this file? What other steps are needed to have the file play on a web page? I get the ides that I need to embed a played on my web page, how do I do that? I find no help in the premiere elements help file.
    thanks
    Al

    Maybe you should ask in the Premiere Elements forum http://forums.adobe.com/community/premiere/premiere_elements ?

  • Help in retrieveing Blob from Oracle db and display it on a web page

    I am using Sun Studio creator2 and this is what I want to achieve:
    When I click on "Load" button, the image is displayed on the web page(the application is a web application)
    I have dropped the "image" object from the pallette
    Having the database image displayed in the image field, when I enter the image ?Id? and click on the ?Load? button.
    Here is my piece of code:
    public String loadButton_action() {
    HttpServletRequest request = null;
    HttpServletResponse response = null;
    String connectionURL = "jdbc:oracle:thin:@//localhost:1521/cdecentre1";;
    /*declare a resultSet that works as a table resulted by execute a specified
    sql query. */
    ResultSet rs = null;
    // Declare statement.
    PreparedStatement psmnt = null;
    // declare InputStream object to store binary stream of given image.
    InputStream sImage;
    Connection connection = null;
    String driverName = "oracle.jdbc.driver.OracleDriver";
    String dbName = "cdecentre1";
    String userName = "christian";
    String password = "cc";
    String theid = (String)idField.getValue(); //reading the image id
    try{
    Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
    connection = DriverManager.getConnection(connectionURL, userName, password);
    /* prepareStatement() is used for create statement object that is
    used for sending sql statements to the specified database. */
    psmnt = connection.prepareStatement("SELECT image FROM CHRISTIAN.PICTURES WHERE id = ?");
    psmnt.setString(1, theid);
    rs = psmnt.executeQuery();
    if(rs.next()) {
    byte[] bytearray = new byte[1048576];
    int size=0;
    sImage = rs.getBinaryStream(1);
    //response.reset();
    response.setContentType("image/jpeg");
    while((size=sImage.read(bytearray))!= -1 ){
    response.getOutputStream().write(bytearray,0,size);
    rs.close();
    psmnt.close();
    connection.close(); } }
    } catch(Exception ex){
    System.out.println("error :"+ex);
    return null; }
    At the moment, when I click on the ?Load? button, the image is not present in the image field.
    I am only obtaining a message inside the message component.
    What should I do to have the image displayed in on the web page?
    Your help will be highly appreciated.

    A comprehensive dissertation from Javaworld: http://www.javaworld.com/javaworld/jw-05-2000/jw-0505-servlets.html
    Published 05/05/2000, ergo Java 1.0/1 era... still a valid explanation of the problem and the fundamental solution, but take the code (esp ImageIO) from here
    http://blog.codebeach.com/2008/02/creating-images-in-java-servlet.html
       1. package com.codebeach.servlet; 
       2.  
       3. import java.io.*; 
       4. import javax.servlet.*; 
       5. import javax.servlet.http.*; 
       6. import java.awt.*; 
       7. import java.awt.image.*; 
       8. import javax.imageio.*; 
       9.  
      10. public class ImageServlet extends HttpServlet 
      11. { 
      12.     public void doGet(HttpServletRequest req, HttpServletResponse res) 
      13.     { 
      14.         //Set the mime type of the image 
      15.         res.setContentType("image/jpeg"); 
      16.  
      17.         try 
      18.         { 
      19.             Create an image 200 x 200 
      20.             BufferedImage bufferedImage = new BufferedImage(200, 200, BufferedImage.TYPE_INT_RGB); 
      21.  
      22.             //Draw an oval 
      23.             Graphics g = bufferedImage.getGraphics(); 
      24.             g.setColor(Color.blue); 
      25.             g.fillOval(0, 0, 199,199); 
      26.  
      27.             Free graphic resources 
      28.             g.dispose(); 
      29.  
      30.             //Write the image as a jpg 
      31.             ImageIO.write(bufferedImage, "jpg", res.getOutputStream()); 
                        ////////////// NICE !!!! //////////////
      32.         } 
      33.         catch (IOException ioe) 
      34.         { 
      35.            e.printStackTrace();
      36.         } 
      37.     } 
      38. }  Edited by: corlettk on 19/01/2009 23:22 ~~ {color:#FF0000}Never{color} eat an exception!

  • Flash video on web page takes long very time to load before it starts playback

    I just created a basic flash file to play a video on my web page and it's taking several minutes to load before it starts playback.
    I'm using progressive downlaod and the file is in *.mov format and is 84MB in size. At first that seemed large to me for web play back, but I thought it could handle it since I thought the way progressive download works is that it would start playing the first frame right away and progressively play other frames as they download. However, this seems to be downloading the whole file first (or a major part of it) before starting any playback at all.
    Is there some kind of setting I'm missing or is my understanding of the download incorrect and the file size is too large?
    Some vitals:
    - I'm using Flash Pro CS5
    - To create my flash file, I used the standard import video wizard and selected the a file that is "on my computer" and "load external video with playback component" and then, I selected one of the standard skins.
    - To deploy the vidoe on my webiste I have three files:
    1) swf file containing the FLV component
    2) the swf file related to skin
    3) the actual video (84MB, mov file)
    - Web page includes/embeds reference to swf file

    Thanks for your response again. Looks like things have changed a bit to complicate this a little more.
    adninjastrator wrote:
    Are you saying that if I wait long enough it will start to play .... from the link you posted?
    What you are implying here is correct. The file won't play no matter how long you wait.  Looks like it's because of the "source" file settings in the Import Wizard may now be incorrrect. This is why it's not playing in the new file. 
    When I created my original Flash Video using a MOV file, during the import wizard, when asked "Where is your video file?" I selected the option "Already deployed to a web server...". Here I entered the url to where the video file is located on my production server.
    When I created the new Flash Video using F4V file, during the import wizard, when asked "Where is your video file?" I selected the option "On your computer". Here I selected the file from my local drive.
    Sorry for not pointing out the inconsistency earlier - I didn't think it mattered and plus I couldn't get the F4V file to import from the web server.
    Anyway, I've changed my object tag using the acutal published html that flash generates and have uploaded all source files to same location.
    http://www.upperhand.com/tv/video-intro.html
    To sum up the problem(s) I need help with:
    Issue #1 - When trying to import F4V file using import wizard, I cannot use "Already deployed to a web server..." as an option for the file location. I believe this is creating issue #2
    Issue #2 - For some reason, the F4V file will not load into the SWF file when it's published to my production server. 
    It works when viewing locally through browser as c:\inetpub\wwwroot\mywebsite\video-intro.html
    It doesn't work when viewing on development server through browser as http://localhost/mywebsite/video-intro.html
    It doesn't work when viewing on production server through browser as http://www.mywebsite.com/video-intro.html
    Issue #3 - When the above are resolved, I'm not certain if my orignal question/issue will be resolved...  browser tries to downlaod full file before any playback.  

  • Embedding QuickTime Video om Web Page

    Hello,
    Thank you in advance for any help someone can provide. I am trying to embed a quick time movie on a web page. I have received the reference file from the company that will host the quick time movie and I successfully can embed the movie. How do I embed the movie with a frame of the movie with the controller to display when a visitor initially visits my page? Do I need to have the reference file recreated?

    http://www.oreillynet.com/pub/a/javascript/excerpt/learnwebdesign_chap22/index.html
    scoot down the page and you will see
    Use the autoplay parameter and attribute to set whether the
    movie starts
    playing automatically when the page loads (true) or if the
    user needs to hit
    the Play button to start the movie (false).
    regards
    kenny
    "Chris Jumonville" <[email protected]> wrote in
    message
    news:elqq1l$27f$[email protected]..
    > Simple question. I have a quicktime .dv video on my site
    and I want to
    > embed it on a page so when you click on the page it
    automatically brings
    > up the movie on the page but doesn't start it
    automatically, you have to
    > start it manually. How do I do this?
    >
    > --
    > Best Regards,
    >
    > Chris Jumonville
    >

  • Flv Video inserted into page by Dreamweaver won't play or show up on page??

    The following code was inserted into a web page for a site I am trying to build in Dreamweaver CS5.5, but the video clip does not show up when I try to view the page in browser:
    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="202" height="231" id="FLVPlayer">
            <param name="movie" value="FLVPlayer_Progressive.swf" />
            <param name="quality" value="high" />
            <param name="wmode" value="opaque" />
            <param name="scale" value="noscale" />
            <param name="salign" value="lt" />
            <param name="FlashVars" value="&amp;MM_ComponentVersion=1&amp;skinName=Halo_Skin_2&amp;streamName=Globetrottin.fl v&amp;autoPlay=false&amp;autoRewind=false" />
            <param name="swfversion" value="8,0,0,0" />
            <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
            <param name="expressinstall" value="Scripts/expressInstall.swf" />
            <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
            <!--[if !IE]>-->
            <object type="application/x-shockwave-flash" data="FLVPlayer_Progressive.swf" width="202" height="231">
              <!--<![endif]-->
              <param name="quality" value="high" />
              <param name="wmode" value="opaque" />
              <param name="scale" value="noscale" />
              <param name="salign" value="lt" />
              <param name="FlashVars" value="&amp;MM_ComponentVersion=1&amp;skinName=Halo_Skin_2&amp;streamName=Globetrottin.fl v&amp;autoPlay=false&amp;autoRewind=false" />
              <param name="swfversion" value="8,0,0,0" />
              <param name="expressinstall" value="Scripts/expressInstall.swf" />
              <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
              <div>
                <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
                <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>
              </div>
              <!--[if !IE]>-->
            </object>
            <!--<![endif]-->
          </object>
    I don't understand this. I am not a code expert by any means, but I was told that by purchasing the Deamweaver software I would not need to be a web developer to make a site?? The remainder of the site looks great, but I need to insert some video clips on this one page and it won't do it. Please help me!!

    Go to Sites > Manage Sites > Edit your site definition settings.  If you haven't defined a site yet, Hit NEW and set-up your Local Info first. 
    Then, select Remote Info (it's in the Advanced panel). 
    Fill in the fields with the log-in details your host sent you.   This is how DW will connect you to the remote server. 
    NOTE: my screenshot looks different but you get the general idea.
    Hit OK.
    Select your test page in the Files Panel and hit the UP arrow to upload your page & dependant files to the remote server.   As Hans said earlier, you need all four files to support Flash Video.
    Come back and post the URL to your page.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/

  • Float Video over web page

    Hello all -
    I would like to float a video over a web page, so that when
    the web pages is scrolled the video remains on the screen. I have
    contacted technical support and was told this involved Div tags,
    and CSS. Both of which I'm fairly familiar with. However, they did
    not tell me how to do this, but referred me here.
    I have a video that has been converted to an FLV with a
    transparent background. I have the web page and the video plays on
    it just fine. Now, I need to be able to scroll the web page while
    the video 'floats' on top the screen.
    Can any one help? PLEASE?
    Many thanks!
    D-

    If you don't have to worry about IE6 or earlier, you can use
    the CSS style
    for position:fixed, as is done on the
    http://www.csszengarden.com
    page for
    the Eric Stoltz design.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "deborah@schmidtdesig" <[email protected]>
    wrote in message
    news:g9p5dh$k1e$[email protected]..
    > Hello all -
    >
    > I would like to float a video over a web page, so that
    when the web pages
    > is
    > scrolled the video remains on the screen. I have
    contacted technical
    > support
    > and was told this involved Div tags, and CSS. Both of
    which I'm fairly
    > familiar with. However, they did not tell me how to do
    this, but referred
    > me
    > here.
    >
    > I have a video that has been converted to an FLV with a
    transparent
    > background. I have the web page and the video plays on
    it just fine.
    > Now, I
    > need to be able to scroll the web page while the video
    'floats' on top the
    > screen.
    >
    > Can any one help? PLEASE?
    >
    > Many thanks!
    > D-
    >

  • Settings for Exporting DVD Video to Web Pages

    I have some short family dvd's that I want to export to some web pages.
    What's the best method to :
    1 extract the dvd content
    2 create media for web viewing
    BTW: I think I'd rather use MP4 with h.264 (rather than .flv) for this set of media
    Q :
    1 - what are the best apps for extracting from dvd and then encoding the MP4
    (handbrake - quicktime - squeeze etc?) mac is preferred - or pc is ok too
    2 - for the 'average' dsl/cable connection what are the best (safest) video frame sizes and bitrate settings ... I was thinking something like:
    480x320 and bitrate xxxx?
    or can I go as big as
    640x480 and bitrate xxxx?
    Thanks in advance for the help....

    Do a Google search for DVD Ripper.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • How do I get a 'insert - hyperlink - file' to display in a new web page?

    When I insert the link to a downloadable file, that's fine.
    But I'm losing my eyeballs because iWeb uses the same webpage to open my downloadable file.
    The option to check, 'open in new web page' is not appearing.

    Welcome to the Apple Discussions. You need to first upload the file to your server and use the URL to the file at that location as the link to external page option of the Inspector/Link/Hyperlink pane. If the browser supports displaying the file type it will open in a new window.
    Click to view full size
    OT

  • Embedding Video in web page for iphone

    Does anyone know of any good/favorite resources that do a walk-through on how to embed video into a web page so that it plays properly on the iPhone?
    Thanks.

    Jacques ~ Welcome to the Support Communities. We're just users like yourself here — so we don't know what Apple's plans are. Alternatives to iWeb adapt their site content to smartphones, e.g.
    http://blog.weebly.com/2/post/2010/12/your-websites-are-now-mobile-friendly.html
    And iWeb's future is unclear:
    https://discussions.apple.com/message/15500319#15500319

  • Video to web page

    Has anybody any experience of how to get video from Nokia PT-6 via nokia compatible mobile onto a web page in the manner of say streaming source material - have all the equipement which works in that it sends me emails containing either my output of video or images - what I want to do is set up my web page to recieve and broadcast automatically this same information. I have my own extensive independant pages and associated email
    see >http://www.hawar-islands.com/blog/home_stub.php

    Upload the Scripts folder to server.
    --Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com
    "ryonker" <[email protected]> wrote in
    message
    news:g2mpvv$3j3$[email protected]..
    > Hi Everyone,
    >
    > I have a web page that I have added a flash video to
    using the insert
    flash
    > video option in Dreamweaver. I uploaded all the files
    including the
    additional
    > files that are created when you use that option and when
    I try to get to
    the
    > video file once I have uploaded it will not play. If I
    use a link directly
    to
    > the .swf then it will play but the link to the page
    where the video is
    inserted
    > just shows a blank page. Can anyone give me any guidance
    on how I can get
    this
    > to work.
    > P.S. If I preview it from my desktop before uploading to
    the website it
    works
    > fine.
    >
    > Thanks,
    > Robert
    >

  • Playing video in web page instead of full screen

    There is no "web authoring for iPad" forum. So I apologize for posting in the inappropriate section.
    I have a web page with multiple video feeds, each with its own playlist, all playing at the same time. This works well with computer browsers. But the iPad/iPod/iPhones keep opening one video full screen. Is there a way to get the videos to play in their place on the web page instead?

    Only the iPad is capable of playing videos in place. iPhone and iPod Touch will always open videos in a separate Quicktime window. I don't believe you have to do anything special for the video to play in place on iPad. Just embed the video as normal.

  • Embeding video in web page

    Hi all,
    I'm a bit confused with video on iphone.
    iphone does not want to play a video (m4v created with qt pro) when it's embed in web page (html tag "embed" with attribute type "video/x-m4v").
    But the SAME video send to iphone with itunes plays!!
    What I'm missing?
    Any idea?
    Thanks.

    does the video conform to these specs:
    H.264 video, up to 1.5 Mbps, 640 by 480 pixels, 30 frames per second, Low-Complexity version of the H.264 Baseline Profile with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats;
    H.264 video, up to 2.5 Mbps, 640 by 480 pixels, 30 frames per second, Baseline Profile up to Level 3.0 with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats;
    MPEG-4 video, up to 2.5 Mbps, 640 by 480 pixels, 30 frames per second, Simple Profile with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats

  • Quotation marks display as &quot in web pages, I'm using Unicode UTF-8 character encoding.

    On many web pages, where a quotation mark character should appear, instead the page displays the text &quot. I believe this happens with other punctuation characters as well such as apostrophes although the text displayed in these other cases is different, of course. I'm guessing this is a problem with character encoding. I'm currently set to Unicode (UTF-8) encoding. Have tried several others without success.

    Here's a link where the problem occurs. Note the second line of the main body of text.
    http://www.sierratradingpost.com/lp2/snowshoes.html
    BTW, I never use IE, but I checked this site in IE and it shows the same problem, so maybe it is the page encoding after all rather than what I thought.
    In any case, my thanks for your help and would appreciate any solution you can suggest.

Maybe you are looking for

  • Select from dual  into a variable through db links

    HI,I need to select value of current_timestamp in to a variable d1 of a remote database inside function. function (db_lnk varchar2)return number as dbl varchar2(10); begin dbl:=db_lnk; select current_timestamp into d1 from dual@dbl; end; but getting

  • Finally found a solution to photos appearing correctly in Contacts!

    I'm just posting this to hopefully help others who may be struggling to get photos to appear in the contacts section of their iPod. I've got a 5th gen iPod, and I had no problem importing contact information to it from Address Book, including the pho

  • Sync calendar w/ Lotus Notes?

    At work I have to use Lotus Notes. I have installed HTC Sync but the only option to sync is w/ Outlook. How can I sync it with Lotus Notes  8.5.1? 

  • Related to bapi and badi

    as i was a fresher to bapi and badi concepts, and now i want to learn and work on these concepts. so pls any one can suggest how to follow in the way of learning and any meateril links also .... pls froward me for both BAPI AND BADI pdf's word docs,p

  • How to Lift/Stamp specific adjustments

    How do I pick for ex. only Saturation or contrast, with the lift/Stamp tool. Not all of the adjustments in Exposure.