hello, again, i need your guy's brilliant minds to help me convert a batch of dvd ripped xvid encoded mkv files to dvd disk. i already looked at the 2 guides on this site but they look hard, and i am pure nooby at encoding/conversion, so im looking for a program thats easy to use like winavi or divx2dvd, etc. something that gets the job done like 1,2,3 done
so far ive tried winavi and divx2dvd and both say something wrong with the decoder, like i need one or something, like winavi always says "you need the divx/xvid decoder installed" but i already installed the xvid with k-lite codec pack, and i just installed the newest divx.
any suggestions is appreciated
thanks
+ Reply to Thread
Results 1 to 5 of 5
-
-
In order to help, more information would be needed. According to your subject I gues you want to convert mkv file. Take a look a these post:
https://www.videohelp.com/forum/viewtopic.php?t=268844#1
https://www.videohelp.com/tools?tool=332#comments
If you have a bunch of files (over a dozen), I would recommenc using a script to process them. I dont know of any graphic program that can process a bunch of files properly. So mencoder (mplayer package) would be best (it has its own codecs, so you dont need to install anything else). But be warned. Creating script is not the hardest thing in the world. But you need to get use to programming a bit.
Here is one script I use to convert a bunch of ogm files to avi
Code:#!/bin/sh mkdir out VIDOPTS="copy" AUDOPTS="mp3lame -aid 1" MENCODER="C:/Prog/mplayer/mencoder.exe" for i in *.ogm do echo $i CMD="$MENCODER $i -oac $AUDOPTS -ovc $VIDOPTS -o out\\$i.avi" echo $CMD echo $CMD done
Again, be advice, using this method is completely automated (it will process all your files without any human intervantions). But its not the easyest for a newbie. You will need to setup thinks and understand what you do.
I hope this helps you -
It seems that DVD Santa 4.0 can read most MKV files and convert them into DVD http://www.dvdsanta.com , and it will support batch mode
ChristianHJW
matroska project admin
http://www.matroska.org
Similar Threads
-
MKV guide, Play MKV, MKV to AVI, MKV to DVD, MKV to MP4, MKV to Blu-ray
By Baldrick in forum Newbie / General discussionsReplies: 55Last Post: 29th Jun 2012, 11:19 -
Recommend a batch conversion program for mkv to wmv?
By yoda313 in forum Video ConversionReplies: 2Last Post: 23rd May 2009, 06:58 -
Batch conversion to DVD
By qbecerra in forum Authoring (DVD)Replies: 4Last Post: 30th Sep 2008, 12:45 -
Batch Conversion AVI-DVD
By carbfrze in forum Video ConversionReplies: 2Last Post: 30th Apr 2008, 15:55 -
Batch Convert AVI/OGM/MKV to DVD (anime)
By aktee in forum User guidesReplies: 480Last Post: 4th Nov 2007, 18:18