About site: Multimedia/Digital Video - Linux Media
Return to Computers also Computers
  About site: http://dvdripping-guid.berlios.de/

Title: Multimedia/Digital Video - Linux Media Instructions and scripts allowing ripping DVDs to Divx with mencoder (mplayer).
USonyx Offers VPS hosting. Features include root access, 10% CPU usage restriction, free domain name, SSH and FTP access, POP3 server, sendmail, custom http.conf (private apache service). Supports PHP, Perl,

eJaz Tools for general usage developer. Visual XCopy, IHA - ClassInfo (extract classes information from in .cpp/.pas/.html/.java files), dbAdmin programs.

Bliss_Concepts Full service design firm providing web/graphic/multimedia design, custom and stock photography, and digital media solutions.

Cross-Platform_Instant_Messenger_for_LAN MacPopUp is a program that allows Macintosh/Windows users to exchange instant messages with other users on any local area network (LAN).

System_Administrators_Guild_(SAGE) Code of Ethics. SAGE is a special technical group of the Advanced Computing Systems Association (USENIX).

Blinkie_Land Offering blinkies, tutorials using Paint Shop Pro, Animation Shop, Photo Impact and GIF Animator. Message board, chat and links. Information on joining the MSN group.


  Alexa statistic for http://dvdripping-guid.berlios.de/





Get your Google PageRank






Please visit: http://dvdripping-guid.berlios.de/


  Related sites for http://dvdripping-guid.berlios.de/
    Manfred_Minimair Seton Hall University. Computational algebra. Publications and presentations.
    Creature_House Software developer of Expression, LivingCels, and author of Skeletal Strokes. Expression is a vector drawing program with 'Skeletal Stroke' technology which stretch or repeat across the length of a ve
    Puma_LCD/LED_Simulator A realistic LCD/LED Simulator OCX control makes software come alive with built-in animation, high performance graphics and customizable colors. [Commercial]
    CentralPets_com For pet and animal related websites. Browser uploads. Templates provided.
    XmlTool Mouse-based editor for XML files, that generates HTML, XSL, DTD files, and gets Database structure and queries. [Shareware]
    Firewall_Scripts Contains a collection of useful scripts for the management, rules setting and conversion, and other related topics referencing open source firewall offerings. Included are tools to convert ipchains ru
    Hammond_Photographic_Services Prints 35mm color slides and 4x5 color transparencies from PowerPoint and other computer graphic files.
    Jungle_Creatures,_Inc_ Provide .Net tools: Decompiler.NET is combination Decompiler and Obfuscator for Microsoft .NET. Deploy.NET is a tool for packaging Windows Forms based .NET applications for deployment. XMLModeler is a
    ACM_Transactions_on_Information_Systems Includes articles indexed by volume number and submission information.
    Intellitask Web based project management application from Triangle Net Solutions.
    Forestry_Systems,_Inc_ Provides windows, log, lumber, pallet, and dimension software, also inventory systems and hand held data collectors, since 1987.
    MP3-Board_in_Music-Linking_Dispute_with_Record_Industry MP3Board.com fired a legal shot over recording industry to preserve its ability to guide Web surfers to online music files, legal and illegal. [News.com] (June 6, 2000)
    RFC_2163 Using the Internet DNS to Distribute MIXER Conformant Global Address Mapping (MCGAM). C. Allocchio. January 1998.
    Ozone Open source, Java, OO DBMS which includes a DOM interface.
    RFC_3228 IANA Considerations for IPv4 Internet Group Management Protocol (IGMP). B. Fenner. February 2002.
    Web_Dreamz Offers design and graphics services.
    J_Maze_Design Services include database technology, Flash, e-commerce, website maintenance, and web hosting. Based in Concord, New Hampshire.
    Net_Result_Designs Design, e-commerce, shopping carts, multimedia, programming in PHP, JavaScript, and C/C++, database development and hosting. Based in Chula Vista, California, United States.
    Wolfcam Images taken from inside the wolf habitat updated every three minutes.
    Aspect-Oriented_Programming_and_Adaptive_Programming How to write more flexible and shorter programs
This is websites2007.org cache of m/ as retrieved on 2008.10.12 websites2007.org's cache is the snapshot that we took of the page as we crawled the web. The page may have changed since that time.
Linux Media logo Ripping DVDs to Divx with mencoder (mplayer) under Linux by paranouei Spanish Version News(20/01/2003): New forum available. You can ask there your questions about this guide. We can do it in two ways, direct ripping to the .avi or doing "three pass encoding". The latter method is explained in http://www.bunkus.org/dvdripping4linux/single/index.html#transcoding_mplayer Direct Ripping play the DVD, calculate how long it last (including credits) in seconds,check if the volume is too low (because we can turn it up with software).Also, if the image looks strechted, maybe mplayer doesn't realize it's in 16:9 format, so we have to explicitly indicate it (with -aspect 16:9), and the image will be all right (this happened to me with "Crouching Tiger Hidden Dragon"). And don't forget to check in which "title id" does the movie start, usually movies start in id 1, but sometimes there are trailers and such so it starts in a different title id (i.e. Crouching Tiger.. started in number 10) (mplayer -dvd 10). calculate the rate to get the desired file size. Knowing how many secondsit lasts,you can use my script dvd-ripping (it's at the end) to get the rate.For example, if you want a file size below 700Mb, you have to calculate thebest rate you can use to get a file under that size."Rate" is the movie qualityin kbits/s. if the movie has black borders you can take them off. First, calculate the borders geometry whith option cropdetect: mencoder -aspect 16:9 -dvd 10 -ovc lavc -lavcopts vcodec=mpeg4:vhq:vbitrate=694 -vop cropdetect,scale -zoom -xy 640 -oac mp3lame -lameopts abr:br=128:vol=9 -o tigreydragon.avi let it run for a while to make sure is ripping the real movie (and not just the credits) and you'll get the values you have to passto crop option to take the black borders off(i.e. in Crouching Tiger.. I get crop=640:272:0:44). Keep in mind these values are relative to the output resolution. run mencoder with your parameters. Here are some parameters I used: vol=9 in -lameopts (this is because the volume was too low, so i gave it some gain. Valid values are between 1 and 10). -aspect 16:9 (this is because mplayer didn't realize this was the original format so i was getting a stretched image). vbitrate=694 in -lavcopts (video rate i got with myscript dvd-ripping) -dvd 10 it's the title id where the movie starts (usually is number 1) crop=640:272:0:44 in -vop (to take the black borders off) So the full command is mencoder -aspect 16:9 -dvd 10 -ovc lavc -lavcopts vcodec=mpeg4:vhq:vbitrate=694 -vop crop=640:272:0:44,scale -zoom -xy 640 -oac mp3lame-lameopts abr:br=128:vol=9 -o tigreydragon.avi This will rip the movie directly from the DVD to the Divx avi file in only one pass. I recommend that at the same time you are ripping, play with mplayer the .avi in a different terminal to check you are getting the desired format (resolution, quality, volume...) Three pass encoding This method is explained in http://www.bunkus.org/dvdripping4linux/single/index.html. Anyway his method uses the *.vob files in the hard drive, and you can make it directly from the DVD with this method: First the sound: mencoder -dvd 1 -ovc frameno -o frameno.avi -oac mp3lame -lameopts abr:br=128 First pass: mencoder -dvd 1 -nosound -oac copy -o /dev/null -ovc lavc -lavcopts vcodec=mpeg4:vbitrate=800:vhq:vpass=1:vqmin=1:vqmax=31 -vop scale -zoom -xy 640 -npp lb Second pass: mencoder -dvd 1 -oac copy -o file.avi -ovc lavc -lavcopts vcodec=mpeg4:vbitrate=800:vhq:vpass=2:vqmin=1:vqmax=31 -vop scale -zoom -xy 640 -npp lb Script dvd-ripping: #!/bin/bashif [ $# != 1 ] ; then echo "Use: dvd-ripping <movie size in seconds>" echo "" exit 1fi# Biggest file size is 700mb, which is 716800kbytes # but just in case we use a little smaller sizeMAXSIZE=700000SEGUNDOS=$1MINUTOS=$(($SEGUNDOS/60))#Audio rate is 128bits/s which is 16kbytes/sAUDIOSIZE=$((16*$SEGUNDOS))LIBRE=$(($MAXSIZE - $AUDIOSIZE))RATE=$((($LIBRE*8) / $SEGUNDOS))echo "Calculating rate for movie which lasts $MINUTOS minutes..."echo "Estimated rate: $RATE"FINALSIZE=$(( ($RATE * $SEGUNDOS)/8 + $AUDIOSIZE))echo "Estimated size: $FINALSIZE"echo "The command is:"echo "mencoder -dvd 1 -ovc lavc \ -lavcopts vcodec=mpeg4:vhq:vbitrate=$RATE \ -vop scale -zoom -xy 640 -oac mp3lame \ -lameopts abr:br=128 -o file.avi" BerliOS Logo Guides (english) Ripping DVDs to Divx with mencoder Transcoding Divx to VCD, SVCD, CVCD, etc. Divx and DVDto VCD with mencvcd Guías (español) Ripeando DVSs a Divx con mencoder Pasando Divx a VCD, SVCD, CVCD, etc. Divx y DVD a VCD con mencvcd Forums (english) Divx VCD, SVCD, CVCD Forums (spanish) Divx VCD, SVCD, CVCD Links Encoding Divx en Linux (Traducción de La Guía de Moritz Bunkus) IT Services UK
 

Instructions

and

scripts

allowing

ripping

DVDs

to

Divx

with

mencoder

(mplayer).

http://dvdripping-guid.berlios.de/

Linux Media 2008 October

dvd rental

dvd


Instructions and scripts allowing ripping DVDs to Divx with mencoder (mplayer).

Rules




© 2008 Internet Explorer 5+ or Netscape 6+

Recommended Sites: 1. Arts - Business - Computers - Games - Health - Home - Kids and Teens - News - Recreation - Reference - Regional - Science - Shopping - Society - Sports - World Miss Gallery - Top Anime Hentai - DVD rental by mail - Online Advertising - Personal Loans - Electricity - Credit Cards - Magazine Subscriptions
2008-10-12 14:30:39

Copyright 2005, 2006 by Webmaster
Websites is cool :) 228Poland Hotels - Hotelreservierung - Torby Reklamowe - Hotel Innsbruck - Gdansk Hotels