AVI conversion solution
Home › Forums › General Discussion › AVI conversion solution
- This topic is empty.
-
AuthorPosts
-
October 19, 2012 at 6:08 pm #24135WaterBurnDotDotDotParticipant
I developed an app to convert MP4 and MKV files into AVI. The resulting files play with no issues on the Wii. I recently had a request for the app so I decided to toss it out there to see how it favors.
October 20, 2012 at 6:21 am #30520cadbuscaParticipantNot to knock your effort, but a cardinal rule is not to run unverified exe’s, especially those that supply no specs or details on your pc.
There is no need to convert mkv or mp4 files to avi unless you wish to downsize HD to SD and in that case a simple VLC or FFMPEG command will do the job, just as VLC shares does.
October 20, 2012 at 3:05 pm #30521WaterBurnDotDotDotParticipantappreciate your comments.
I assumed since it was open-source makes it more trusted. Off the top of my head I wouldn’t know how to put it out there any other way. So I am up for suggestions.
My experience with VLC Shares was not the best and not all of us are keen enough to know how to run an FFmpeg command against a file.
I have, and I believe other people, the issue of having multiple MP4 video’s that will lag on WiiMC because the resolution is > 480p. Most MP4 video’s are in 720×404. WiiMC can play these but the audio notoriously goes out of synch.
My solution is to put the files that need converted into a location, push a button, walk away and as they complete I can watch them on WiiMC.
-b
October 20, 2012 at 4:19 pm #30522cadbuscaParticipantOpen Source would mean you are including the source code so others can review and compile it themselves.
You could also post the ffmpeg command that you are using in your exe to do the conversion, and post the formats that you are converting to. eg: divx/mp3.aviOctober 23, 2012 at 4:23 pm #30523WaterBurnDotDotDotParticipantThe source code under the source link on the code.google.com site. Can you not see it? Maybe I didn’t set it up correctly.
the FFmpeg switches are below. All files get converted to AVI.
-threads 2 -y -i ” FILENAME ” -f avi -r 29.97 -vcodec libxvid -vtag XVID -s 640×360 -aspect 16:9 -maxrate 1800k -b 1500k -qmin 3 -qmax 5 -bufsize 4096 -mbd 2 -bf 2 -acodec libmp3lame -ar 48000 -ab 128k -ac 2 ” FILENAME “I originally had this in a batch file but wanted a push button solution.
October 24, 2012 at 5:48 am #30524cadbuscaParticipantInteresting. That’s the same command as WINFF uses, but it provides more options.
October 24, 2012 at 2:19 pm #30525WaterBurnDotDotDotParticipantI think I tried WinFF, but didn’t steal the command from them, I got it somewhere else, need to track it down to give it credit.
I want something that will automatically grab them and spit them out. Although I am lazy so never got to the point.
October 25, 2012 at 3:43 am #30526cadbuscaParticipantThe easy way is to create a convert.bat and add it to your sendto folder. Then right click on any video file and Sendto Convert !
-
AuthorPosts
- You must be logged in to reply to this topic.