Best Video Format

  Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
Equium Duo Offline
Junior Member
Posts: 3
Joined: Jun 2011
Reputation: 0
Post: #21
MakeMKV will give you a perfect copy of the main movie. It won't rip menus and extras. It won't compress the movie so it will be quite big but the quality will be identical to what it is on the disk.

MakeMKV is free for DVDs, and will cost money for BluRay. However, at the moment the program is technically still in beta, so they're giving away free temporary licenses for BluRay ripping on their forum, so all the functionality is free for the time being, and DVD will always be free.

Hope that helps.
find quote
PetSue Offline
Member
Posts: 92
Joined: Jul 2011
Reputation: 0
Location: Home
Post: #22
Equium Duo Wrote:MakeMKV will give you a perfect copy of the main movie. It won't rip menus and extras. It won't compress the movie so it will be quite big but the quality will be identical to what it is on the disk.

MakeMKV is free for DVDs, and will cost money for BluRay. However, at the moment the program is technically still in beta, so they're giving away free temporary licenses for BluRay ripping on their forum, so all the functionality is free for the time being, and DVD will always be free.

Hope that helps.

That helps heaps thank you mate, appreciate it Smile
find quote
bluray Offline
Posting Freak
Posts: 7,575
Joined: May 2011
Reputation: 139
Post: #23
According to Avforums user thread (The new Blu-Ray/HD-DVD/DVD Ripping Guide for Media Streamers), there seems to be a lot of issues during playback with MKV file created with MakeMKV. If you ask me what is the best file to maintain its original PQ/AQ, it's ISO (AnyDVD HD is the best in this department). If you want to encode it to smaller file, I am highly recommend these freeware (HandBrake and RipBot264) to encode it to m2ts file. m2ts is the next best thing to ISO, and HandBrake is the best of all freeware (in term of quality). DVDFab is the fastest and friendliest of all paidware (DVDFab BD Ripper). If you want to make the file smaller, you can use TSMuxer to remove un-wanted audio codecs and subtitle. If you want to know the exact audio condec in the file, you can verify it with MediaInfo.

For me, I use nothing but ISO and m2ts with DTS-HD and TrueHD if possible (AsRock)!
(This post was last modified: 2011-07-17 06:20 by bluray.)
find quote
schneidz Offline
Fan
Posts: 389
Joined: Jun 2009
Reputation: 0
Post: #24
i recommend xvidenc or x264enc and play around with all the options.

here is my saved output for xvidenc (these are the settings i like but your tastes mite be different:
Code:
xbmc@XBMCLive:~$ cat bin/xvidenc-ac3-mkv.ksh
#!/bin/bash
################### START OF COMMANDS ###################
dvd=`lsdvd $1 | head -n 1 | awk '{print tolower($3)}' | sed s/_/-/g`
#mkdir /home/xbmc/win/stuff/clips/$dvd
titles=`lsdvd $1 | grep ^Title: | cut -b 8-9 | tail -n 1`
i=1
while [ $i -le $titles ]
do

/usr/bin/mencoder "dvd://$i" -dvd-device $1 -o /dev/null -vc mpeg12 -vf pp=al:c,softskip,unsharp=l5x5:.25:c5x5:.25,harddup -aid 128 -channels 6 -oac lavc -lavcopts acodec=ac3:abitrate=192 -a52drc 1 -ovc xvid -xvidencopts pass=1:turbo:me_quality=6:vhq=4:threads=2:max_bframes=2:bvhq=1:nopacked:quant_ty​pe=h263:noqpel:nogmc:trellis:nointerlacing:chroma_me:chroma_opt:hq_ac:nolumi_mas​k:rc_reaction_delay_factor=0:rc_averaging_period=100:closed_gop:autoaspect -passlogfile "$dvd-`zero-pad-2.x $i`.log"

/usr/bin/mencoder "dvd://$i" -dvd-device $1 -o "$dvd-`zero-pad-2.x $i`".avi -ffourcc XVID -vc mpeg12 -vf pp=al:c,softskip,unsharp=l5x5:.25:c5x5:.25,harddup -aid 128 -channels 6 -oac lavc -lavcopts acodec=ac3:abitrate=192 -a52drc 1 -ovc xvid -xvidencopts pass=2:bitrate=1500:me_quality=6:vhq=4:threads=2:max_bframes=2:bvhq=1:nopacked:q​uant_type=h263:noqpel:nogmc:trellis:nointerlacing:chroma_me:chroma_opt:hq_ac:nol​umi_mask:rc_reaction_delay_factor=0:rc_averaging_period=100:closed_gop:autoaspec​t -passlogfile "$dvd-`zero-pad-2.x $i`.log"

sleep 2

/usr/bin/mkvmerge   --title "$dvd-$title-ac3" --track-name 0:"$dvd-$title-ac3" --language 1:en --track-name 1:"AC3 5.1" "$dvd-`zero-pad-2.x $i`.avi"      -o "$dvd-`zero-pad-2.x $i`.mkv"
sleep 2
rm "$dvd-`zero-pad-2.x $i`.avi" "$dvd-`zero-pad-2.x $i`.log"
i=`expr $i + 1`
done
#################### END OF COMMANDS ####################
find quote
Post Reply