From ae01bb3f31f116d44079a01618869985883d50dc Mon Sep 17 00:00:00 2001 From: eyck Date: Thu, 23 Aug 2001 13:31:58 +0000 Subject: [PATCH] preliminary linuxdoc version of docs in polish. this is not only unfinished but there are some technical problems ( polish national characters in many outputs - dvi, info, html! ) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1662 b3059339-0415-0410-9bf9-f77b7e298cf2 --- DOCS/Polish/Makefile | 46 +++++++ DOCS/Polish/documentation.sgml | 212 +++++++++++++++++++++++++++++++++ 2 files changed, 258 insertions(+) create mode 100644 DOCS/Polish/Makefile create mode 100644 DOCS/Polish/documentation.sgml diff --git a/DOCS/Polish/Makefile b/DOCS/Polish/Makefile new file mode 100644 index 0000000000..391ab63714 --- /dev/null +++ b/DOCS/Polish/Makefile @@ -0,0 +1,46 @@ +#! /bin/make -f +# +# Makefile to convert the example.sgml + +# old multiple commands way +# COMMAND=sgml2 + +# new single command approach +COMMAND=linuxdoc --backend= + +SOURCE=documentation.sgml + +all: txt html tex dvi ps pdf info lyx rtf + echo "all output formats are created!" + + +txt: + $(COMMAND)$@ $(SOURCE) + +html: + $(COMMAND)$@ $(SOURCE) + +tex: + $(COMMAND)latex -o $@ $(SOURCE) + +dvi: + $(COMMAND)latex -o $@ $(SOURCE) + +ps: + $(COMMAND)latex -o $@ $(SOURCE) + +pdf: + $(COMMAND)latex -o $@ $(SOURCE) + +info: + $(COMMAND)$@ $(SOURCE) + +lyx: + $(COMMAND)$@ $(SOURCE) + +rtf: + $(COMMAND)$@ $(SOURCE) + +clean: + rm -f *.txt *.html *.tex *.dvi *.ps *.pdf *.info *.lyx *.rtf + diff --git a/DOCS/Polish/documentation.sgml b/DOCS/Polish/documentation.sgml new file mode 100644 index 0000000000..049e38fe34 --- /dev/null +++ b/DOCS/Polish/documentation.sgml @@ -0,0 +1,212 @@ + + + + +
+ + + + +MPlayer - Movie Player for LINUX (C) 2000-2001 Arpad Gereoffy (A'rpi/ESP-team) +<url url="http://www.mplayerhq.hu/homepage/"> + + + + oparte na dokumentacji napisanej przez Gábor Bérczi (Gabucino) + + + tłumaczenie i migracja do linuxdoc Dariush Pietrzak + + miejsce na ID jak wejdzie do cvsa$Id$ + + +Dokument ten opisuje odgrywarke MPlayer, dokument jest w fazie testów. + + + + + + + + + +Wprowadzenie + + + +O programie +

+ +MPlayer jest odgrywarką filmów. Wyświetla większość plików MPEG, +AVI oraz ASF korzystając z wielu własnych oraz Win32 DLL kodeków. +Możesz również oglądać VCD, DVD oraz filmy w DivX. Kolejną dużą zaletą +mplayera jest szeroki wachlarz sterowników wyjścia. Mplayer działa z X11, Xv, +DGA, OpenGL, SVGAlib, fbdev, ale możesz też korzystać z GGI iSDL ( i w ten sposób +z wielu sterowników dostarczanych przez SDL - na przykład AAlib ) oraz z +niskopoziomowych sterowników specyficznych dla danej karty (dla Matrox G200/400/450). + Większość dostępnych sterowników udostępnia softwarowe lub hardwarowe skalowania, +możesz więc radować się oglądaniem film w trybie pełnoekranowym. + A co powiesz na duże antyaliasowane podtytuły z cieniem ( 7 supportowanych typów!!) +z węgierskimi, angielskimi, czeskimi, koreańskimi fontami, cyrylicą oraz OSD? + + + I didn't write any codecs, just some players. I spent + a lot of time finding the best way to parse bad damaged input files + (both MPEG and AVI) and to do perfect A-V sync with seeking ability. + My player is rock solid playing damaged MPEG files (useful for some VCDs), + and it plays bad AVI files which are unplayable with the famous + windows media player. Even AVI files without index chunk are playable, and + you can rebuild their indexes with the -idx option, thus enabling seeking! + As you see, stability and quality are the most important things for me, + but the speed is also amazing. + +

+
+ + +Historia +

+Wszystko zaczęło się rok temu...(2000) +Próbowałem wielu odgrywarek pod linuxa (mtv,xmps,dvdview,livid/oms,VideoLAN, +xine,xanim,avifile,xmmp) ale każda miała jakiś feler. Głównie w przypadku +szczególnych plików lub z synchronizacją audio/video. Większość z nich nie +potrafiła odgrywać zarówno plików MPEG1/2 jak i AVI(DivX). Wiele z nich +miało również problemy z jakością obrazu oraz prędkoscią. +Postanowiłem więc napisać/zmodyfikować nową.... + + + +mpg12play v0.1-v0.3: + The first try, hacked together in a half hour! + I've used libmpeg3 from www.heroinewarrior.com up to the version 0.3, + but there were image quality and speed problems with it. +mpg12play v0.5-v0.87: + Mpeg codec replaced with DVDview by Dirk Farin, it was a great stuff, + but it was slow and was written in C++ (I hate C++!!!) +mpg12play v0.9-v0.95pre5: + Mpeg codec was libmpeg2 (mpeg2dec) by Aaron Holtzman & Michel Lespinasse. + It's great, optimized very fast C code with perfect image quality and + 100% MPEG standard conformance. +MPlayer v0.3-v0.9: + It was a pack of two programs: mpg12playv0.95pre6 and my new simple AVI + player 'avip' based on avifile's Win32 DLL loader. +MPlayer v0.10: + The MPEG and AVI player in a single binary! +MPlayer v0.11: + Some new developers joined and from 0.11 the mplayer project is a team-work! + Added .ASF file support, and OpenDivX (see www.projectmayo.com) en/decoding. +MPlayer v0.17 "The IdegCounter" + The release version of the 0.11pre after 4 months of heavy development! + Try it, and be amazed! Thousands of new features added... and of course + old code was improved too, bugs removed etc. +MPlayer 0.18 "The BugCounter" + 2 months since 0.17 and here's a new release.. Completed ASF support, + more subtitle formats, introduced libao (similar to libvo but to audio), + even more stable than ever, and so on. It's a MUST ! + + + +As you see, I didn't write any codecs, just some players. Instead I spent +a lot of time finding the best way to parse bad damaged input files +(both MPEG and AVI) and to do perfect A-V sync with seeking ability. +My player is rock solid playing damaged MPEG files (useful for some VCDs), +and it plays bad AVI files which are unplayable with the famous +windows media player. Even AVI files without index chunk are playable, and +you can rebuild their indexes with the -idx option, thus enabling seeking! +As you see, stability and quality are the most important things for me, +but the speed is also amazing. + +

+ +
+ +Installation + + +What about the GUI? +

+I'm not a GUI programmer. I hate GUIs, I like the pure black 80x25 console. +So the player has only keyboard control from the controlling console/xterm now. +There is a GUI development for the player, coordinated by Pontscho/Fresh! +It's still under development, but it will be merged and released real soon. +BTW he needs some nice skins, if you are a good graphician, contact him!!! + + + +

+
+ +
+ + + +Features + + + Obsługiwane formaty wejścia +

+ + VCD (Video CD) bezpośrednio z CD-ROMu lub z obrazu .bin + DVD, bezpośrednio z Twojej płyty DVD, opcjonalnie używając libcss do deszyfrowania + MPEG 1/2 System Stream (PS/PES/VOB) i Elementary Stream (ES) + RIFF AVI file format + ASF 1.0 file format + obsługuje czytanie z pliku, stdin, DVD oraz sieci przez HTTP + + Uwaga: o obsłudze quicktime (.mov/.qt) oraz realmedia (.ra/.rm) czytaj w FAQ-u! +

+
+ + Obsługiwanie kodeki audio i video +

+ + Sprawdź + znajdziesz tam kompletną, codziennie odświeżaną listę!!! + + Najważniejsze kodeki video: + MPEG1 (VCD) and MPEG2 (DVD) video + DivX, OpenDivX i inne warianty MPEG4 + Windows Media Video 7 (WMV1) wykorzystywany w plikach .wmv + Intel Indeo codecs (3.1,3.2,4.1,5.0) + MJPEG, ASV2 oraz inne formaty sprzętowe + +Najważniejsze kodeki audio: + MPEG layer 2, and layer 3 (MP3) audio (natywny kod, z optymalizacjami 3dnow) + AC3 dolby audio (natywny kod, z optymalizacjami 3dnow) + Voxware audio + alaw, msgsm, pcm and other simple old audio formats + + + +Jeśli masz kodeka nie opisanego tutaj, oraz jeszcze nie obsługiwanego +przeczytaj oraz DOCS/CODECS +by uzyskać informacje jego statusie oraz jak można nam pomóc dodać dla +niego obsługę. + +

+
+ + + + + +

+

+
+ +
+ + + + + + +

+

+
+
+ + +