Play recorded videos

I am playing flv clips using server-side action script so all
clients see the same content at the same time regardless of when a
client connects. When I did this in my lab enviroment it seemed to
work correctly. Now I have deployed the solution to a production
quality server and have found that is playing recorded flv’s
faster than there recorded time. For example, I have 60 second clip
that FMS is playing the clip in about 6 seconds. Is there away to
control how fast FMS plays a recorded video? Basically, I want the
server to play the video in real time.
Thanks,
Kevin

Hi! kvarga@nextep what you mention on the begining of your
post
___"I am playing flv clips using server-side action script so
all clients see the same content at the same time regardless of
when a client connects."____
i been looking the way to doit, will you share the aplication
or the .as file that you use.
i will apreciate any help
thanks in advance.
Satvader!!!

Similar Messages

  • Unable to play recorded video using BB multimedia api in other platform

    Hi all,
    I am new to Blackberry application development. The application I am developing it is required to record a video using multimedia api.
    I am using
    video encoding : MPEG-4
    audio encoding : AMR
    res : 320 x 240
    Device using Curve 8250
    It is the same encoding combination BB curve use to record a video from default recorder.
    _player = Manager
    .createPlayer("capture://video?encoding=video/3gpp&width=320&height=240&fps=12&video_codec=MPEG-4&audio_codec=AMR");
    After recording it from my application I am able to play the video in vlc even in BB devices. But when I am trying toplay in android,J2ME and iPhone platform. It is unable to play the video..Can anybody help me out in this regard.
    I am really in trouble. I need your help .
    Thanks in advance.
    Regards,
    Angan

    In my experience if windows media player plays it(the mpeg4), it will not be compatiable with quicktime. At least if you do not go installing the codecs to read ISO mpeg 4 (.mp4 is the standard extension that quicktime puts on the files). Another thing to check is if you are creating ISO compliant files. The mpeg4s that windows media reads by default are not ISO compliant. You also need to keep in mind that Quicktime is a simple profile mp4 and main profile mp4 player (although not all b frames are compatable with quicktime). See http://en.wikipedia.org/wiki/Quicktime for a basic overview of the profile support. I suggest that you try playing the media with free softwares such as vlc http://www.videolan.org/vlc/ and mplayer http://www.mplayerhq.hu/design7/news.html and check that the format and codecs are correct. Although they will play non standard files they will list the codecs in use (make sure that you are using ISO compliant standards as you can put more than MPEG 4 in mp4).

  • I cant play recorded videos n my 5230

    hi guyz...i've bought a new 5230,n stocked it with lot f stuffs.now i cant play videos which i had been recorded.it got stuck after so,etime. The sound go streaming without any problem on the background!.am using the default real player. I downloaded certain mp4 videos,it doesnt have this problem too. Only recorder videos...suggest me a gud remedy.

    This forum is just for discussions on the forums themselves. I suggest reposting your question in the appropriate forum for your software, which you can find here:
    http://forums.adobe.com/index.jspa
    And when you do, don't forget to include enough information about your setup and your problem.

  • Cannot play recorded videos on C7

    Hi there,
    i am playing with my new C7, despite loving the phone and the possibilities, it seems to me it has hard to go over countless bugs.
    I have recorded several video with the onboard camera and none will play. I have tried High definition, normal and 3gp. I go through the onboard video player and none will play. Nothing play even after shooting them when I press the play icon. It is very annoying. The videos are working fine as they play well on my PC.
    For information flash video, such as youtube works fine from the internet. But I am unable to play the video I record of my kids... VERY annoying, any ideas?

    Sorry not an answer, but I have EXACTLY the same issue and impression. Help

  • How to play recorded videos using FLVPlayback component?

    Hey Guys,
         I recorded videos using fms and i want to play them using FLVPlayback component. I've done some research but i cant find something
    useful, I tried this code :
         flvplayback.source = "rtmp://localhost/appname/instancename/video";
         this code is not working. Am i doing it wrong or something? Can anyone please point me on the right direction!
        Thanks in advance!
    Randy

    You may like to use this tutorial for your purpose:
    http://en.wikibooks.org/wiki/Beginner's_Guide_to_Adobe_Flash/Video/Using_The_FLVPlayback_C omponent
    Here, in the content path you need to put your URL, also make sure that the instance name exist and provide the FLV extension in the url.
    Hope that will help you.

  • Recorded video stream with h264 video codec is Blocky/Blurry

    In my application I am using H.264 with setting h264Settings.setProfileLevel(H264Profile.BASELINE, H264Level.LEVEL_1); and  record stream in f4v format
    publish("mp4:"+streamName+".f4v", "record");
    Now In the live session stream in fine at receiver end but When I watch recorded file Its quality was very poor. It looks very Blocky and blurry. I am using Flash Media Server 3.5.7
    Anyone having solution  then please let me know.

    Hello,
         When  I play recorded video file through RTMP connection then it playing good and no Blurry and blocky streaming. Can anyone solve this issue.

  • How to play/record at same time and save image from video

    i started working on a project and that made my life hell although it was so simple. reason was that i couldnt find small/simple code to understand problems and no proper documents. . finally i have done that. and here is the code (without much complex code of interface). it shows vidoe, records a small part of it at start and takes a snapshot (no buttons or events involved). hope it might help someone starting to learn JMF.
    import java.io.*;
    import java.awt.*;
    import java.net.*;
    import java.awt.event.*;
    import java.util.Vector;
    import javax.media.*;
    import javax.media.rtp.*;
    import javax.media.rtp.event.*;
    import javax.media.rtp.rtcp.*;
    import javax.media.protocol.*;
    import javax.media.protocol.DataSource;
    import javax.media.format.AudioFormat;
    import javax.media.format.VideoFormat;
    import javax.media.Format;
    import javax.media.format.FormatChangeEvent;
    import javax.media.control.BufferControl;
    import javax.media.control.FrameGrabbingControl;
    import javax.imageio.ImageIO;
    import java.util.Date;
    import javax.media.util.BufferToImage;
    import java.awt.image.BufferedImage;
    * AVReceive2 to receive RTP transmission using the new RTP API.
    public class AVReceive2 implements ReceiveStreamListener, SessionListener,
    ControllerListener
    public static DataSource ds2, ds, ds3;
    String sessions[] = null;
    RTPManager mgrs[] = null;
    Vector playerWindows = null;
    boolean dataReceived = false;
    Object dataSync = new Object();
    public AVReceive2(String sessions[]) {
    this.sessions = sessions;
    public static DataSource getData() {
    return ds;
    protected boolean initialize() {
    try {
    InetAddress ipAddr;
    SessionAddress localAddr = new SessionAddress();
    SessionAddress destAddr;
    mgrs = new RTPManager[sessions.length];
    playerWindows = new Vector();
    SessionLabel session;
    // Open the RTP sessions.
    for (int i = 0; i < sessions.length; i++) {
    // Parse the session addresses.
    try {
    session = new SessionLabel(sessions);
    } catch (IllegalArgumentException e) {
    System.err.println("Failed to parse the session address given: " + sessions[i]);
    return false;
    System.err.println(" - Open RTP session for: addr: " + session.addr + " port: " + session.port + " ttl: " + session.ttl);
    mgrs[i] = (RTPManager) RTPManager.newInstance();
    mgrs[i].addSessionListener(this);
    mgrs[i].addReceiveStreamListener(this);
    ipAddr = InetAddress.getByName(session.addr);
    if( ipAddr.isMulticastAddress()) {
    // local and remote address pairs are identical:
    localAddr= new SessionAddress( ipAddr,
    session.port,
    session.ttl);
    destAddr = new SessionAddress( ipAddr,
    session.port,
    session.ttl);
    } else {
    localAddr= new SessionAddress( InetAddress.getLocalHost(),
    session.port);
    destAddr = new SessionAddress( ipAddr, session.port);
    mgrs[i].initialize( localAddr);
    // You can try out some other buffer size to see
    // if you can get better smoothness.
    BufferControl bc = (BufferControl)mgrs[i].getControl("javax.media.control.BufferControl");
    if (bc != null)
    bc.setBufferLength(350);
    mgrs[i].addTarget(destAddr);
    } catch (Exception e){
    System.err.println("Cannot create the RTP Session: " + e.getMessage());
    return false;
    // Wait for data to arrive before moving on.
    long then = System.currentTimeMillis();
    long waitingPeriod = 30000; // wait for a maximum of 30 secs.
    try{
    synchronized (dataSync) {
    while (!dataReceived &&
    System.currentTimeMillis() - then < waitingPeriod) {
    if (!dataReceived)
    System.err.println(" - Waiting for RTP data to arrive...");
    dataSync.wait(1000);
    } catch (Exception e) {}
    if (!dataReceived) {
    System.err.println("No RTP data was received.");
    close();
    return false;
    return true;
    public boolean isDone() {
    //return playerWindows.size() == 0;
    return false;
    * Close the players and the session managers.
    protected void close() {
    for (int i = 0; i < playerWindows.size(); i++) {
    try {
    ((PlayerWindow)playerWindows.elementAt(i)).close();
    } catch (Exception e) {}
    playerWindows.removeAllElements();
    // close the RTP session.
    for (int i = 0; i < mgrs.length; i++) {
    if (mgrs[i] != null) {
    mgrs[i].removeTargets( "Closing session from AVReceive2");
    mgrs[i].dispose();
    mgrs[i] = null;
    PlayerWindow find(Player p) {
    for (int i = 0; i < playerWindows.size(); i++) {
    PlayerWindow pw = (PlayerWindow)playerWindows.elementAt(i);
    if (pw.player == p)
    return pw;
    return null;
    PlayerWindow find(ReceiveStream strm) {
    for (int i = 0; i < playerWindows.size(); i++) {
    PlayerWindow pw = (PlayerWindow)playerWindows.elementAt(i);
    if (pw.stream == strm)
    return pw;
    return null;
    * SessionListener.
    public synchronized void update(SessionEvent evt) {
    if (evt instanceof NewParticipantEvent) {
    Participant p = ((NewParticipantEvent)evt).getParticipant();
    System.err.println(" - A new participant had just joined: " + p.getCNAME());
    * ReceiveStreamListener
    public synchronized void update( ReceiveStreamEvent evt) {
    RTPManager mgr = (RTPManager)evt.getSource();
    Participant participant = evt.getParticipant();     // could be null.
    ReceiveStream stream = evt.getReceiveStream(); // could be null.
    if (evt instanceof RemotePayloadChangeEvent) {
    System.err.println(" - Received an RTP PayloadChangeEvent.");
    System.err.println("Sorry, cannot handle payload change.");
    System.exit(0);
    else if (evt instanceof NewReceiveStreamEvent) {
    try {
    stream = ((NewReceiveStreamEvent)evt).getReceiveStream();
    //DataSource
    ds2 = stream.getDataSource(); // this original cant be used now
    // ds is used to play video
    ds = Manager.createCloneableDataSource(ds2);
    // ds3 is used to record video
    ds3 = ((SourceCloneable)ds).createClone();
    // Find out the formats.
    RTPControl ctl = (RTPControl)ds.getControl("javax.media.rtp.RTPControl");
    if (ctl != null){
    System.err.println(" - Recevied new RTP stream: " + ctl.getFormat());
    } else
    System.err.println(" - Recevied new RTP stream");
    if (participant == null)
    System.err.println(" The sender of this stream had yet to be identified.");
    else {
    System.err.println(" The stream comes from: " + participant.getCNAME());
    // create a player by passing datasource to the Media Manager
    Player p = javax.media.Manager.createPlayer(ds);
    if (p == null)
    return;
    p.addControllerListener(this);
    p.realize();
    PlayerWindow pw = new PlayerWindow(p, stream);
    playerWindows.addElement(pw);
    // Notify intialize() that a new stream had arrived.
    synchronized (dataSync) {
    dataReceived = true;
    dataSync.notifyAll();
    } catch (Exception e) {
    e.printStackTrace();
    return;
    else if (evt instanceof StreamMappedEvent) {
    if (stream != null && stream.getDataSource() != null) {
    DataSource ds = stream.getDataSource();
    // Find out the formats.
    RTPControl ctl = (RTPControl)ds.getControl("javax.media.rtp.RTPControl");
    System.err.println(" - The previously unidentified stream ");
    if (ctl != null)
    System.err.println(" " + ctl.getFormat());
    System.err.println(" had now been identified as sent by: " + participant.getCNAME());
    else if (evt instanceof ByeEvent) {
    System.err.println(" - Got \"bye\" from: " + participant.getCNAME());
    PlayerWindow pw = find(stream);
    if (pw != null) {
    pw.close();
    playerWindows.removeElement(pw);
    * ControllerListener for the Players.
    public synchronized void controllerUpdate(ControllerEvent ce) {
    Player p = (Player)ce.getSourceController();
    if (p == null)
    return;
    // Get this when the internal players are realized.
    if (ce instanceof RealizeCompleteEvent) {
    PlayerWindow pw = find(p);
    if (pw == null) {
    // Some strange happened.
    System.err.println("Internal error!");
    System.exit(-1);
    pw.initialize();
    pw.setVisible(true);
    p.start();
    try {
    // make it wait so that video can start otherwise image will be null. u must call this method with a button
    Thread.sleep(2500);
    catch (Exception e) {
    e.printStackTrace();
    // Grab a frame from the capture device
    FrameGrabbingControl frameGrabber = (FrameGrabbingControl) p.getControl(
    "javax.media.control.FrameGrabbingControl");
    Buffer buf = frameGrabber.grabFrame();
    // Convert frame to an buffered image so it can be processed and saved
    Image img = (new BufferToImage( (VideoFormat) buf.getFormat()).
    createImage(buf));
    BufferedImage buffImg = new BufferedImage(img.getWidth(null),
    img.getHeight(null),
    BufferedImage.TYPE_INT_RGB);
    Graphics2D g = buffImg.createGraphics();
    g.drawImage(img, null, null);
    // Overlay curent time on image
    g.setColor(Color.RED);
    g.setFont(new Font("Verdana", Font.BOLD, 12));
    g.drawString( (new Date()).toString(), 10, 25);
    try { // Save image to disk as PNG
    ImageIO.write(buffImg, "jpeg", new File("c:\\webcam.jpg"));
    catch (Exception e) {
    e.printStackTrace();
    // this will record the video for a few seconds. this should also be called properly by menu or buttons
    record(ds3);
    if (ce instanceof ControllerErrorEvent) {
    p.removeControllerListener(this);
    PlayerWindow pw = find(p);
    if (pw != null) {
    pw.close();
    playerWindows.removeElement(pw);
    System.err.println("AVReceive2 internal error: " + ce);
    * A utility class to parse the session addresses.
    class SessionLabel {
    public String addr = null;
    public int port;
    public int ttl = 1;
    SessionLabel(String session) throws IllegalArgumentException {
    int off;
    String portStr = null, ttlStr = null;
    if (session != null && session.length() > 0) {
    while (session.length() > 1 && session.charAt(0) == '/')
    session = session.substring(1);
    // Now see if there's a addr specified.
    off = session.indexOf('/');
    if (off == -1) {
    if (!session.equals(""))
    addr = session;
    } else {
    addr = session.substring(0, off);
    session = session.substring(off + 1);
    // Now see if there's a port specified
    off = session.indexOf('/');
    if (off == -1) {
    if (!session.equals(""))
    portStr = session;
    } else {
    portStr = session.substring(0, off);
    session = session.substring(off + 1);
    // Now see if there's a ttl specified
    off = session.indexOf('/');
    if (off == -1) {
    if (!session.equals(""))
    ttlStr = session;
    } else {
    ttlStr = session.substring(0, off);
    if (addr == null)
    throw new IllegalArgumentException();
    if (portStr != null) {
    try {
    Integer integer = Integer.valueOf(portStr);
    if (integer != null)
    port = integer.intValue();
    } catch (Throwable t) {
    throw new IllegalArgumentException();
    } else
    throw new IllegalArgumentException();
    if (ttlStr != null) {
    try {
    Integer integer = Integer.valueOf(ttlStr);
    if (integer != null)
    ttl = integer.intValue();
    } catch (Throwable t) {
    throw new IllegalArgumentException();
    * GUI classes for the Player.
    class PlayerWindow extends Frame {
    Player player;
    ReceiveStream stream;
    PlayerWindow(Player p, ReceiveStream strm) {
    player = p;
    stream = strm;
    public void initialize() {
    add(new PlayerPanel(player));
    public void close() {
    player.close();
    setVisible(false);
    dispose();
    public void addNotify() {
    super.addNotify();
    pack();
    * GUI classes for the Player.
    class PlayerPanel extends Panel {
    Component vc, cc;
    PlayerPanel(Player p) {
    setLayout(new BorderLayout());
    if ((vc = p.getVisualComponent()) != null)
    add("Center", vc);
    if ((cc = p.getControlPanelComponent()) != null)
    add("South", cc);
    public Dimension getPreferredSize() {
    int w = 0, h = 0;
    if (vc != null) {
    Dimension size = vc.getPreferredSize();
    w = size.width;
    h = size.height;
    if (cc != null) {
    Dimension size = cc.getPreferredSize();
    if (w == 0)
    w = size.width;
    h += size.height;
    if (w < 160)
    w = 160;
    return new Dimension(w, h);
    public void record(DataSource ds) {
    Format formats[] = new Format[1];
    formats[0] = new VideoFormat(VideoFormat.CINEPAK);
    FileTypeDescriptor outputType =
    new FileTypeDescriptor("video.x_msvideo");
    Processor p = null;
    try {
    p = Manager.createRealizedProcessor(new ProcessorModel(ds,formats,
    outputType));
    } catch (IOException e) {
    e.printStackTrace();
    } catch (NoProcessorException e) {
    e.printStackTrace();
    } catch (CannotRealizeException e) {
    e.printStackTrace();
    // get the output of the processor
    DataSource source = p.getDataOutput();
    // create a File protocol MediaLocator with the location
    // of the file to
    // which bits are to be written
    MediaLocator dest = new MediaLocator("file://vvv.mpeg");
    // create a datasink to do the file writing & open the
    // sink to make sure
    // we can write to it.
    DataSink filewriter = null;
    try {
    filewriter = Manager.createDataSink(source, dest);
    filewriter.open();
    } catch (NoDataSinkException e) {
    e.printStackTrace();
    } catch (IOException e) {
    e.printStackTrace();
    } catch (SecurityException e) {
    e.printStackTrace();
    // now start the filewriter and processor
    try {
    filewriter.start();
    } catch (IOException e) {
    e.printStackTrace();
    p.start();
    try {
    Thread.sleep(10000);
    }catch(Exception e) { }
    p.close();
    filewriter.close();
    // stop and close the processor when done capturing...
    // close the datasink when EndOfStream event is received...
    public static void main(String argv[]) {
    //     if (argv.length == 0)
    //     prUsage();
    String[] a = new String[1];
    a[0] = ("192.168.0.45/4002");
    AVReceive2 avReceive = new AVReceive2(a);
    if (!avReceive.initialize()) {
    System.err.println("Failed to initialize the sessions.");
    System.exit(-1);
    // Check to see if AVReceive2 is done.
    try {
    while (!avReceive.isDone())
    Thread.sleep(1000);
    } catch (Exception e) {}
    System.err.println("Exiting AVReceive2");
    static void prUsage() {
    System.err.println("Usage: AVReceive2 <session> <session> ...");
    System.err.println(" <session>: <address>/<port>/<ttl>");
    //System.exit(0);
    }// end of AVReceive2
    so here the code. all messed up. coz i have just completed it and havent worked on interface or formatting this code properly (didnt have much time). but hope it will help. ask me if u have any questions. dont want others to have those basic problems that i had to face.

    u did a good effort for the JMF beginners i appreciate that....thanks i lot....i need you help in a project in
    which i have to connect to a d-link 950G IP camera and process that
    mpeg-4 stream (i know there are some problems in JMF and mpeg4) and show it over applet of JFrame.
    IP is 172.25.35.22
    Edited by: alchemist on Jul 16, 2008 6:09 AM

  • Iphone 3gs will no longer play my recorded video's

    i downloaded just dance autodance app onto my iphone and everything was fine and normal now all of a sudden my recorded video's no longer play but still play the sound to it the just dance app works fine on my boyfriends iphone, i have tried removing it and re-installing it but its still the same, can anyone help please x

    These are the symptoms of a loose or detached Flex Cable # 6 at the top of the Logic Board.

  • Using the camera on my iPad 2, I can record videos, but can't get them to play back.  I'd appreciate your  help with this!

    Using the camera on my iPad 2, I can record videos, but can't get them to play back.  Can you help me with this?     Thank you!

    Previous version was a touch to change, this one is a slide to change.  

  • Camileo S20 - How to play all recorded videos?

    hi all!
    Ive not long had the camileo s20, so still trying to get mt head around it. I think ive managed the basics but im having a problem with play back.
    When i recored a video - 6 mins long, but i pause the recording half way through, then go back on to start recording where i left off, during play back it will play the movie sepratlely and i manualy have to start the other half of the video to play.
    Is there anyway i can just click play and it plays all my recorded videos continuously? a play all setting?
    Thanks

    Hi wayne_1,
    First of all I can recommend checking the user manual. It contains a lot of informations about your camera and how to use all features.
    I have checked the user manual but unfortunately I think such a playback function isnt available. With the playback button you can switch to playback mode and use the left and right button to go to the next picture/movie.
    But there is no function about playback of all videos.

  • I recorded video on a memory card.  How do I get the video to play on my iPad?

    I have a trail camera with a memory card.  I record videos.  They will not play on my iPad2.  How can I get them to play?  I have the adapter that plugs into the iPad, which in turn, the memory card plugs into it.

    What format are the videos?
    Pad2, the new iPad Supported Video Formats & Movie Formats
    H.264 video up to 1080p, 30 frames per second, High Profile level 4.1 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 per channel, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats;
    Motion JPEG (M-JPEG) up to 35 Mbps, 1280 by 720 pixels, 30 frames per second, audio in ulaw, PCM stereo audio in .avi file format
     Cheers, Tom

  • Cannot found url error when i try to play my camera recorded video from my iphone 4S running ios 5.01

    I got an error cannot Find url when i attempt to play my camera recorded video from my iphone 4S 32 gig. I try to restart my phone but still no luck. There was no problem previously, but suddenly i got this problem with no reason. I also unable to copy the video to my computer using itunes. So please helppp...
    Thanks a ton!!
    Note: My iphone 4S is running ios 5.01.

    See if it helps to delete the firmware file and download a new one:
    Rename, move, or delete the iOS software file (.ipsw)
    iTunes uses "ipsw" files to restore your iPod or iPhone. If those files are unusable, then try deleting them, renaming them, or moving the file to a different directory. This will cause iTunes to download a new copy of the IPSW. When a restore issue is specific to a user, it is likely due to an unusable .ipsw file. If removing the .ipsw file does not resolve a user-specific restore issue, then the issue is caused by other user-specific security software settings or iTunes preferences. Creating a new user will also cause new .ipsw restore files to be downloaded in the new user. You can find the ".ipsw" files in these locations:
    Mac OS X
    iPhone
    ~/Library/iTunes/iPhone Software Updates
    iPad
    ~/Library/iTunes/iPad Software Updates
    iPod touch
    ~/Library/iTunes/iPod Software Updates
    Note: The tilde "~" represents your Home directory.

  • Adobe Media Server failing to record video if switched from play to record midstream

    The Adobe Media Server is failing to record video if switched from play to record midstream. It is an intermittent issue that happens randomly one out of every 30 attempts.
    Flash Runtime: Flash Player ActiveX 11.7.700.169 or Flash Player ActiveX 11.4.402.287
    Media Server: AMS5.0.1, also FMS4.5.5
    (The problem happens on both FMS4.5.5 and AMS5.0.1)
    The ActionScript is as follows:
    netstreamRoger.publish("719_Client","play");
    Then 1 second later:
    netstreamRoger.publish("719_Client","record");
    netstreamRoger is streaming out the video and audio data correctly, because there is another computer playing the stream 719_Client live. So the media server is forwarding the stream correctly when live. The bug is when you attempt to playback 719_Client.flv the file does not contain any video data. The file size is not zero, and the file is not corrupted, but the file size is smaller than it would be if it had saved the video in it.
    How do I submit this bug to the Media Server team, and how can I workaround this issue?
    Below is the log from the Media Server 5.0.1
    publish
    stream
    2013-05-15
    16:14:20
    Mountain Daylight Time
    719_Client
    192.168.2.231
    1284
    0
    10
    _defaultRoot_
    _defaultVHost_
    uGenius
    _definst_
    0
    200
    192.168.2.219
    rtmp
    rtmp://ugfms:1935/uGenius
    rtmp://ugfms:1935/uGenius
    WIN 11,7,700,169
    4702111234844082543
    3189
    3486
    normal
    719_Client
    rtmp://ugfms:1935/uGenius/719_Client
    rtmp://ugfms:1935/uGenius/719_Client
    0
    0
    0
    0
    -1
    -1.000000
    connect-pending
    session
    2013-05-15
    16:14:20
    Mountain Daylight Time
    192.168.0.75
    192.168.2.231
    1284
    1
    10
    _defaultRoot_
    _defaultVHost_
    uGenius
    _definst_
    0
    100
    192.168.0.75
    rtmp
    rtmp://ugfms:1935/uGenius
    rtmp://ugfms:1935/uGenius
    WIN 11,7,700,169
    4702111234860859759
    3073
    3073
    normal
    connect
    session
    2013-05-15
    16:14:20
    Mountain Daylight Time
    192.168.0.75
    192.168.2.231
    1284
    1
    10
    _defaultRoot_
    _defaultVHost_
    uGenius
    _definst_
    0
    200
    192.168.0.75
    rtmp
    rtmp://ugfms:1935/uGenius
    rtmp://ugfms:1935/uGenius
    WIN 11,7,700,169
    4702111234860859759
    3073
    3073
    normal
    play
    stream
    2013-05-15
    16:14:20
    Mountain Daylight Time
    719_Client
    192.168.2.231
    1284
    1
    10
    _defaultRoot_
    _defaultVHost_
    uGenius
    _definst_
    0
    200
    192.168.0.75
    rtmp
    rtmp://ugfms:1935/uGenius
    rtmp://ugfms:1935/uGenius
    WIN 11,7,700,169
    4702111234860859759
    3248
    3704
    normal
    719_Client
    rtmp://ugfms:1935/uGenius/719_Client
    rtmp://ugfms:1935/uGenius/719_Client
    flv
    0
    0
    0
    2
    -1
    -1.000000
    unpublish
    stream
    2013-05-15
    16:14:22
    Mountain Daylight Time
    719_Client
    192.168.2.231
    1284
    1
    10
    _defaultRoot_
    _defaultVHost_
    uGenius
    _definst_
    2
    200
    192.168.2.219
    rtmp
    rtmp://ugfms:1935/uGenius
    rtmp://ugfms:1935/uGenius
    WIN 11,7,700,169
    4702111234844082543
    149021
    19922
    normal
    719_Client
    rtmp://ugfms:1935/uGenius/719_Client
    rtmp://ugfms:1935/uGenius/719_Client
    0
    0
    145667
    0
    -1
    -1.000000
    publish
    stream
    2013-05-15
    16:14:22
    Mountain Daylight Time
    719_Client
    192.168.2.231
    1284
    1
    10
    _defaultRoot_
    _defaultVHost_
    uGenius
    _definst_
    0
    200
    192.168.2.219
    rtmp
    rtmp://ugfms:1935/uGenius
    rtmp://ugfms:1935/uGenius
    WIN 11,7,700,169
    4702111234844082543
    149021
    19922
    normal
    719_Client
    rtmp://ugfms:1935/uGenius/719_Client
    rtmp://ugfms:1935/uGenius/719_Client
    0
    0
    0
    0
    -1
    -1.000000
    record
    stream
    2013-05-15
    16:14:22
    Mountain Daylight Time
    719_Client
    192.168.2.231
    1284
    1
    10
    _defaultRoot_
    _defaultVHost_
    uGenius
    _definst_
    0
    200
    192.168.2.219
    rtmp
    rtmp://ugfms:1935/uGenius
    rtmp://ugfms:1935/uGenius
    WIN 11,7,700,169
    4702111234844082543
    149534
    20841
    normal
    719_Client
    rtmp://ugfms:1935/uGenius/719_Client
    rtmp://ugfms:1935/uGenius/719_Client
    C:\Program Files\Adobe\Adobe Media Server 5\applications\uGenius\streams\_definst_\719_Client.flv
    flv
    13
    0.000000
    513
    0
    -1
    -1.000000
    unpublish
    stream
    2013-05-15
    16:14:28
    Mountain Daylight Time
    719_Client
    192.168.2.231
    1284
    1
    10
    _defaultRoot_
    _defaultVHost_
    uGenius
    _definst_
    6
    200
    192.168.2.219
    rtmp
    rtmp://ugfms:1935/uGenius
    rtmp://ugfms:1935/uGenius
    WIN 11,7,700,169
    4702111234844082543
    670945
    294048
    normal
    719_Client
    rtmp://ugfms:1935/uGenius/719_Client
    rtmp://ugfms:1935/uGenius/719_Client
    0
    0
    521832
    0
    -1
    -1.000000
    disconnect
    session
    2013-05-15
    16:14:29
    Mountain Daylight Time
    192.168.2.219
    192.168.2.231
    1284
    1
    10
    _defaultRoot_
    _defaultVHost_
    uGenius
    _definst_
    9
    200
    192.168.2.219
    rtmp
    rtmp://ugfms:1935/uGenius
    rtmp://ugfms:1935/uGenius
    WIN 11,7,700,169
    4702111234844082543
    671076
    294562
    normal
    stop
    stream
    2013-05-15
    16:14:29
    Mountain Daylight Time
    719_Client
    192.168.2.231
    1284
    1
    10
    _defaultRoot_
    _defaultVHost_
    uGenius
    _definst_
    9
    200
    192.168.0.75
    rtmp
    rtmp://ugfms:1935/uGenius
    rtmp://ugfms:1935/uGenius
    WIN 11,7,700,169
    4702111234860859759
    290828
    672528
    normal
    719_Client
    rtmp://ugfms:1935/uGenius/719_Client
    rtmp://ugfms:1935/uGenius/719_Client
    flv
    8275
    0
    665118
    3624
    2
    -1
    -1.000000

    I'm having this issue as well. Did you ever find a solution to it?

  • Is there a way to play a video recorded on an iphone 5, on an iPhone 4

    I recorded a video on an iphone 5. I transfered it to Aperture. When I tried to sync it to an Iphone 4 it would not transfer. After some digging, I think the problem is that the iphone 4 does not play 1080p video. If that is the reason, is there a way to have aperture or itunes convert the video to the 720p that the iphone 4 can read?

    I found out how. Bring it into QuickTime and export to iPhone 4 format. 

  • Help !! I recorded videos on my blackberry playbook but when I play them back on my mac they're mute, no audio.

    I recorded videos on my blackberry playbook, however when I play those same videos on my playbook there is audio and video. When I play the videos on my Mac (Mac Mini, running Snow Leopard) the videos work fine except the audio is dropped. The strange thing is that up until about 3 weeks ago, I could play the video and audio on my Mac. Only videos recorded in the last 2 or 3 weeks will not play properly on my Mac
    Does anyone know how to fix this ?!

    What are you using to play the videos on your Mac, Quicktime X? Try VLC Media Player or MPlayer OS X Extended.

Maybe you are looking for

  • Data Protection Manager Agent 2012 R2 install failing

    Executing: .\DPMAgentInstaller_x64.exe aura.ad.isillc.com I get the following console output: Installing agent and configure for dpmserver =[ad.isillc.com\AURA] DPMAgentInstaller failed with errorcode =0x80070648, error says: Unknown propert y. Check

  • Looking to upgrade from Adobe Creative Suite 3 Production Premium to the latest.

    I am looking to upgrade from Adobe Creative Suite 3 Production Premium to the latest. We are running on an isolated network without access to the Internet. Looking for advise on how best to proceed.

  • BBz10 internet add to home screen not working !!!

    the option to add to home screen is not working, when i choose this from the options it says added to homescreen after saving, but not showing icon on home screen, can anyone help please. Solved! Go to Solution.

  • Mac not starting.

    Last night I installed 10.4.6, I already had 10.4.5 but a new update came in so I put it on and, seince I was going to bed, I clicked shut down instead of restart. But this morning when I turned ony my computer it just stays on the "Starting up Mac O

  • 21" iMac (Late 2012) loud fans

    My iMac keeps running the fans really quickly causing it to make a very loud noise. I have downloaded the fan control application, however it didn't seem to work as it didn't do anything after several attempts and reinstallments. The air coming from