⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xine.5

📁 linux下的MPEG1
💻 5
字号:
.\" -*-Nroff-*-.\"".de Vb \" Begin verbatim text.ft CW.nf.ne \\$1...de Ve \" End verbatim text.ft R.fi...TH XINE 5 2005-06-15 "The xine project".\" NAME should be all caps, SECTION should be 1-8, maybe w/ subsection.\" other parms are allowed: see man(7), man(1).\"".SH NAMExine \- a free video player.SH MRL (media resource locator)MRLs are similar to URLs in your web browser. They describe the mediato read from. Valid MRLs may be plain file names or one of the following(see also the notes below):.TP\(bu Filesystem:.br.BI file: <path>.br.BI fifo: <path>.br.BI stdin:/.LP.TP\(bu CD and DVD:.br.BI dvd:/[<device_name>][/<title>.<part>].br.BI dvd:/<DVD_image_file_or_directory>[/<title>.<part>].br.BI vcd://[<CD_image>|<device_name>][@[letter]<number>].br.BI vcdo://<track_number>.br.BI cdda:/[<device>][/<track-number>].LP.TP\(bu Video devices:.br.BI v4l://[<tuner_device>/<frequency>].br.BI dvb://<number_or_channel_name>.br.BI dvbc://<channel_name>:<tuning_parameters>.br.BI dvbs://<channel_name>:<tuning_parameters>.br.BI dvbt://<channel_name>:<tuning_parameters>.br.BI dvba://<channel_name>:<tuning_parameters>.br.BR pvr:/<tmp_files_path>!<saved_files_path>!<max_page_age> " (for WinTV PVR 250 and 350)".LP.TP\(bu Network:.br.BI http://<host>....br.BR tcp://<host>[:<port>] " (default port is 7658)".br.BR udp://<host>[:<port>[?iface=<interface>]] " (default port is 7658)".br.BR rtp://<host>[:<port>[?iface=<interface>]] " (default port is 7658)".br.BI smb://....br.BI mms://<host>....br.BI pnm://<host>....br.BR rtsp://<host>... " (requires Real codecs)".br.LP\fBNOTE:\fP where a file name is required, the \fIfull path must beprovided\fP - from a shell, you can use \fB"$PWD/file"\fP or\fB"$(pwd)/file"\fP or \fB"\`pwd\`/file"\fP if the file is in the currentdirectory. (Which one depends on your shell; all three work in bash.)Several MRLs may be specified in order to play a number of consecutivestreams. Additional input plugins will provide additional MRL types. The oneslisted above are available with stock libxine...As of xine-lib 1.1.3, the DVD title number may be 0 (select navigation) andthe chapter number may be 0 (full title)..SS VCD MRL SyntaxA simple \fBvcd:/\fP runs the default item (e.g. perhaps track 1 or entry 0)using the default VCD device (perhaps /dev/cdrom). Both the default item anddefault device are user-configurable.It is however also possible to specify both Video CD device/filename and itemexplicitly in the MRL.For example \fBvcd:/dev/dvd\fP specifies the default entry using device/dev/dvd which might useful if this is your DVD which is different than yourCD-ROM device and your DVD drive can play CD's. And\fBvcd://test_svcd_ntsc.cue\fP specifies the cue file for CD image on disk.(test_svcd_ntsc.bin is the corresponding bin file, but using that won'twork.)After the optional device name or file name, you can name the kind of unit,preceded by a colon. An MRL which ends in a colon is like not adding it atall: the default entry type and number is used. Items come in 4 flavours:"\fBTrack\fP", "\fBEntry\fP", "\fBPlayback\fP" and "\fBSegment\fP". Theseunits are indicated with the capital first letter of each type: \fBT\fP,\fBE\fP, \fBP\fP, \fBS\fP, \fBs\fP. An uppercase \fBS\fP in the MRL displayindicates a NTSC segment while a lowercase \fBs\fP indicates a PAL segment.However, when you enter an MRL, the case of these letters is insignificant.Depending on the Video CD, you might not have any playable segments(\fBS\fP,\fBs\fP) or playback control (\fBP\fP).  If you give a MRL thatrefers to a playback control entry but there is no playback control, yourplayback number will silently be converted into the corresponding entrynumber.You can configure various things that affect MRLs are selected when there issome ambiguity in the MRL name. \fImedia.vcd.autoplay\fP sets what kind ofunit to to use in a MRL is none is given.  Another configuration setting,\fIvcd.device\fP, determines what device to use if that part is not given.When you hit the VCD button, that is equivalent to entering \fBvcd:/\fP andthus these two configuration settings are used to expand the MRL.Some examples of MRLs are given below. In the examples, we assume thefollowing configuration settings:.TP.BI vcd://Play (navigate) default item (in this case Entry ID 0) from the defaultdevice (in this case set to /dev/cdrom).TP.BI vcd://@Same as above.TP.BI vcd:///dev/cdrom@Same effect as above since the default device is set to /dev/cdrom..TP.BI vcd:///dev/cdrom@E0Same as above. But note that this is because we have autoplay:entry which isno longer the default value..TP.BI vcd:///dev/cdrom2@Play (navigate) the default item of /dev/cdrom2.TP.BI vcd:///dev/cdrom2should be same as above but is currently broken?.TP.BI vcd:///dev/cdrom2@T1Play Track 1 from /dev/cdrom2.TP.BI vcd:///dev/cdrom@S1Play segment 1 from /dev/cdrom. This assumes that there *is* a segment 1.Check the MRL list to see if that is the case..TP.BI vcd://@P1Play playlist item 1 from default device. If there is no playback control,the MRL will be converted into vcd:/@E0.Again check the MRL list to see if there is a P1..TP.BI vcd://@P1*Probably same as above..TP.BI vcd:///dev/cdrom@E1Play Entry id 1 from default device..TP.BI vcd://@S0Play segment 0 from default device..TP.BI vcd://@3Play track 3 from default device..TP.BI vcd:///dev/cdrom2:1Play track 1 from /dev/cdrom2..TP.BI vcd:///tmp/ntsc.cue@Play default item (E0) of /tmp/ntsc.bin. Note trailing \fB@\fP..TP.BI vcd://ntsc.cue/@E0Play entry 0 of ntsc.bin..TP.BI vcd:///tmp/ntsc.nrg/@E0Play entry 0 of /tmp/ntsc.nrg (Nero file). Works for some simple Nero images..br.SS DVB.PPDVB MRLs require that ~/.xine/channels.conf exists and contains valid data.This can be obtained by generating a tuning file using the LinuxTV DVB appsutility "scan" (or "dvbscan" if you're using a version newer than 1.1.0):.PP.B scan -o zap /usr/share/doc/dvb-utils/examples/scan/dvb-t/uk-PontopPike >~/.config/xine-lib/channels.conf.PP(This example is for the writer's local transmitter, using a file from theDebian dvb-utils package.).PPFor the dvbc, dvbs and dvbt MRLs, tuning parameters are expected, taking oneof the following forms:.TP.B DVB-S<frequency>:<polarisation>:<sat-no>:<sym-rate>:<vpid>:<apid>:<service-id>.TP.B DVB-C<frequency>:<inversion>:<sym-rate>:<fec>:<qam>:<vpid>:<apid>:<service-id>.TP.B DVB-T<frequency>:<inversion>:<bw>:<fec-hp>:<fec-lp>:<qam>:<transmission-mode>:<guardlist>:<hierarchy-info>:<vpid>:<apid>:<service-id>.TP.B DVB-A<frequency>:<qam>:<vpid>:<apid>:<service-id>.PPThe individual parameters are:.TP 20.B frequencynumber, usually in kHz.TP 20.B polarisation`v' or `h'.TP 20.B sat-nounsigned long, usually 0.TP 20.B sym-ratesymbol rate in MSyms/sec.TP 20.B inversionINVERSION_ON, INVERSION_OFF, INVERSION_AUTO.TP 20.B fec, fec-hp, fec-lpFEC_1_2, FEC_2_3, FEC_3_4 ... FEC_8_9, FEC_AUTO, FEC_NONE.TP 20.B qamQPSK, QAM_128, QAM_16 ....TP 20.B bwBANDWIDTH_6_MHZ, BANDWIDTH_7_MHZ, BANDWIDTH_8_MHZ.TP 20.B transmission-modeTRANSMISSION_MODE_2K, TRANSMISSION_MODE_8K.TP 20.B guardlistGUARD_INTERVAL_1_4, GUARD_INTERVAL_1_8, GUARD_INTERVAL_1_16, GUARD_INTERVAL_1_32,.TP 20.B hierarchy-infoHIERARCHY_1, HIERARCHY_2, HIERARCHY_4, HIERARCHY_NONE.TP 20.B vpidvideo program ID.TP 20.B apidaudio program ID.TP 20.B service-idservice ID (needed for now/next information etc.).SH SUBTITLE.B external subtitle files (any mrl).brText subtitle files may be appended to the MRL:..TP.BI <mrl>#subtitle:<subtitlefile>This is the normal way to define the subtitle file to use. The frontend willnot take any notice of the subtitle file..br.SH STREAM OPTIONS.brAfter a delimiting \fB#\fP you can add several stream parameters:.TP.B novideoVideo will be ignored..TP.B noaudioAudio will be ignored..TP.B nospuSubpictures will be ignored..TP.BI demux: <demux\ name>Specify the demux plugin to use..TP.BI volume: <level>Set audio volume..TP.BI compression: <level>Set audio dynamic range compression..TP.BI <config\ entry> : <config\ value>Assign a new value to any config entry..TP.B change configuration option 'on the fly':.brYou can change a configuration option at any time, using the special.B cfg:/MRL style. The syntax is:.br	cfg:/<config\ entry> : <config\ value>.brUnlike stream config option, you can change anything \fIbefore\fP playing thestream..SH "SEE ALSO"\fBxine\fP(1), \fBaaxine\fP(1), \fBgxine\fP(1), \fBtoxine\fP(1),\fBtotem\fP(1), \fBkaffeine\fP(1) ....brThe programs are documented fully on the xine home page:.UR http://xinehq.de/.IR "http://xinehq.de/".UE.SH AUTHORThis text was extracted from the xine man page by Darren Salt<dsalt@users.sourceforge.net>.The xine man page was written by Siggi Langauf <siggi@debian.org> for thexine project.Lots of additions byGuenter Bartsch <guenter@users.sourceforge.net>,Daniel Caujolle-Bert <f1rmb@users.sourceforge.net>,Rocky Bernstein <rocky@panix.com>, andPhilipp Hahn <pmhahn@users.sourceforge.net>.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -