converting videos fo .flv

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Alex69
    Confirmed User
    • Aug 2007
    • 328

    #1

    converting videos fo .flv

    i am looking for some progream to convert masive amount of videos (.asf, .wmv...) to .flv

    - which program would you recommand me?

    thanks
  • Jakenavaro
    Confirmed User
    • Aug 2007
    • 285

    #2
    try to use VEGAS 7 it is nice to use for video editing, and you can convert it .flv

    Comment

    • kesey
      Confirmed User
      • Feb 2006
      • 305

      #3
      Sorenson Squeeze. They're the Flash bitch.

      Kesey Seven
      We Be Lez

      Comment

      • Zorgman
        Confirmed User
        • Aug 2002
        • 6103

        #4
        Flash 8 Encoder. Comes with Flash8.
        ---

        Comment

        • just a punk
          So fuckin' bored
          • Jun 2003
          • 32385

          #5
          http://www.videocharge.com
          Obey the Cowgod

          Comment

          • 2012
            So Fucking What
            • Jul 2006
            • 17189

            #6
            ffmpeg and a custom script for a "masive amount"
            other then that the encoder that comes with the latest version of flash ...
            you can buy Sorenson Squeeze as the next best thing
            best host: Webair | best sponsor: Kink | best coder: 688218966 | Go Fuck Yourself

            Comment

            • Telly
              Confirmed User
              • Jul 2007
              • 334

              #7
              Flash CS3 video convert does batch pretty good

              MetroMoney.com - Limited-time $40PPS Promotion!
              DeviantHardcore.com

              Comment

              • zootloofa
                Registered User
                • Aug 2006
                • 31

                #8
                Sorenson is the best!
                GoldPerfect.com
                Make more money now! GoldPerfect presents PerfectVideo.com, the next step in DVD paysites.


                Comment

                • DonKon
                  Confirmed User
                  • Jun 2007
                  • 119

                  #9
                  i currently use Allok Video to FLV Converter
                  icq: 458229371

                  Comment

                  • D Ghost
                    null
                    • May 2006
                    • 9819

                    #10
                    Originally posted by Zorgman
                    Flash 8 Encoder. Comes with Flash8.
                    Ya Flash Encoder

                    Comment

                    • PornDiscounts-R
                      Confirmed User
                      • Aug 2006
                      • 1272

                      #11
                      videocharge
                      Email# rasmus(you*know)porndiscounts.com

                      Comment

                      • moogle
                        Confirmed User
                        • Sep 2007
                        • 314

                        #12
                        Ultra FLV Converter:

                        http://www.aone-soft.com/flash_video_flv_converter.htm



                        Comment

                        • tiptop
                          Confirmed User
                          • Dec 2007
                          • 2377

                          #13
                          video FLV

                          go to zamzar.com
                          email: tiptopdomains_at_gmail_com

                          Comment

                          • sodasoda
                            Confirmed User
                            • Feb 2007
                            • 125

                            #14
                            some perl code that allows to convert files on *nix server

                            it needs mencoder, ffmpeg, flvtool2

                            Code:
                            #!/usr/bin/perl
                            # converter.pl
                            my $dir = $ARGV[0];
                            my $EXT = $ARGV[1];
                            my $newdir = "out/";
                            mkdir($newdir) if (!(-e $newdir));
                            opendir (DOORDIR, "$dir");
                            my @fls = grep { /\.$EXT/ } readdir DOORDIR;
                            close DOORDIR;
                            foreach (@fls){
                              my $f = $_;
                              my @x = split(/\./, $f);
                              system ("mencoder $f -o $newdir$x[0]r.flv -of lavf -vf scale=200:150 -oac mp3lame -lameopts abr:br=56 -ovc lavc -lavcopts vcodec=flv:vbitrate=400:mbd=2:mv0:trell:v4mv:cbp:last_pred=3 -lavfopts i_certify_that_my_video_stream_does_not_use_b_frames -srate 22050");
                              system ("flvtool2 -Uv $newdir$x[0]r.flv $newdir$x[0].flv");
                              system ("ffmpeg -i $newdir$x[0].flv -an -itsoffset 00:00:06 -ss 00:00:01 -t 00:00:01 -r 1 -y $newdir$x[0].%d.jpg");
                              system ("rm $newdir$x[0]r.flv");
                            }
                            Code:
                            user@server$ perl converter.pl ./ avi
                            this will convert all avi files in current dir to flv
                            and place all flv files in out/ dir

                            for example from video.avi it makes out/video.flv & out/video.1.jpg, where video.1.jpg - screenshot of 6th second

                            if you need to convert mpg or wmv files just
                            Code:
                            user@server$ perl converter.pl ./ mpg
                            Code:
                            user@server$ perl converter.pl ./ wmv
                            HNY, ppl!
                            ATTN! Free Porn | 1-900-10039

                            Comment

                            • brandonstills
                              Confirmed User
                              • Dec 2007
                              • 1964

                              #15
                              the program the comes with adobe flash let's you do bulk conversions. flash video encoder I think it was called.

                              Brandon Stills
                              Industry and programming veteran
                              [email protected] | skype: brandonstills | ICQ #495-171-318

                              Comment

                              Working...