How to "chain" two or more FLV video's so one plays after another?

We want to "chain" multiple FLV video's on the same web page.
We can combine them in my video editor but the resulting file is over 30 minutes long.
But, I'm hopeful that we can do this using code in the web page so...
1 - We convert each AVI video to FLV video and then "publish" it locally to get the associated files.
2 - Then combine the HTML as necessary to have one video play right after the other.
My question is how?
Can I just...
- copy the javascript AC_FL_RunContent code and change the 'name' and 'movie to be the name of the next video.
- and then do the same thing for the object code?
or is there a shorter or more easy way to do this?
Finally, is this the best forum for Flash FLV questions?
Thanks for any help on this.
PS - I know some will want to know why we want to chain short videos instead of just making one long video but the explination is long and will bog down the discussion.

Kglad,
AS_3 I guess.
That is the latest... right?
I'm running Flash CS3 v9 and I guess it will run either... according to the opening screen.
And since I haven't used Action Script before may as well start with the latest.
Thanks for your help.

Similar Messages

  • Streaming two or more flv videos at the same time

    Hi,
    I am working on a site that is intended to stream two or more flv simultaneously. The slightly different header clip should renew on entry to each page.
    When I publish the fla file it plays as intended. When I upload the swf file to the web only one of the videos are playing back.
    It does not matter if I import the video to a timeline, or stream it progressively from the server. Both clips are uploaded.
    I am using CS3 and AS3.
    http://www.doctorhoover.com/marcia/test7.html
    Anyone??
    ggaarde

    Hi!!! hey dogHouseJim!! Could you please post a sample of your fourMovies.swf code to know how you do it?? It would be necessary for me to know how to do it. I'm working in an application that has got two flvPlayback components working at the same time but the main video pauses too many times because the other one is running too. Please help me!!! I post here my code (The main flv is croma_01intro ---> it doesn't work too far, I'm a beginner.. ) Thanks in advance for your help!!!!
    ---CODE---
    import com.hagane.MHU.Timer;
    var timeKeeper : Timer = new Timer();
    video_tmp="flvs/croma_01intro.flv";
    video_tmp2="flvs/presentacion720.flv";
    var conexion2:NetConnection = new NetConnection();
    var conexion:NetConnection = new NetConnection();
    conexion2.connect(null);
    conexion.connect(null);
    var stream2:NetStream = new NetStream(conexion2);
    var stream:NetStream = new NetStream(conexion);
    mi_video2.attachVideo(stream2);
    mi_video.attachVideo(stream);
    stream.play(video_tmp);
    //aseguramos 10 seg de reproduccion
    stream.setBufferTime(4);
    loadMovie("cargas.swf",cargas);
    var n_veces = 0;
    var prueba = 0;
    this.onEnterFrame = function() {
    //obtengo el porcentaje
    var valor1:Number = Math.round(stream.bytesLoaded/stream.bytesTotal*100);
    conexion1 = new LocalConnection();
    conexion1.send("conectar", "estado_carga", valor1);
    delete conexion1;
    prueba = stream.time;
    if ((valor1>=12)&&(prueba>=2)) {
      delete this.onEnterFrame;
      stream2.play(video_tmp2);
      stream2.setBufferTime(15);
      stream2.pause();
      var intervalID_mc : Number = timeKeeper.intervalCall(2000, 0, lanzaEstadisticos);
      n_veces = n_veces+1;
    //funcion para saber que el flv termino
    stream.onStatus = function(infoObject) {
        if (infoObject.code == "NetStream.Play.Stop") {
           //trace("video terminado");
        gotoAndPlay(25);
    //if((infoObject.code=="NetStream.Play.Start")&&(n_veces==0)){
      //stream2.play(video_tmp2);
      //stream2.setBufferTime(4);
      //stream2.pause();
      //var intervalID_mc : Number = timeKeeper.intervalCall(5000, 0, lanzaEstadisticos);
      //n_veces = n_veces+1;
    function lanzaEstadisticos(Void):Void {
    stream2.play(video_tmp2);
    timeKeeper.clearIntervalCall(intervalID_mc);
    stop();

  • HT201368 what if I have two different librarys located in different areas , one on OS another on External. How Do I Join Them Two One Massive libary, As Well As Add More Collections To It, Where Can I Also Setup For Industry M-Audio Axiom 61 3rd Gen Contr

    what if I have two different librarys located in different areas , one on OS another on External. How Do I Join Them Two One Massive libary, As Well As Add More Collections To It, Where Can I retain These Extra Librarys?  Also Setup For Industry M-Audio Axiom 61 3rd Gen Controler...?

    >
    <IfModule mod_weblogic.c>
    WebLogicCluster 127.0.0.1:7005,127.0.0.1:7007,127.0.0.1:7003,127.0.0.1:7103,127.0.0.1:7104
    MatchExpression /app1
    </IfModule>
    <Location /weblogic>
    SetHandler weblogic-handler
    WebLogicCluster 127.0.0.1:7003,127.0.0.1:7005,127.0.0.1:7007,127.0.0.1:7103,127.0.0.1:7104
    DebugConfigInfo ON
    PathTrim /weblogic
    </Location>
    <IfModule mod_weblogic.c>
    WebLogicCluster 127.0.0.1:7003,127.0.0.1:7005,127.0.0.1:7007
    MatchExpression /app2
    </IfModule>
    <Location /weblogic>
    SetHandler weblogic-handler
    WebLogicCluster 127.0.0.1:7003,127.0.0.1:7005,127.0.0.1:7007
    DebugConfigInfo ON
    PathTrim /weblogic
    </Location>
    >
    This configuration is weird little bit. There is MatchExpression /app1 and MatchExpression /app2 and at the same time two <Location /weblogic> sections. Are you sure you understand what that configuration stands for?
    Try something like this ...
    <Location /app1>
    SetHandler weblogic-handler
    WebLogicCluster 127.0.0.1:7003,127.0.0.1:7005,127.0.0.1:7007,127.0.0.1:7103,127.0.0.1:7104
    DebugConfigInfo ON
    </Location>
    <Location /app2>
    SetHandler weblogic-handler
    WebLogicCluster 127.0.0.1:7003,127.0.0.1:7005,127.0.0.1:7007
    DebugConfigInfo ON
    </Location>
    where /app1 and /app2 are contexts of your weblogic applications.
    http://download.oracle.com/docs/cd/E11035_01/wls100/plugins/apache.html
    http://httpd.apache.org/docs/2.0/mod/core.html#location

  • How do i get music videos to play like the music does on my ipad, for example one right after another and shuffle

    I need to know how I can get the music videos on my IPad to play like the music does.  What I mean id setting up a playlist, shuffle, and have them play one right after another instead of going back to the main screen.

    At the top of the playlist where it shows the playlist title and the number of songs, there are two icons. Click the "play" triangle to add the entire playlist to "Up Next", or the "shuffle" symbol to do the same thing but in random order. But the currently playing track will stop playing, and all the songs in "Up Next" will be removed (replaced by the ones from this playlist).
    If you hold down the "option" key while clicking those icons, the currently playing song will continue playing, and the new playlist will be added to "Up Next" (above the songs that were already there).

  • Pack two or more Outbound Deliveries into the one Handling Unit

    Hi Gurus,
    I'd like to, sometimes, pack two or more Outbound Deliveries into the one Handling Unit, can anyone please advise how this can be achieved.
      Thanks in advance

    Hi Simon,
    there's no way you can do that, the HU is owned by the delivery, so the relationship is one to one.
    In order to be able to pack items coming from multiple deliveries into the same HU/HUs you'll have to use Shipments: basically a shipment is made of deliveries and HUs are owned by the shipment, that way you would be able to achieve your result.
    Pls. reward if useful.
    Best regards,
    Enrico

  • Is it possible to combine two or more different apple accounts to one account?

    Is it possible to combine two or more different apple accounts to one account?

    No, you can't combine accounts nor transfer content between accounts - content will remain tied to the account that downloaded it.

  • I took a video with my iphone5 and I don't see it on my iPad. Can videos go from one device to another with iCloud?

    I took a video with my iphone5 and I don't see it on my iPad. Can videos go from one device to another with iCloud?

    No.  Photo stream only streams photos, not videos.  To transfer videos between your devices you can either import them to iTunes and sync them, or (more conveniently) use an app like PhotoSync or Bump.

  • Copy videos taken via one device to another device's Camera Roll

    I would like to share my videos taken via one device to another device. Both devices have the same iOS version 7. How can I copy the videos onto the destination device's Camera Roll where I can delete or edit the videos later? Thanks!

    You can diectly transfer them wirelessly with an App like Photo Transfer or share them with the Dropbox servive.

  • [svn:osmf:] 14600: Fix for FM-463 (DVR: Video doesn' t resume playing after record is resume).

    Revision: 14600
    Revision: 14600
    Author:   [email protected]
    Date:     2010-03-05 08:02:05 -0800 (Fri, 05 Mar 2010)
    Log Message:
    Fix for FM-463 (DVR: Video doesn't resume playing after record is resume).
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FM-463
    Modified Paths:
        osmf/trunk/framework/OSMF/org/osmf/net/dvr/DVRCastTimeTrait.as

    Hey Igor, Welcome to the Nokia Forums!
    Sorry that you have been experiencing problems with the video playback, have you tried performing a soft reset yet? This will not remove any data, only reset the device settings back to how they where when new.
    To perform a soft reset firstly create a backup using Nokia Suite, then type in *#7780# in your phone and the security code 12345 by default if prompted.
    If it does not work, you could also try and download a video playing app from Nokia Store to see if video playback functions better on it.
    I hope this has helped!
    Sheldrick 
    Press the 'Accept As Solution' icon if I have solved your problem, Kudos my post if my advice has helped you!

  • How can I transfer my iTunes library and playlists from one computer to another?

    How can I transfer my iTunes library and playlists from one computer to another?

    Copy the iTunes folder (Mac: Home\Music or PC: My Music) to the same location on the new computer. If an iTunes folder already exists on the new computer (it will on a Mac) replace it with one you copied.

  • How do I copy the same app folder layouts from one device to another? We have a several iphones and ipads.

    how do I copy the same app folder layout from one device to another. We have several apple devices.
    It's a challenge when syncing a device for the first time to go through all the apps and apply them back to the same folders as on your other iphone.
    I've seen suggestions of taking pictures of the correct layout, then manually applying it to the new device. Big time waister.
    What's the work around?
    Thank you

    I'm afraid there is no short workaround. One thing that you could do if you were REALLY desperate is reset your device to factory settings and then restore it from your other device's backup, but that is rather risky and you probably don't want to take your chances just for folder layouts. I would just do it manually.

  • I created a playlist with 100 songs.  I want those 100 songs played using the shuffle option.  This no longer works in iTunes version 11.1.5.5  How can I get an entire  playlist to paly one song after another by using the switch option?

    I created a playlist with 100 songs.  I want those 100 songs played using the shuffle option.  This no longer works in iTunes version 11.1.5.5  How can I get an entire  playlist to paly one song after another by using the switch option?

    You're welcome.
    Going back to your original post:
    5) Tried running Itunes in 'safe mode', running itunes as an administrator..nothing.
    Was that iTunes' safe mode as opposed to Windows' safe mode? iTunes safe mode is invoked by holding down CTRL+SHIFT immediately after clicking the icon to launch iTunes and continuing to hold until this message pops up:
    Click continue, then close iTunes and reopen. With luck iTunes now opens normally every time.
    tt2

  • Help!! As I was scrolling through my library, one folder after another had the photos in it turn to "static"!  Lots of streaks and dots!  What is happening and how do I save my photos?

        As I was scrolling through my Aperture library just now, I saw one folder after another turn the photos in that folder into garbage!   They have lines and dots and nothing recognizable - what in the world is causing this?    Can I get my photos back?    It almost looks like a virus eating my files - could it be - and if it is - is my entire computer in trouble?   HELP HELP HELP!

    Interesting that you posted this Cleaning up photo library about one hour before this post. I'd say there is a good possibility they are related.
    Without knowing your system, OS version and Aperture version and what you were doing to 'clean up' your library there is little we can do.
    My photo library is a mess.  I have moved things around a lot in a futile attempt to organize them, now I have a lot of placeholders with no files attached.  How do I clean things up?
    I suggest you restore from your backup and forgo the cleaning operation until you have a better grasp of the situation.
    BTW the Masters folder is organized by date and time of import at least in Aperture 3, if you are using 2 then all bets are off,
    Good luck with Apple support, if you want to try and get this sorted out post back the information I requested above.
    regards

  • FEBA - How to post two or more transactions at the same time?

    Hi,
        one of our banks sends the statemets with many lines that belongs to the same transaction. We have to post partially one line, and afterwards the other line. Any of you know how to post two lines at the same time from the bank statement?
    Thank you in advance,
    Miguel

    Hi,
    I'm sorry for replying so late.
    The solution I reached was to change the a few things in the standard.
    Now I have a new "context menu item". I select two or more transactions and I right-click the mouse. I select that "context menu item" and the next part of the code adds the total amount of the transactions to look for the correct post for the first transaction. Once posted automatically, the next transaction is posted automatically by the system.
    I hope you understand my English. I've problem with technical FI terms.
    Here you are the code:
    First I added a new contextual menu item:
    CL_FEBAN_ALV_GRID=============CCIMP
    call method e_object->add_function
        EXPORTING
            fcode = 'BS_POST_ITEMS'
            text = text-002.
    *{ INSERT DHTK904078 1
    *--> Miguel Estu00E9vez - 16/06/2008
    * RIPI 24/04/2008 - Conciliaciones
    * Permitir conciliar mu00E1s de un apunte a la vez
        call method e_object->add_function
            EXPORTING
                fcode = 'ZBS_POST_ITEMS'
                text = text-Z02.
    *<-- Miguel Estu00E9vez - 16/06/2008
    *} INSERT
        call method e_object->add_function
            EXPORTING
                fcode = 'BS_KILL_ADVICE'
                text = text-004.
    CL_FEBAN_ALV_GRID=============CCIMP
    when 'BS_POST_ITEMS'.
        call method cl_feban_propagator=>raise_event
            EXPORTING
                i_event = 'POST_ITEMS'
                i_ref_to_item = l_ref_to_item.
    *{ INSERT DHTK904078 2
    *--> Miguel Estu00E9vez - 16/06/2008
    * RIPI 24/04/2008 - Conciliaciones
    * Permitir conciliar mu00E1s de un apunte a la vez
        when 'ZBS_POST_ITEMS'.
            call method cl_feban_propagator=>raise_event
                EXPORTING
                    i_event = 'ZPOST_ITEMS'
                    i_ref_to_item = l_ref_to_item.
    *<-- Miguel Estu00E9vez - 16/06/2008
    *} INSERT
        when 'BS_LOCK_ITEMS'.
            call method cl_feban_propagator=>raise_event
                EXPORTING
                    i_event = 'LOCK_ITEMS'
                    i_ref_to_item = l_ref_to_item.
    CL_FEBAN_PROPAGATOR===========CM001
        when 'POST_ITEMS'.
            raise event post_items
                exporting i_ref_to_item = i_ref_to_item.
    *{ INSERT DHTK904078 1
    *--> Miguel Estu00E9vez - 16/06/2008
    * RIPI 24/04/2008 - Conciliaciones
    * Permitir conciliar mu00E1s de un apunte a la vez
        when 'ZPOST_ITEMS'.
            data: zvalor(1) value '' .
                export zvalor from 'X' to memory ID 'ZFEBA01'.
                raise event post_items
                    exporting i_ref_to_item = i_ref_to_item.
    *<-- Miguel Estu00E9vez - 16/06/2008
    *} INSERT
        when 'LOCK_ITEMS'.
            raise event lock_items
                exporting i_ref_to_item = i_ref_to_item.
    Now, I proceed to calculate the total amount of the selected transactions to look for the correct one to post.
    LNEW_FEBAF01
    *     user parameter
            l_feban_position type c.
            field-symbols: <items> type item_tab_type.
    *{ INSERT DHTK904077 1
    *--> Miguel Estu00E9vez - 16/06/2008
    * RIPI 24/04/2008 - Conciliaciones
    * Permitir conciliar mu00E1s de un apunte a la vez
        data: zvalor(1) value '',
            zkwbtr type kwbtr,
            kwb type kwbtr.
        import zvalor to zvalor from memory ID 'ZFEBA01'.
        if ( zvalor is not initial ).
            if not i_ref_to_item is initial.
                assign i_ref_to_item->* to <items>.
                loop at <items> into h_item.
                    select single kwbtr
                        into kwb
                        from febep
                        where kukey = h_item-kukey and
                            esnum = h_item-esnum.
                            zkwbtr = zkwbtr + kwb.
                endloop.
            endif.
            export zkwbtr from zkwbtr to memory ID 'ZKWBTR'.
        endif.
    *<-- Miguel Estu00E9vez - 16/06/2008
    *} INSERT
        refresh g_picked_items.
        if not i_ref_to_item is initial.
            assign i_ref_to_item->* to <items>.
            loop at <items> into h_item.
                move-corresponding h_item to h_picked_items.
                append h_picked_items to g_picked_items.
            endloop.
        endif.
        submit rfebbu00 and return
            user sy-uname
            with anwnd = r_doc->*-anwnd
            with s_kukey in s_kukey
            with s_esnum in s_esnum
            with buber = g_posting_area
            with mregel = '1'
            with function = 'C'
            with mode = g_mode
            with p_bupro = g_bupro.
    *{ INSERT DHTK904077 2
    *--> Miguel Estu00E9vez - 17/06/2008
    * RIPI 24/04/2008 - Conciliaciones
    * Permitir conciliar mu00E1s de un apunte a la vez
        if ( zkwbtr is not initial ).
            select single kwbtr
                into kwb
                from febep
                where kukey = h_kukey-low and
                    esnum = h_esnum-low.
                    zkwbtr = zkwbtr - kwb.
            export zkwbtr from zkwbtr to memory ID 'ZKWBTR'.
        endif.
    *<-- Miguel Estu00E9vez - 17/06/2008
    *} INSERT
        refresh s_kukey.
        refresh s_esnum.
        clear h_kukey.
        clear h_esnum.
    endloop. "loop over all picked items
    call function 'CUSTOMIZED_MESSAGE'
        EXPORTING
            i_arbgb = 'NEW_FEBA'
            i_dtype = '-'
            i_msgnr = '110'.
    RFEBBU00
    * original transaction currency provided and posting area = 2.
            ftclear-selvon = febep-fwbtr. "INSERT - mpEURO
        ENDIF. "INSERT - mpEURO
        CONDENSE ftclear-selvon NO-GAPS.
    *{ INSERT DHTK903977 1
    *--> Miguel Estu00E9vez - 16/06/2008
    * RIPI 24/04/2008 - Conciliaciones
    * Permitir conciliar mu00E1s de un apunte a la vez
        data: zkwbtr type kwbtr.
        import zkwbtr to zkwbtr from memory ID 'ZKWBTR'.
        if ( zkwbtr is not initial ).
            ftclear-selvon = zkwbtr.
            clear zkwbtr.
        endif.
    *<-- Miguel Estu00E9vez - 16/06/2008
    *} INSERT
    APPEND ftclear.
    ** Begin of comment C5053248
    * perform druck_buzei_ftclear using ftclear-agkon.

  • How to join two or more surveys to one big survey?

    Hello Experts,
    how do I join two or more littel surveys to one big survey with one tile and varios sections and subsections?
    Thanks for help.
    Cristina

    As I did not get any answer, I suppose it is not possible, unless you join the coding.

Maybe you are looking for

  • CAUTION : DO NOT USE LIVE UPDATE OR WINFLASH TO UPGRADE THE BIOS!

    Hello, I've been having trouble with my MSI K8N Neo2 Platinum motherboard a few weeks now. My system configuration is not heavy at all and consists of MSI K8N Neo2 Platinum nForce3 Ultra AMD64 Venice (E6) 3200+ 2 x 512Mb DDR400 Geil RAM 2.5-2-2-5 in

  • Can't send or receive texts on iPhone 5c

    I used to be able to send texts to some people, but not others.  Now after extensive reading and searching online over the last week, I have turned iMessage off, have MMS Messaging turned on, have reset network settings, restarted phone numerous time

  • Adobe Color Printer Utility and PS CS6

    When attempting to print without Color Management in PS CS6 (in the Color Handling section of the Photoshop CS6 Print dialog box) I get a pop-up error message that says I must use the Adobe Color Printer Utility. It refers me to this page: http://hel

  • Has anyone configured a Mail account to connect to a First Class server?

    I have the FirstClass Client on my Mac for School email. Now I want to configure a Mail account using IMAP to connect to the firstclass server at my school so all of my mail accounts can be viewed through the Mail app. Has anyone done this? It would

  • Pages quits on startup with iCloud turned on

    After upgrading my iPad Air 16GB to 7.0.4, iPages would no longer run. The app would start to load then quit. Reloaded the system and restored the software to the iPad and then started Pages. Without iCloud the app would start and run. Turning on iCl