avi to MP4?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • NightTran
    King of Digital Video
    King of Digital Video
    • Aug 2005
    • 4224

    avi to MP4?

    avi to MP4 ( I plan to buy an Ipod ) any one have a good free program?

    thanks
    sigpic
  • admin
    Administrator
    • Nov 2001
    • 8951

    #2
    Videora iPod Converter?

    Videora iPod Converter is a free video conversion application developed by the creators of Videora. It allows you to convert your regular PC video files (avi, mpeg, etc) into the proper video format that your iPod understands.
    Visit Digital Digest and dvdloc8.com, My Blog

    Comment

    • anonymez
      Super Moderator
      • Mar 2004
      • 5525

      #3
      Foolproof, no nonsense method is with ffmpeg. You can write a batch script or two and just drag & drop any video onto one of them. And there are GUIs like Mediacoder and MeGUI.
      Last edited by anonymez; 14 May 2007, 02:50 PM.
      "What were the things in Gremlins called?" - Karl Pilkington

      Comment

      • paglamon
        Lord of Digital Video
        Lord of Digital Video
        • Aug 2005
        • 2126

        #4
        And SUPER.
        sigpic

        ONLY MOMENTS LINGER...DEWDROPS ON A FALLEN LEAF

        Comment

        • anonymez
          Super Moderator
          • Mar 2004
          • 5525

          #5
          For anyone interested, the batch file should look like this:

          Code:
          "C:\path\to\ffmpeg.exe" -i %1 -f mp4 -vcodec h264 -b 600000 -bt 150000 -croptop 4 -cropbottom 4 -cropleft 4 -cropright 4 -s 320x176 -maxrate 768 -cmp 1 -qmin 16 -qmax 51 -me umh -me_range 12 -level 13 -chroma 1 -g 75 -partitions partp8x8+partb8x8 -subq 6 -threads 1 -aspect 16:9 -acodec aac -ab 96000 %1_encoded.mp4
          Just paste that in notepad and save as "ffmpeg.bat". Recent ffmpeg build here and required dll, to be placed in the same folder as ffmpeg. Then just drag & drop a video on the batch file or a shortcut to it.

          Change the "threads" value to 2 or 3 for dual core users, and the resolution and aspect (the "-s" and "-aspect" values respectively) to 320x240 and 4:3 for fullscreen content; you can make another batch file for that if needed. "Untested" on Windows, but I'm sure it works.
          "What were the things in Gremlins called?" - Karl Pilkington

          Comment

          • Chewy
            Super Moderator
            • Nov 2003
            • 18971

            #6
            Then just drag & drop a video on the batch file or a shortcut to it.
            would you clarify this part?

            Comment

            • anonymez
              Super Moderator
              • Mar 2004
              • 5525

              #7
              would you clarify this part?
              Just create a shortcut to the batch file and place it on the desktop. Find any video, drag & drop it onto the shortcut.

              Just tested it on XP in VMware, works a treat.
              "What were the things in Gremlins called?" - Karl Pilkington

              Comment

              • NightTran
                King of Digital Video
                King of Digital Video
                • Aug 2005
                • 4224

                #8
                Originally Posted by admin
                Videora iPod Converter?
                I down load it but it skip I just try one song

                http://www.digital-digest.com/softwa...Converter.html
                Originally Posted by anonymez
                Foolproof, no nonsense method is with ffmpeg. You can write a batch script or two and just drag & drop any video onto one of them. And there are GUIs like Mediacoder and MeGUI.
                I am very duh about this

                Originally Posted by anonymez
                For anyone interested, the batch file should look like this:

                Code:
                "C:\path\to\ffmpeg.exe" -i %1 -f mp4 -vcodec h264 -b 600000 -bt 150000 -croptop 4 -cropbottom 4 -cropleft 4 -cropright 4 -s 320x176 -maxrate 768 -cmp 1 -qmin 16 -qmax 51 -me umh -me_range 12 -level 13 -chroma 1 -g 75 -partitions partp8x8+partb8x8 -subq 6 -threads 1 -aspect 16:9 -acodec aac -ab 96000 %1_encoded.mp4
                Just paste that in notepad and save as "ffmpeg.bat". Recent ffmpeg build here and required dll, to be placed in the same folder as ffmpeg. Then just drag & drop a video on the batch file or a shortcut to it.

                Change the "threads" value to 2 or 3 for dual core users, and the resolution and aspect (the "-s" and "-aspect" values respectively) to 320x240 and 4:3 for fullscreen content; you can make another batch file for that if needed. "Untested" on Windows, but I'm sure it works.
                would you wrote or some one wrote a guide for some one not as good about computer that would help, I really like the ffmpeg

                Thanks
                sigpic

                Comment

                • NightTran
                  King of Digital Video
                  King of Digital Video
                  • Aug 2005
                  • 4224

                  #9
                  I found aprogram call free ipod converter, it is very easy to use and it is free

                  เกมเสี่ยงโชค สล็อตแตกง่าย แตกบ่อยเลือก PG เว็บตรงที่แจกจริง ได้แจ็คพ็อตแตกง่าย โบนัสเยอะที่สุด ทำกำไรได้ดี มีทั้งเกมรางวัลออกบ่อยและโบนัสแตกหนัก ไม่ต้องผ่านเอเย่นต์
                  sigpic

                  Comment

                  • anonymez
                    Super Moderator
                    • Mar 2004
                    • 5525

                    #10
                    I found aprogram call free ipod converter, it is very easy to use and it is free

                    http://www.ipod-video-converter.org/
                    I would use something a little more up to date. I'm sure x264 sliceless threading, for example was introduced after Feb 2006; better performance and smaller compressibility hit for us dual core users.

                    would you wrote or some one wrote a guide for some one not as good about computer that would help, I really like the ffmpeg
                    1. Download ffmpeg and this dll.

                    2. Extract them both into the same folder, C:\Program Files\ffmpeg in this case.

                    3. Run Notepad, paste this:

                    Code:
                    "C:\Program Files\ffmpeg\ffmpeg.exe" -i %1 -f mp4 -vcodec h264 -b 600000 -bt 150000 -croptop 4 -cropbottom 4 -cropleft 4 -cropright 4 -s 320x176 -maxrate 768 -cmp 1 -qmin 16 -qmax 51 -me umh -me_range 12 -level 13 -chroma 1 -g 75 -partitions partp8x8+partb8x8 -subq 6 -threads 1 -aspect 16:9 -acodec aac -ab 96000 %1_encoded.mp4
                    And save as "ffmpeg.bat" in the ffmpeg folder.

                    4. Right-click ffmpeg.bat, select Create Shortcut. Move the shortcut to the desktop.

                    5. Drag & Drop a video onto the shortcut.
                    Last edited by anonymez; 15 May 2007, 07:03 AM.
                    "What were the things in Gremlins called?" - Karl Pilkington

                    Comment

                    • NightTran
                      King of Digital Video
                      King of Digital Video
                      • Aug 2005
                      • 4224

                      #11
                      I have done all that and what would be happen next and where the new video will be at?

                      Thanks
                      sigpic

                      Comment

                      • anonymez
                        Super Moderator
                        • Mar 2004
                        • 5525

                        #12
                        When you drop the video onto the shortcut a command prompt will pop up and show its progress. The new video will be in the same folder & same file name as the source video, just ending with "_encoded.mp4".
                        "What were the things in Gremlins called?" - Karl Pilkington

                        Comment

                        • NightTran
                          King of Digital Video
                          King of Digital Video
                          • Aug 2005
                          • 4224

                          #13
                          I drop one small file in it and it happen really quick but nothing comeout in that FF folder
                          sigpic

                          Comment

                          • admin
                            Administrator
                            • Nov 2001
                            • 8951

                            #14
                            anonymez: Any comments on Videora iPod Converter? I'm thinking about writing a guide for it. It uses (almost) the latest ffmpeg version as the encoding engine I think.
                            Visit Digital Digest and dvdloc8.com, My Blog

                            Comment

                            • NightTran
                              King of Digital Video
                              King of Digital Video
                              • Aug 2005
                              • 4224

                              #15
                              Originally Posted by admin
                              anonymez: Any comments on Videora iPod Converter? I'm thinking about writing a guide for it. It uses (almost) the latest ffmpeg version as the encoding engine I think.
                              I would love to see the guide Thanks you both I still a nob in this
                              sigpic

                              Comment

                              Working...