gorecord: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Michi (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
Michi (Diskussion | Beiträge) |
||
Zeile 5: | Zeile 5: | ||
{| class=wiki | {| class=wiki | ||
! Option !! Beschreibung | ! Option !! Beschreibung | ||
|- | |||
! colspan=2 | Videoeingang | |||
|- | |||
| <tt>-input <i>zahl</i></tt> || Aufnahme von Eingangsport <i>zahl</i> (Standard: 0). Mögliche Werte sind: | |||
* 0 für Composite (NTSC, PAL/SECAM) | |||
* 1 für S-Video (NTSC, PAL/SECAM) | |||
|- | |||
| <tt>-mode <i>wert</i></tt> || Auswahl des Modus für den Videoeingang (Standard: ntsc). Mögliche Werte sind: | |||
* Basisbandmodi: ntsc, pal, secam | |||
* Fernsehmodi: pal-bg, pal-i, pal-dk, secam-l, ntsc, ntsc-j | |||
|- | |||
| <tt>-tvchan <i>frequenzbereich</i>:<i>kanal</i></tt> || Einstellung auf Fernsehkanal <i>kanal</i> in Frequenzbereich <i>frequenzbereich</i>. Mögliche Werte sind: | |||
* Frequenzbereiche: ntsc-bcast, ntsc-cable, ntsc-hrc, ntsc-bcast-jp, ntsc-cable-jp, europe, france, russia | |||
|- | |||
| <tt>-tvaudio <i>modus</i></tt> || Auswahl des Fernseh-Audiomodus (Standard: stereo). Mögliche Werte sind: | |||
* Fernseh-Audiomodi: mono, stereo, lang1, lang2 | |||
|- | |- | ||
! colspan=2 | Aufnahmeregler | ! colspan=2 | Aufnahmeregler | ||
|- | |- | ||
| <tt>-brightness <i>zahl</i></tt> || Helligkeit. | | <tt>-brightness <i>zahl</i></tt> || Helligkeit zwischen 0 und 255, Standardwert ist 128. | ||
|- | |- | ||
| <tt>-contrast <i>zahl</i></tt> || Kontrast. | | <tt>-contrast <i>zahl</i></tt> || Kontrast zwischen 0 und 127, Standardwert ist 64. | ||
|- | |- | ||
| <tt>-saturation <i>zahl</i></tt> || Sättigung. | | <tt>-saturation <i>zahl</i></tt> || Sättigung zwischen 0 und 127, Standardwert ist 64. | ||
|- | |- | ||
| <tt>-hue <i>zahl</i></tt> || Farbton. | | <tt>-hue <i>zahl</i></tt> || Farbton zwischen -128 und 127, Standardwert ist 0. | ||
|} | |} | ||
Zeile 29: | Zeile 45: | ||
-vdevice <V4L2 device path> Explicitly specify the V4L2 device to use | -vdevice <V4L2 device path> Explicitly specify the V4L2 device to use | ||
-adevice <OSS device path> Explicitly specify the OSS device to use | -adevice <OSS device path> Explicitly specify the OSS device to use | ||
Output stream options: | Output stream options: | ||
-width <n> Specify encoded image width (default: 640) | -width <n> Specify encoded image width (default: 640) |
Version vom 17. August 2009, 01:44 Uhr
Der Shell-Befehl gorecord erfasst Video- und Audiodaten von einem WIS GO7007-Videoencoder und schreibt sie in eine AVI-Datei. Das Erfassen dauert so lange, bis ein angegebene Frame-Grenze erreicht wurde oder die maximale AVI-Dateigrösse erreicht ist.
Optionen
Option | Beschreibung |
---|---|
Videoeingang | |
-input zahl | Aufnahme von Eingangsport zahl (Standard: 0). Mögliche Werte sind:
|
-mode wert | Auswahl des Modus für den Videoeingang (Standard: ntsc). Mögliche Werte sind:
|
-tvchan frequenzbereich:kanal | Einstellung auf Fernsehkanal kanal in Frequenzbereich frequenzbereich. Mögliche Werte sind:
|
-tvaudio modus | Auswahl des Fernseh-Audiomodus (Standard: stereo). Mögliche Werte sind:
|
Aufnahmeregler | |
-brightness zahl | Helligkeit zwischen 0 und 255, Standardwert ist 128. |
-contrast zahl | Kontrast zwischen 0 und 127, Standardwert ist 64. |
-saturation zahl | Sättigung zwischen 0 und 127, Standardwert ist 64. |
-hue zahl | Farbton zwischen -128 und 127, Standardwert ist 0. |
Usage: gorecord [OPTION]... -frames <n> [<AVI file name>] Control options: -verbose Verbosely describe all operations -duration <n> Stop capturing after <n> seconds -frames <n> Stop capturing after <n> video frames -maxsize <n> Stop capturing after <n> Megabytes (2^20 bytes) -noaudio Do not capture audio; only video -nowrite Do not write captured video/audio to a file -vdevice <V4L2 device path> Explicitly specify the V4L2 device to use -adevice <OSS device path> Explicitly specify the OSS device to use Output stream options: -width <n> Specify encoded image width (default: 640) -height <n> Specify encoded image height (default: 480) -fpsdrop <n> Specify encoded frame rate downscale ratio -bitrate <n> Specify a video bitrate (default: 1500 kbps) -format <format> Encode video in <format> (default: mpeg4) Formats: mpeg1, mpeg2, mpeg2-dvd, mpeg4, mjpeg Other Options: Use "%d" in the filename in conjunction with the -maxsize option to create a new file every <n> Megabytes. eg. gorecord filename-"%d".avi
Verwendung
Erfasst MJPEG-Videodaten und PCM-Audiodaten in der Datei "capture.avi".
$ gorecord -duration 60 -format mjpeg capture.avi
Erfasst MPEG4-Videodaten und PCM-Audiodaten bei 800 kbps, schreibt sie aber nicht auf die Festplatte.
$ gorecord -frames 3000 -bitrate 800 -nowrite