Results 1 to 8 of 8
  1. #1
    Join Date
    Dec 2005
    Posts
    1,272

    video convertion

    people will upload differnet format videos to:
    /upload/
    I want to convert them to flv and put them in another folder:
    /done/
    I also want it to delete the files from /upload/ i will do the rest.

    So basically i want a script that converts files to flv, movies the files to another folder, and deletes the uploaded files.

  2. #2
    you can use for this FFmpeg

  3. #3
    Join Date
    Dec 2005
    Posts
    1,272
    I know that i have to use ffmpeg. But i don't know who to use it.

  4. #4
    Join Date
    Aug 2005
    Location
    UK
    Posts
    654
    I use:
    Code:
    ffmpeg -i $file -f flv -s 320x240 $output 1>/dev/null 2>/dev/null
    and if that fails I use:
    Code:
    ffmpeg -i $file -f flv -s 320x240 -ar 44100 $output 1>/dev/null 2>/dev/null

  5. #5
    Join Date
    Mar 2004
    Location
    USA
    Posts
    4,345
    Which program are you using to display them?

    I am looking for a good flash streamer.

    Peace,
    Testing 1.. Testing 1..2.. Testing 1..2..3...

  6. #6
    Join Date
    Aug 2005
    Location
    UK
    Posts
    654
    One of my sites uses "Flash Video Player 2.6.1" and the other uses the "Flow Player". I prefer the first, but the flow player is easy to skin.

  7. #7
    Join Date
    Mar 2004
    Location
    USA
    Posts
    4,345
    Quote Originally Posted by Xeentech
    One of my sites uses "Flash Video Player 2.6.1" and the other uses the "Flow Player". I prefer the first, but the flow player is easy to skin.

    I am actually starting to use Flow Player, but problem is with big files, so I am installing Red5 too.

    You don't happen to know where I can get flowplayer styles?

    Thanks

    Peace,
    Testing 1.. Testing 1..2.. Testing 1..2..3...

  8. #8
    Join Date
    Aug 2005
    Location
    UK
    Posts
    654
    I had the same problem with FLOW. Theres something mentioned in the docs about that, theres a way to set points in the video that can help it, tells it where to start buffering again or something I think. Anyway Flash Video Player seems better for that, it can paly FLVs longer than 15 mins, which is all I needed.

    As for skins, I've no idea, I made my own to match a very specific colour scheam.
    Last edited by Xeentech; 11-04-2006 at 02:00 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •