FLVPlayer with Multiple Videos - via buttons

I have my stage with the FLVPlayer and its easy enough to get it to play one video, but I have a series of buttons on the right hand side (day1, day2, day3.. etc).
How can I go about getting a button click to change the FLV srouce and begin playback?
And do I need to stop the loading of the previous video, or is that handled automatically?
I've been looking for a tutorial on something like this, but have yet to find it...
Thanks so much!
-Austin

just assign (or re-assign) the source property of your flvplayback instance.

Similar Messages

  • Schedule Jobs with multiple steps via ABAP Program

    Hi,
    I need to schedule multiple programs via background jobs on a daily basis. Since all these jobs are to be run as a single job, the various programs have to be run as steps in a major job.
    I am however not very clear on how this can be done via an ABAP program ( the idea of a program is that various parameters to be passed to each program in the step can be entered dynamically rather than via variants).
    I am using the JOB_OPEN and JOB_CLOSE functions and submitting the programs with selection screen parameters dynamically passed to create a job. I need to do this for various programs as a job step (WITHOUT Variants being defined).
    Can anyone suggest any ideas for this? I have tried out JOB_SUBMIT Function but am not very confident I know what exactly it is for as it asks for a variant.
    Thanks very much,
    Preet

    Hi Preet,
    just to be sure: you know, that variants can be dynamical, too?
    It's quite usual to assign dynamical current date, but it's also possible to add / subtract value and even define own functionality.
    Maybe it's easier to implement a dynamical selection and handle static jobs.
    If you try to plan a job (online or with JOB_SUBMIT), you have to use variants - you can create (or change) them dynamical in beforehand. Only SE38, F8, F9 is creating a temporary variant, so that no saved variant is necessary.
    But if you end up creating variants dynamical, you can change one existing variant, too. Then you can use a static job definition (with periodical starting rule).
    So: have a look, if dynamic variants are enough, otherwise change variants per job.
    Regards,
    Christian

  • Mkv with multiple video tracks

    Hi. I have a load of Matroska files which contain a few (about 5) short video clips and an audio track. The video clips in each file are of the same event from different angles, so I want to watch all clips simultaneously. I have installed Perian and while the files open, I can only see one track, and I don't hear any audio. (MKVinfo tells me there are definitely multiple tracks.) Is it possible to use Perian/QuickTime to watch all video tracks simultaneously? If so, I can't figure out how, so I'd appreciate any pointers.
    I've tried VLC, and while this also opens the files (and shows all tracks), it invariably crashes soon after opening.
    If anyone has any other suggestions how I might solve this, that would be great too.
    Thanks in advance,
    wrathkeg

    It could be a 'difficult' form of Matroska file. FYI Matroska is just a container like MOV or AVI, and some mkv have the video encoded with Real Video Codec (RV9 RV10). Perian+QT can't decode this, but VLC will play .mkv files just fine on OS X, as long as they don't use H.264!
    It's a bit of a lottery until Matroska decide to support the Apple platform. I have found this:
    http://mkv4mac.free.fr/index.php?lang=en&p=lec
    which may help.
    But there may be another workaround: 1. Get Info the mkv file
    2. Change to extension to wmv. Save as wmv and that could work better.
    Or this link may be helpful:
    http://www.squidoo.com/mkv-converter-mac
    Recently, a poster (ZachP14) suggested this:
    "There's a program called Plex that runs .mkv files awesome on my 2.0 ghz macbook."
    http://www.plexapp.com/
    Maybe worth a try?

  • How to control one server with multiple clients via TCP/IP

    I am wanting to control a single server with multiple clients.  Only one client would be active at a time, so there would be no conflict.  I want to use TCP/IP.  So far, I have programmed a cluster that passes data back to the server with no problems.  The challenge come in when a second client is added to the mix.  I have't been able to figure out how to turn each client on and send the appropriate data and then turn it off so it doesn't keep sending the same data to the server. 
    Here are the things that I have considered and did some preliminary testing, but don't really know how to impliment:
    1.  Send a numeric on the front of the cluster packet that tells the server that data is on the way.
    2.  Send a boolean on the front of the cluster packet to somehow turn the server TCP/IP on.
    The problem I have found is that LabVIEW TCP/IP doesn't like to be turned on and off.  If it doesn't get the data it expects, it goes into a reset mode and that kills the response time.
    Any help?

    You should consider implementing a set of simple one-byte commands that can be sent back and forth between the Server and the Clients. You can base all of these ideas off the example in the Example Finder under Networking >> TCP and UDP called Multiple Connections - Server.
    You will have two loops in the server VI: one to wait for new connections, and one to send and receive data from the existing connections. For instance, after one of the clients connects, it can request control of the server to send data to it by sending the character "R" for request. Every time the send/receive loop of the Server executes, the first thing it can do is to check all the existing connections to see if any of the clients have sent a control request ("R"). If so, it will create a buffer (array) of control requests. This could be in the form of Connection IDs or indexes in the array for a particular Connection ID. Your choice.
    After the Server receives a request for contol, if it is not already under control by another client, then it can send a response to the first client on the control request list. For instance, the server could send the first client a "S" command for send. Note that after the clients send their control request, they should execute a TCP Read and wait indefinitely for the server to respond with the one-byte "S" command. Then, once the client in control is finished sending data to the server, it could send the character "X" telling the Server to release it from control.
    The example I mentioned above already does a similar thing. Note how when a client wants to disconnect, they send the letter "Q". You can see this in the Multiple Connections - Client VI. The Server then checks each individual connection to see if it's received this one-byte command, and if it has, it closes the connection to the client. This is what you would want to implement, but instead of having just one command, you'll have to distinguish between a few and build up a buffer of control requests.
    Finally, if a client does decide to disconnect in your application, they could send the command "Q" just like the example above. At this point, close the connection and remove that Connection ID from the array of connections. You will also have to handle the case that this client was in the request control waiting line when it disconnected, in which case you need to delete it from that array as well.
    This will definitely work for you, but it will take some work. Best of luck!
    Jarrod S.
    National Instruments

  • Schedule a Job with multiple steps via ABAP Program

    Hi Friends,
    I want to create a report(Ex: ZREP) that will run another program(Ex: ZPGM) in background. What I need to do is, when I execute the report ZREP it should run the ZPGM automatically in background. This background execution should happen through JOB with multiple steps.
    Why i am mentioned steps is, i have 1000 records in ZTABLE and need to execute 100 records each in one step and need to proecess in ZPGM with selection parameters. So in my case my job should create with 10 steps and need to execute in sequential manner.
    FYI, In the ZREP selection screen i need to enter the records count/ interval to derive the job steps.
    Please guide how to go ahead? Thanks in advance for all the help.
    Regards,
    Raghu.

    Hi Raghu,
    You can try the following pieces of code:
    Loop at gt_table.   "This table contains 100 records previously appended
    w_jobname = c_job_emision   "Job Name.
        CALL FUNCTION 'JOB_OPEN'
          EXPORTING
            jobname          = w_jobname
          IMPORTING
            jobcount         = w_jobacount
          EXCEPTIONS
            cant_create_job  = 1
            invalid_job_data = 2
            jobname_missing  = 3
            OTHERS           = 4.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
    * Perform or create T_SELTAB with parameters options
    PERFORM Create_seltab_table.
    *Call second program.
    SUBMIT ZREP WITH  SELECTION-TABLE t_seltab AND RETURN.
    *Close Job.
        CALL FUNCTION 'JOB_CLOSE'
          EXPORTING
            jobcount             = w_jobacount
            jobname              = w_jobname
            strtimmed            = c_x  "Immediate Start
         EXCEPTIONS
            cant_start_immediate = 1
            invalid_startdate    = 2
            jobname_missing      = 3
            job_close_failed     = 4
            job_nosteps          = 5
            job_notex            = 6
            lock_failed          = 7
            OTHERS               = 8.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
    ENDLOOP.
    Hope this helps.
    Regards
    Ernesto
    PS: Raymond Giuseppi was faster.
    Edited by: Ernesto Caballero on Mar 10, 2010 1:57 PM

  • Quicktime with multiple videos

    Is it possible to have multiple videos play in the same player? I want to create a webpage that will allow the user to view different clips in the same player.
    Thanks...

    Use Pageot to build your play list html code for what you want to do...
    http://www.qtbridge.com/pageot/pageot.html
    It's free........

  • How do i create linked pages with multiple video clips on each of them?

    I took a bunch of small videos with my digital camera, and now want to make a dvd that has a main menu with 7 choices, and then each one of those will take you to pages with each clip as a motion button (6 to a page). So if i click on "Dublin" on the main menu, it takes me to Dublin #1 which has clips 1 - 6, i can then click on an arrow to go to a second page with clips 7 - 12, etc. I can return to the main menu and click on "Belfast" which takes me to the first page of 6 clips, then a second page with 6 more, etc.
    The problem I am having is linking two or more Chapter pages together. Thanks for your help.
    Eric

    Welcome to the forums, Eric.
    iDVD has a few limitations, but you can do much of what you want.
    Limitations: Only 6 selections per menu page. And the Forward/Backward selection buttons advance only one menu at a time.
    Basic solution: Use the folder button to create a link to a submenu; move to that submenu and drag your movies onto that menu page. Repeat for more submenus.
    Alternative approach: Use iMovie to join all the Dublin videos, with chapter markers to designate each segment. Import the movie with chapter markers into iDVD and they automatically create the Dublin submenus. And you can watch all the Dublin videos in a row, or use the menus to navigate to the desired video. After you watch the last segment, you'll automatically return to the main menu.
    John

  • Problem with playing video via composite av cable on iPod classic 2009 model 160gb

    Things went well, after  purchasing the new Ipod classic 160 gb i tryied to watch movies on my LED TV via Composite AV Cable.  I did it once. Everything worked correctly & I was able to see my photoes, watch movies.  Today i tryied to connect it again to the TV via av composite cable. The TV Out was switched on. But i could hear only audio. No video. I tryied all possible configs for Ipod an for tv set & no result. If i choose on my Ipod to ask me  first if i want to switch on the AV out, the Ipod shows me a message that i should connect the video accessory (but it  is already connected!). If i choose simply to switch on the TV Out without asking  me it will play either sound only on the TV, either the playback on the Ipod is ending after 20 seconds of show time.
    Without AV Cable connected Ipod is working normaly in terms of video playback. Also the device is working normally with the ITunes.
    Please help. Where is the problem. The AV composite cable? TV set? Or iPod itself?

    Hi Rusbug,
    I am having the same issue with my iPod Classic 160gb not playing video on the TV via Composite cable as you posted in march!
    did you get a solution for the issue??
    desperate to know what to do next.
    thanks

  • Problems with Long Interactive PDFs with Extensive Interactivity via Buttons and Hyperlinks

    I have inherited a project which requires the creation of large interactive pdfs with lots of buttons and hyperlinks. I am having continuing problems with buttons not working and long periods of wasted time as attempted exports fail.
    Background:
    The largest books range from 264 MB to 411 MB – (764 to 1024 pages).  Per book, the maximum number of buttons on each page is 16, linking separate files (subsections) in the book via text anchors.  The buttons are created using Master Pages which are set for each file (subsection) in the book.  50% to 60% of the pages in each file (subsection) will also be referenced as 2 hyperlinks.  One is the source page hyperlink on each workflow and the second is a listing on the source page as a possible navigation path. I have created hyperlink destinations for each page which is used to generate the source and navigation hyperlinks.  With 2 hyperlinks representing 50%-60% of the pages - that means the largest book contains a maximum of 1200 hyperlinks.  Each file (subsection) also has it’s own separate TOC and the bookmarks that are created  (optionally) during the TOC creation process.   As currenlty formatted, the book is primarily images of workflows which mean 50%-60% of the pages contain pdf images.
    Several questions:
    1.  How do I get my buttons to work consistently?  There is nothing worse than working hard and then ending up with faulty product.  I have been thinking about combining all the files into 1 document per book.  Then I could change the buttons to objects, add a hyperlink over each one and set them for a specific hyperlink destination.  Can I do that if the buttons are on Master Pages?  Can InDesign handle a document with 1024 pages?    I can't fix the problems in Acrobat later because it would mean 1024 fixes for just 1 button correction.
    2.  How do I stop InDesign from freezing when exporting these large pdfs?  It seems to wait until the final steps to crash which sometimes means a 4-6 hour waste of time per export. 
    3.  Are we making a mistake using pdfs as our workflow images?  I'm not pleased with the quality of the images we have and wonder if we switched to another image format if this would improve the results.   Would it be worth the effort and relinking?  I have been reading different information on what the preferred source image format is for InDesign.  One article I found yesterday says using pdf images is a problem.  Another site said the Photoshop, TIF and JPG are preferred but PDFs were also acceptable.
    4.  Do I need to propose scrapping InDesign as the source of the project?  If so, what application can better meet my needs?

    Those are the limitations you have to put up with.
    Apple doesn't follow the PDF spec. It chooses which PDF features it will support.
    As to the version number (v5 or v6 or the new multimedia features in v9), there is different support in different versions of Reader/Acrobat as the product has developed. You just need to post a message to downloaders that they need to view the file in Adobe Reader version X or above to get the best experience.
    Other industry standards face the same problem: How can you add new feature like multimedia? You can't always be backwards compatible.

  • How to create a DVD with multiple video projects

    I want to burn a DVD with several short video projects so that it will run without stopping in between.

    Hi
    *Play all resp one chapter at a time*
    Play All Button
    1. There are NO - Play All - button in any version of iDVD
    2. It can be faked in several ways
    • Easies and most fault proof way is to make a doublet movie containing All and with
    Chapters set to match. It will take up x2 space but is easy to understand and produce.
    • It's said that one can put all movies into a Photo/SlideShow and this will also
    give the function of a Play All button - Never tested though.
    • Using another program to do this eg. Roxio Toast™ where there ia a Play All button option.
    Mike Evangelist1
    You might be able to get close to what you want by using a slideshow in iDVD. (It's not widely known, but you can put videos in a slideshow.) If you set the slide duration to manual, playback will pause after each movie/slide, and you can continue with the 'next' button.
    Yours Bengt W

  • Problem with broadcasting video via Skype?

    I have a new 11 inch MBA and logged into a Skype session and got audio, though it would not broadcast video of me. I logged out and logged back into a new session with the same result, I had to enter a Skype session with my Macbook Pro because it wouldn't work.
    Anyone have any ideas on this?
    Thanks.

    Hi Rusbug,
    I am having the same issue with my iPod Classic 160gb not playing video on the TV via Composite cable as you posted in march!
    did you get a solution for the issue??
    desperate to know what to do next.
    thanks

  • Problems with multiple videos

    We would like to add some "help" tutorial videos to our models.  The first video that I added worked perfectly; the flash player controls appeared as they should at the bottom of the video and I'm able to start and stop the video as needed using these controls.
    The problem comes when I try to add a second video.  When playing the second video, the flash player controls at the bottom do not appear.  The video starts playing immediately with no way to stop it.  If I go to another video, the next video just starts playing over the top of the others.
    Is there a way to use more than one video in a model?  I have tried using different types of selectors; accordion menu, label based menu, toggle buttons.  We would like to have several tutorials go with our model.
    I am using Xcelsius 2008 Engage with SP1, FP 2
    Thank you

    Hi Alban,
    I see what you are seeing. Could you send your file so I can investigate more? Send it to [email protected], with a link to this thread in the message body. If the file is >20mb, our email system cannot handle it so use a service like Adobe SendNow.
    Thanks,
    Sam

  • Working with multiple video resolutions ...

    I am putting together a home movie, in case that matters, where my video was taken on a variety of cameras.  I have 1920x1080 30fps (Sony camcorder), 1280x720 60fps (Flip), 1280x720 30fps (iPhone 4), 720x480fps (miniDV).    Targets are PS3/big TV, PC, and BD or DVD disc.   The 1080p Sony footage is my most abundant and important footage.    Questions less any open-ended comments, I'm all ears.
    1) What would you all set for sequence settings?    In my layman's mind I favored the 1080p footage creating a sequence using one of the Sony clips.
    2) Any issues exporting to H.264 1080p 30fps?  That format plays natively on my Sony PS3, PC, and easy to create a BD without further encoding.   Any special settings I should set when I export?   Or should I be going with a different format in this case?  I get confused on the whole when to upscale vs. downscale topic.
    3) Assuming yes and yes, would you want to scale the lower resolution clips to frame size?   Or would you leave them with big black bars on all sides?   Or would it depend on which resolution listed above?
    4) Assuming you said scale to frame size for all, unfortunately I was not aware of the Edit.Preferences.General.Default Scale to Frame Size setting until I after I imported.  I have spent days and hours pouring over hundreds of video clips, so going back and re-importing and editing would be a nightmare (unless there is someway to cause PP to resync with original clips achieving the same result).    So is the best option then to select the clips on the timeline and check "Scale to Frame Size"?   It looks like I can do that by selecting multiple clips on the timeline and get them all at once.    If the option is set for the 1080p clips (that match the sequence) will it just be ignored?  My footage is mixed throughout the time line.
    Thanks!
    Jon

    I really appreciate the rich feedback here - this forums is great, especially for us lost in space isolated consumers.   Following up on several questions and comments ...
    All of my TV's and computer monitors are 1080.  I'm hand waving a bit here, but I'm guessing my footage is 65% 1080i, 25% 720p, and 10% SD; something along those lines.   I am following a chronological story format, but could separate out the early part of the year before I started shooting in 1080i.  But note even there I would still have the mix of 720p and SD.  I can create my own delivery requirements being a home movie, but the plan was to have a .m2t encoding to play on PC's and then BD for the PS3 on a big TV.   So my original layman's thought was to go with a 1080i sequence, put it all in there, and take my lumps with how it comes out.  I guess I would rather favor the bulk of the HD footage looking good. 
    I did some experimenting tonight.    I took a 1080i sequence created from my dominant footage.  I dropped in a sample 720p and SD clip x 2; on the duplicates I selected Scale to Frame Size.   I watched the result over and over with my daughter on a 55" LED TV playing natively off a flash drive on a PS3 with an H.264 BD encoding .m2t file, VBR 2-pass.   What we discovered in our opinion was that the 720p was a bit too grainy for our tastes when scaled to the frame size.  Despite the pillar bars, we felt the unscaled (right term?) 720p was plenty "big" enough on the screen.   The 720p came off a Flip pocket camera, so nothing stellar to begin with.   On the SD clip, the unscaled version was clearly better looking with smoother motion than the scaled to frame size version.  However, we found it a bit too small with the pillar boxes and ultimately decided we preferred the scaled up size despite the degradation. 
    Now here is a really interesting note.  Perhaps I did something wrong here?   I took that same SD clip, created a new sequence from it, ensuring it was interlaced, and exported to MPEG2-DVD, VBR 2-pass, etc., imported into Encore, produced a DVD without any transcoding.  We then played this DVD back and forth with the aformentioned scale to frame size H.264 encoding.   I'm not sure I could tell a difference, but my daughter thought the 1080i playing natively off the PS3 look a little bit better than the DVD.    Not what I was expecting.   So unless I am missing something, in this specific case it seems the 1080i sequence is the way to go since we are not observing any benefit with straight SD and it fits better with my home movie situation.
    Separate topic, but I have a decade of SD home movies stored in various mpeg and avi files.   Upscaling those is intriguing.   Does a BMD card allow you to hardware upscale an SD file on your PC or only on capture from a device?
    I'm also interested in trying Instant HD.  Here is the rub though - it only works on progressive footage.  Perhaps I should put this question in a separate thread, but what is the best way to convert interlaced to progressive?  Or is that just flat out going to mangle the end results.  Red Giant also makes a plug-in called Magic Bullet Frames that supposedly converts to progressive.    To be clear - not so worried about the bit of SD discussed here on the upscale front, but rather going back to the decade prior.

  • Working with Multiple Videos in Logic a Pain !!!

    Hi,
    I find that working with videos in logic is still quite primitive as compared to Protools. I like working with logic, even in post production but working with videos has been a real pain for me.
    In PT, you are able to add in several videos in one arrange page and edit the length of the videos to remove unwanted frames such as the black frames etc. It makes it easy to bounce when you can just click on the video in the arrange and bounce the particular segment in the precise time length of the video.
    But in Logic, I have to add all the videos in imovie, then export them out to DVPAL, then adding them in logic. This can take a really long time. Say i have a new revised video for one several compiled videos, i then have to repeat the whole process all over again. After which the starting time location of the video changes and i'll have to move everything in my arrange page. In PT you can just replace the particular video file and nothing else changes.
    Bouncing is also difficult in Logic when you can't maintain the starting time of the videos uniform. There are many times when I have to zoom in really find to the start time of video then start dragging the loop region and then do the same to the end. In PT, just click on the video and bounce. Done!
    I find working with Videos in Logic for Post Production for Advertising is such a pain. And I don't want to change to Protools cause i still love logic. I really think Apple will have to do something about this to be a competitive Post Production and Engineering platform. As for working with Music Logic is still sweet.
    Anyone else using logic as a Engineering Platform feeling the same way?
    Is there a better way to work with videos in Logic?
    Cheers,
    Kitcheren

    I can't believe there isn't a lot more talk about video in Logic. I have been using LP7 for music-to-picute for years until now that I have switched to 9. The way Logic 9 interacts with video has changed and I find it really hard to find exactly where the frames are in relation to the audio. It seems that the video window only approximately updates as you advance in the timeline by frames. Can anyone confirm that? Isn't anyone doing music for picture in Logic? I'm also kinda hooked on Logic and not in any mood to go back to PT, but today I nearly had a heart attack trying to get some music to match. My exports weren't looking the same as my project etc... I was horrified at the idea of telling my client that I can't figure out how to sync the picture! I wound up sending the mix and movie to a friend to line things up... not pretty.

  • Best method for building a project with multiple video tracks

    I'm working a project where a client wants some edits made to an existing DVD they had - some video tweaks but mostly menu changes. I'm rebuilding the menus from scratch and I've ripped all the video files from the DVD (there are about 80 of them on one DL-DVD), transcoding them with DV-DVCPRO/NTSC settings.
    The problem is when I import them all as assets into my project build, the DVD disc meter shoots up to about 12 or 13gb. What I've done is added them all to their own separate track, as they're meant to be played not as one continuous video but individual sessions.
    What I'm wondering is if there is a better way to build it that would reduce the amount of space it takes up (I'm rather new at DVD Studio Pro, so I can't tell if I'm going about this the wrong way or not), or if I need to compress the video files or re-transcode them using some other settings (H.264? I'm trying to maintain as much video quality as possible).
    Any help on this would be much appreciated, thanks.

    What is the running time? You should encode to m2v and AC3. Take a look here
    http://dvdstepbystep.com/faqs_7.php

Maybe you are looking for

  • Classpath problem with properties file in jar

    Hi, I am seeing a classpath error for my setup, as follows... A defaultFieldIDs.properties exists with numerous entries: projectID=10630 issueTypeID=80 closedStatusID=6My Spring applicationContext.xml file contains the following: <bean class="org.spr

  • Sub Bank accounts mapping with main Bank account

    Bank accounts Hi How can we will map with main bank account to sub bank accounts. Example; My main bank account: 1111, and                           Sub bank account :  2222 ( Deposit account)                           Sub bank account: 3333 (Cheque

  • Migration A report or A Dashboard from One Env to Other ?

    Hi All, How do we migrate a DasHBOARD or a REPORT from One env to Other env manually as well as with Catalog manager ? Thanks Shivaji

  • How do I interupt a dbx run app from another XTerm

    Hello, I am launching dbx (in java app) and running a c++ executable. How do I cause an interrupt to the dbx so that I can single step the program. Ii.e. can I do "kill -<someSignal> <aPID>" to achieve the same affect as ctrl-C at the dbx command lin

  • Validations in VC

    Hi, I need to validate an input field of a table at the UI level without having to invoke a web serveice just to validate it. For example, a "number" type column should accept data, say, less than or equal to 10000. Somehow I am not able to achieve t