Regd: Programming a Video Converter

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • muppadivya@gmail.com

    Regd: Programming a Video Converter

    Hi,
    I want to write an avi to flv converter in php but i am a complete
    newbie to it.

    I would like to know the process of how a converter code is written
    (ie. the basic algorithm ) .

    Any good tutorials or resources where i can learn the basics.

    Thank You,
    Raja.

  • lorento

    #2
    Re: Regd: Programming a Video Converter

    I think its difficult to develop converter with php. Converting movie
    on the fly need a big resources, PHP can't handle it.

    My idea, use C/C++ language instead of PHP. Compile the c/c++ program
    as cgi program. So it can be call like:
    http://host/converter.cgi?movie=movie.avi like that.

    --


    muppadi...@gmai l.com wrote:
    Hi,
    I want to write an avi to flv converter in php but i am a complete
    newbie to it.
    >
    I would like to know the process of how a converter code is written
    (ie. the basic algorithm ) .
    >
    Any good tutorials or resources where i can learn the basics.
    >
    Thank You,
    Raja.

    Comment

    • Tim Hunt

      #3
      Re: Regd: Programming a Video Converter

      Hi,
      I want to write an avi to flv converter in php but i am a complete
      newbie to it.

      I would like to know the process of how a converter code is written
      (ie. the basic algorithm ) .

      Any good tutorials or resources where i can learn the basics.

      Thank You,
      Raja.
      lorento wrote:
      I think its difficult to develop converter with php. Converting movie
      on the fly need a big resources, PHP can't handle it.
      >
      My idea, use C/C++ language instead of PHP. Compile the c/c++ program
      as cgi program. So it can be call like:
      http://host/converter.cgi?movie=movie.avi like that.
      >
      Try


      To convert to and from avi/flv and many many more


      Comment

      • Chung Leong

        #4
        Re: Regd: Programming a Video Converter


        muppadivya@gmai l.com wrote:
        Hi,
        I want to write an avi to flv converter in php but i am a complete
        newbie to it.
        >
        I would like to know the process of how a converter code is written
        (ie. the basic algorithm ) .
        >
        Any good tutorials or resources where i can learn the basics.
        >
        Thank You,
        Raja.
        I hate to tell you this, but the short answer is, you can't. Adobe only
        makes the specs available under terms which prohibit you from creating
        an encoder. Of course, it's always possible to reverse engineer the
        format if you have the time and skills...

        See this link:


        Comment

        Working...