gorecord: Unterschied zwischen den Versionen

Aus Mikiwiki
Zur Navigation springen Zur Suche springen
(Die Seite wurde neu angelegt: „Der Shell-Befehl <b>gorecord</b> erfasst Video- und Audiodaten von einem WIS GO7007-Videoencoder und schreibt sie in eine AVI-Datei. Das Erfassen dauert s...“)
 
Keine Bearbeitungszusammenfassung
Zeile 56: Zeile 56:
{{cat|Shell-Befehl}}
{{cat|Shell-Befehl}}
{{cat|Videoencoder}}
{{cat|Videoencoder}}
{{cat||UNFERTIG}}

Version vom 12. August 2009, 21:36 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.

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
Input video options:
  -input <n>                    Capture from input port <n> (default: 0)
  -mode <mode>                  Select mode for input video (default: ntsc)
                                  Baseband modes: ntsc, pal, secam
                                  TV modes: pal-bg, pal-i, pal-dk, secam-l,
                                            ntsc, ntsc-j
  -tvchan <band>:<chan>         Tune to TV channel <chan> in band <band>
                                  Bands: ntsc-bcast, ntsc-cable, ntsc-hrc,
                                         ntsc-bcast-jp, ntsc-cable-jp,
                                         europe, france, russia
  -tvaudio <mode>               Select mode for TV audio (default: stereo)
                                  Modes: mono, stereo, lang1, lang2
Sensor controls:  (defaults listed in probe information)
  -brightness <n>               Specify video brightness adjustment
  -contrast <n>                 Specify video contrast adjustment
  -saturation <n>               Specify video saturation adjustment
  -hue <n>                      Specify video hue adjustment
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


[[category:]]