# HG changeset patch # User gabucino # Date 1008005838 0 # Node ID 963b39283f4868333abf89558e3c20f47b9ec653 # Parent ae0e2736a5d4328c7397d0df874cd4d3a66c84e3 fixes, and some new stuff. sorry forgot :) diff -r ae0e2736a5d4 -r 963b39283f48 DOCS/Hungarian/documentation.html --- a/DOCS/Hungarian/documentation.html Mon Dec 10 17:22:52 2001 +0000 +++ b/DOCS/Hungarian/documentation.html Mon Dec 10 17:37:18 2001 +0000 @@ -116,7 +116,21 @@
Bevezető
+ Bevezető
A MEncoder (MPlayer's Movie Encoder) egy egyszerű film
enkóder, az MPlayer által lejátszható formátumok
(AVI/DVD/VCD/VOB/MPG/MOV/VIV/NET) más - MPlayerrel lejátszható -
@@ -15,7 +15,7 @@
stream másoló képességgel. A közeljövőben tervezzük vágó, átméretező filterek
beépítését, és hasonlókat. 2 menetes DivX4 enkódolása 2 menetes DivX4 enkódolása Az elnevezés onnan jön, hogy ezzel a módszerrel a file kétszer lesz
enkódolva. Az első menet néhány pár Mb-os ideiglenes file-t hoz létre, amiket
@@ -87,11 +88,52 @@
-o movie.avi -pass 1 Szintaxis Átméretezés Gyakran előjön a filmek átméretezésének igénye. Ennek oka sokféle lehet,
+ például a fileméret csökkentése, vagy SVCD-ből DivX-be kódolás. A rippelt
+ DVD-ket legtöbbször átméretezik (például egy 4:3-as DVD-t 640x480-ra),
+ különösen akkor ha a cél az 1 CD-s méret és ezzel együtt a jó minőség is.
+ Az SVCD-k képmérete 480x480, és a lejátszóprogramok az ezen fileok
+ fejlécében található aspektusinformáció alapján számítják ki a megjelenítendő
+ kép méretét (pl.: 480x480 + 4:3 = 640x480). Ezért AVI (DivX) file-okba
+ történő kódolásnál figyelembe kell venni azt is, hogy az AVI file-ok ezen
+ információ eltárolására nem képesek. Így az egyetlen megoldás az átméretezés. A kimeneti file képméretét az Az átméretezés egyszerű : Stream másolása A MEncoder kétféleképpen tudja a bemeneti stream-eket kezelni :
+ enkódolja vagy csak átmásolja őket. Ez a rész a másolásról
+ szól. Opciók
+
mencoder -dvd 2 -ovc divx4 -oac mp3lame -divx4opts br=1100 -o movie.avi -pass 2-x
és -y
opciókkal
+ lehet megadni. Ezenkívül 3 féle átméretezőszűrő közül is lehet választani,
+ 0 : gyors bilinear, 1 : bilinear, 2 : bicubic (ennek
+ van a legjobb minősége). Ezt az -sws
opcióval lehet megadni.
+ Alapértelmezett a 0 : gyors bilinear.
+ mencoder sample-svcd.mpg -divx4opts br=1300 -x 640 -y 480 -sws 2 -o output.avi
mencoder [opciók] <bemeneti file> [opciók] ...
+
+-ovc copy
opció) : érdekes dolgokat
+ lehet vele csinálni :)
+ Mint például FLI vagy VIVO vagy MPEG1 video másolása AVI file-ba !
+ Persze az ilyen videokat csak az MPlayer tudja lejátszani :) És
+ ezeknek a haszna gyakorlatilag nulla. A racionális felhasználása ennek
+ például amikor csak az audio stream-et kell enkódolni (pl tömörítetlen
+ PCM-et MP3-ba).-oac copy
opció) : egyértelmű.
Szintaxis
+ + mencoder [opciók] [bemeneti file] [opciók] ...
Opciók
Megj.: az összes rendelkezésre álló opcióhoz olvasd el a manpage-t !
@@ -192,13 +234,16 @@ -Példák
+Példák
A MEncoder használata a legkönnyebb dolog a Földön.
A DVD 2-es fejezetének enkódolása :
mencoder -dvd 2 -o title2.avi
A DVD 2-es fejezetének enkódolása, átméretezéssel :
+ mencoder -dvd 2 -x 640 -y 480 -sws 2 -o title2.avi
Enkódolás HTTP-ről :
mencoder http://mplayer.hq/example.avi -o example.avi
Overview
+ Overview
MEncoder (MPlayer's Movie Encoder) is a simple movie encoder,
designed to encode MPlayer-playable movies
(AVI/DVD/VCD/VOB/MPG/MOV/VIV/NET) to other MPlayer-playable formats (see
@@ -14,7 +14,7 @@
copying abilities. In the future, there will be cropping, resizing filters, and
other interesting stuff. Encoding 2-pass DivX4 Encoding 2-pass DivX4 The name comes from the fact that this method encodes the file twice.
The first encoding (dubbed pass) creates some temporary files with a
@@ -82,11 +83,49 @@
-o movie.avi -pass 1 Syntax Rescaling movies Often the need to resize movie images' size emerges. Its reasons can be many,
+ examples are decreasing output file size, encoding SVCDs to DivX. Ripped DVDs
+ are mostly rescaled, for example a 4:3 DVD should be 640x480, especially
+ when you want it to fit to 1 CD, and have good quality at the same time.
+ SVCDs have 480x480 size, and their header contains the aspect ratio the
+ player should use (Ex.: 480x480 + 4:3 = 640x480). However when encoding to
+ AVI (DivX) files, you have be aware that AVI headers don't store this
+ value. Thus, the only solution is rescaling. The output size is specified with the Rescaling is very simple : Stream copying MEncoder can handle input streams in two ways : encode or
+ copy them. This section is about copying. Available options
+
mencoder -dvd 2 -ovc divx4 -oac mp3lame -divx4opts br=1100 -o movie.avi -pass 2-x
, and -y
+ options. Furthermore, there are 3 rescaling filters in MEncoder, 0
+ : fast 1 : bilinear, 2 : bilinear, bicubic (best quality).
+ They can be specified with the -sws
option. If not specified,
+ MEncoder will use 0 : fast bilinear.
+ mencoder sample-svcd.mpg -divx4opts br=1300 -x 640 -y 480 -sws 2 -o output.avi
mencoder [options] <input file> [options] ...
+
+-ovc copy
) : nice stuff can be done :)
+ Like, putting (not converting!) FLI or VIVO or MPEG1 video into an AVI file !
+ Of course only MPlayer can play such files :) And it probably has no
+ real life value at all. Rationally : video stream copying can be useful for
+ example when only the audio stream has to be encoded (like, uncompressed PCM
+ to MP3).-oac copy
) : straightforward.
Syntax
+ + mencoder [options] [input file] [options] ...
Available options
NOTE : for all available options, read the manpage !
@@ -187,13 +226,16 @@Examples
+Examples
Using MEncoder is the easiest thing on Earth. See the following :
Encoding from DVD, title 2 :
mencoder -dvd 2 -o title2.avi
Encoding from DVD, title 2, with rescaling :
+ mencoder -dvd 2 -x 640 -y 480 -sws 2 -o title2.avi
Encoding from HTTP :
mencoder http://mplayer.hq/example.avi -o example.avi