Skip to main content
Participant
November 25, 2009
Question

Convert F4V to FLV?

  • November 25, 2009
  • 1 reply
  • 1172 views

I have converted the F4V to a single moof atom file and it now plays in Media Player and I can create a SWF player to play the video file but my question is, how do I convert the F4V single moof atom file into a FLV? Media Encoder will not except it

Thank you,

Jose Burgos

Burgos, Inc.

www.burgosfx.com

    This topic has been closed for replies.

    1 reply

    Asa_-_FMS
    Adobe Employee
    Adobe Employee
    November 25, 2009

    Use FMS to do it.  You'll just want some server side script like this

    s = Stream.get("flvNamedFile");

    s.record();

    s.play("mp4:targetName.f4v", 0);

    that should record your file from the f4v into an FLV.  Or you can search for an external tool that does this faster than real time.  Keep in mind that FLV doesn't really work properly for H.264/AAC content and won't work when seeking all the time.

    Asa