Video upload and playback

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • lukemack

    Video upload and playback

    Hi,

    Can anyone recommend a class/script which handles video file uploads,
    preferably with Flash integration? I'm looking to have a video
    upload / library section in my cake app.

    I considered the youtube api but they dont have upload functionality
    in the api (yet). The following links suggest what i want to do should
    be possible:

    http://ffmpeg-php.sourceforge.net/ (to convert the files to flv)


    However, the amateurish nature of the second link makes me nervous!
    I'm also not even sure I need to access the meta data in the flv
    files. If I can convert them, I can have a flash video app do the rest
    (progressive download will be fine so no need for true streaming).

    Could AMFPHP handle this?

    Many thanks for any replies.

    <L>

  • Jerry Stuckle

    #2
    Re: Video upload and playback

    lukemack wrote:
    Hi,
    >
    Can anyone recommend a class/script which handles video file uploads,
    preferably with Flash integration? I'm looking to have a video
    upload / library section in my cake app.
    >
    I considered the youtube api but they dont have upload functionality
    in the api (yet). The following links suggest what i want to do should
    be possible:
    >
    http://ffmpeg-php.sourceforge.net/ (to convert the files to flv)

    >
    However, the amateurish nature of the second link makes me nervous!
    I'm also not even sure I need to access the meta data in the flv
    files. If I can convert them, I can have a flash video app do the rest
    (progressive download will be fine so no need for true streaming).
    >
    Could AMFPHP handle this?
    >
    Many thanks for any replies.
    >
    <L>
    >
    If you're talking about uploading and saving a video file, there
    shouldn't be any difference between uploading a video and any other file.

    Now if you want to convert the file to another format, that's a
    different story.

    --
    =============== ===
    Remove the "x" from my email address
    Jerry Stuckle
    JDS Computer Training Corp.
    jstucklex@attgl obal.net
    =============== ===

    Comment

    • dave

      #3
      Re: Video upload and playback

      On Mar 29, 4:17 pm, "lukemack" <lukemst...@gma il.comwrote:
      Hi,
      >
      Can anyone recommend a class/script which handles video file uploads,
      preferably with Flash integration? I'm looking to have a video
      upload / library section in my cake app.
      >
      I considered the youtube api but they dont have upload functionality
      in the api (yet). The following links suggest what i want to do should
      be possible:
      >
      http://ffmpeg-php.sourceforge.net/(to convert the files to flv)http://fanno.dk/index.php?option=com...ategory&id=15&...
      >
      However, the amateurish nature of the second link makes me nervous!
      I'm also not even sure I need to access the meta data in the flv
      files. If I can convert them, I can have a flash video app do the rest
      (progressive download will be fine so no need for true streaming).
      >
      Could AMFPHP handle this?
      >
      Many thanks for any replies.
      >
      <L>
      ffmpeg or mencoder can convert pretty much anything to flv. You can
      create them via php using shell commands once the file is uploaded

      Comment

      • lukemack

        #4
        Re: Video upload and playback

        thanks guys!

        On 30 Mar, 03:59, "dave" <dave.wa...@gma il.comwrote:
        On Mar 29, 4:17 pm, "lukemack" <lukemst...@gma il.comwrote:
        >
        >
        >
        Hi,
        >
        Can anyone recommend a class/script which handles video file uploads,
        preferably with Flash integration? I'm looking to have a video
        upload / library section in my cake app.
        >
        I considered the youtube api but they dont have upload functionality
        in the api (yet). The following links suggest what i want to do should
        be possible:
        >>
        However, the amateurish nature of the second link makes me nervous!
        I'm also not even sure I need to access the meta data in the flv
        files. If I can convert them, I can have a flash video app do the rest
        (progressive download will be fine so no need for true streaming).
        >
        Could AMFPHP handle this?
        >
        Many thanks for any replies.
        >
        <L>
        >
        ffmpeg or mencoder can convert pretty much anything to flv. You can
        create them via php using shell commands once the file is uploaded

        Comment

        Working...