Results 1 to 4 of 4

Thread: AS3 netstream cuepoints to sync animation to Video

  1. #1
    Join Date
    Apr 2009
    Posts
    64

    AS3 netstream cuepoints to sync animation to Video

    I am having a problem migrating my site files from AS2 scripted files to AS3 files.I have videos to encode but the flash video encoder and place a cue point event shows me the named “start” in the beginning and “end” ( you guessed it) at the end.

    I have uploaded number of videos but does not able to implement some AS3 functionality but cant get the video to FLV Cue points to work.

    I have search for the solution many time on the other forums for AS3 solution but my mind is not NetStreaming very well! Can some one help me solve this problem.Thanks lot.

  2. #2
    Join Date
    Jan 2009
    Posts
    140

    Re: AS3 netstream cuepoints to sync animation to Video

    To find my cuepoints i use this code:
    Code:
    nc.connect("rtmp://url", false);
    var ns:NetStream = new NetStream(nc);
    ns.setBufferTime(3);
    my_video.attachVideo(ns);
    
    ns.onCuePoint = function(infoObject:Object)
    {
          if(infoObject.name == "cend")
           {
              ns.play("VideoUrl", null, null, false);
           }
    }
    ns.play("VideoUrl");

  3. #3
    Join Date
    Dec 2008
    Posts
    183

    Re: AS3 netstream cuepoints to sync animation to Video

    Video application which is used AS2 FLVPlayback component and actionscript generated cue points but when i search for the related problem over the internet it later found that NetStream doesn’t support actionscript generated cue points, only support embedded cue points that assigned when encoding.

    According to as i have search on the internet it will be easy to detect cue points as they are having time parameters in seconds to find but it was strange that Adobe only implement them for NetStream, and not for their FLVPlayback component.

  4. #4
    Join Date
    Feb 2009
    Posts
    40

    Re: AS3 netstream cuepoints to sync animation to Video

    Does anyone has encountered a problem in AS3 with their video playback where the eventListener object cannot be access and a netStream is no longer be recognized once video playback has been paused and unpaused? And i also observed that this occur only with progressive downloads. and according to some blogs I re-attach the eventListener object when the user decides to unpause the video.

Similar Threads

  1. Powerpoint animation Video Converter
    By Sachit in forum Windows Software
    Replies: 4
    Last Post: 22-12-2009, 05:15 PM
  2. Replies: 1
    Last Post: 05-10-2009, 04:24 PM
  3. Replies: 3
    Last Post: 04-05-2009, 07:44 PM
  4. Animation to customize the video
    By Croulet in forum Customize Desktop
    Replies: 3
    Last Post: 27-02-2009, 10:39 PM
  5. Arena Animation to organize 'PERSPECTIVES' Animation Symposium
    By Educated in forum Education Career and Job Discussions
    Replies: 2
    Last Post: 12-09-2008, 12:08 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,714,120,774.46770 seconds with 16 queries