Raspbian简易RTSP服务

Raspbian简易RTSP服务

  • 1. 源由
  • 2. 搭建简易RTSP服务器
    • 2.1 系统安装
    • 2.2 软件安装
    • 2.3 命令介绍
      • 2.3.1 libcamera-hello
      • 2.3.2 libcamera-vid
      • 2.3.3 cvlc
  • 3. 实测
  • 4. 参考资料

1. 源由

鉴于前期的一些准备工作:

  • 《ArduPilot开源飞控之Companion Computers简单分析》
  • 《ArduPilot开源代码之CompanionComputer上天计划》

以及手头可用的资源RaspberryPi(PiZero/Pi3B+),选择rpanion-server这个想对容易上手的伴机电脑。

在使用过程中确实也遇到一些问题:

  1. Can’t set “Maximum Bitrate” beyond 10MB on Raspberry Pi3B+ #191
  2. Re-install process will fail due to the existence of binary(node/npm) links #194
  3. Feature Request: pan-tilt gimbal controls #196
  4. Is there any way to save configuration locally on Rpanion? #197
  5. 720P@20FPS latency is obviously there, any idea? #204

整个过程中也得到了stephendade的大力支持和帮助。

当然,整理这份资料,主要目的是

  1. 记录一下其他方式搭建简易RTSP服务器
  2. 了解最简系统下的RTSP服务性能
  3. 同时,和Rpanion做一个对比

期望:用最简单的命令或者环境来做对比测试。

2. 搭建简易RTSP服务器

  • 最简单的环境:rpi-rtsp-gstreamer 对应的资料:《Streaming Raspberry Pi Video via RTSP with GStreamer and Video4Linux》

  • 最简单的命令:libcamera-vid + cvlc 对应的资料:《How to use libcamera-vid to stream rtsp on raspberry pi? #3097》

注:最终结合了上面两份资料,选择了最简单命令来搭建环境。

2.1 系统安装

略,详见《Raspbian镜像无头烧录》

2.2 软件安装

$ sudo apt-get install gstreamer1.0-tools -y
$ sudo apt-get install libgstrtspserver-1.0-dev gstreamer1.0-rtsp -y
$ sudo apt-get install vlc -y

2.3 命令介绍

$ libcamera-hello --list-camera
Available cameras
-----------------
0 : ov5647 [2592x1944] (/base/soc/i2c0mux/i2c@1/ov5647@36)Modes: 'SGBRG10_CSI2P' : 640x480 [58.92 fps - (16, 0)/2560x1920 crop]1296x972 [43.25 fps - (0, 0)/2592x1944 crop]1920x1080 [30.62 fps - (348, 434)/1928x1080 crop]2592x1944 [15.63 fps - (0, 0)/2592x1944 crop]$ libcamera-vid --codec h264 --profile main --level 4 -b 150000000 --framerate 30 --width 1920 --height 1080 -t 0 --inline -o - | cvlc stream:///dev/stdin --sout '#rtp{sdp=rtsp://:8554/stream1}' :demux=h264

2.3.1 libcamera-hello

OV5647摄像头CSI模块,支持以下模式:

  • 640x480 [58.92 fps - (16, 0)/2560x1920 crop]
  • 1296x972 [43.25 fps - (0, 0)/2592x1944 crop]
  • 1920x1080 [30.62 fps - (348, 434)/1928x1080 crop]
  • 2592x1944 [15.63 fps - (0, 0)/2592x1944 crop]
$ libcamera-hello --help
Valid options are:-h [ --help ] [=arg(=1)] (=0)         Print this help message--version [=arg(=1)] (=0)             Displays the build version number--list-cameras [=arg(=1)] (=0)        Lists the available cameras attached to the system.--camera arg (=0)                     Chooses the camera to use. To list the available indexes, use the--list-cameras option.-v [ --verbose ] [=arg(=2)] (=1)      Set verbosity level. Level 0 is no output, 1 is default, 2 is verbose.-c [ --config ] [=arg(=config.txt)]   Read the options from a file. If no filename is specified, default toconfig.txt. In case of duplicate options, the ones provided on the command linewill be used. Note that the config file must only contain the long formoptions.--info-text arg (=#%frame (%fps fps) exp %exp ag %ag dg %dg)Sets the information string on the titlebar. Available values:%frame (frame number)%fps (framerate)%exp (shutter speed)%ag (analogue gain)%dg (digital gain)%rg (red colour gain)%bg (blue colour gain)%focus (focus FoM value)%aelock (AE locked status)%lp (lens position, if known)%afstate (AF state, if supported)--width arg (=0)                      Set the output image width (0 = use default value)--height arg (=0)                     Set the output image height (0 = use default value)-t [ --timeout ] arg (=5000)          Time (in ms) for which program runs-o [ --output ] arg                   Set the output file name--post-process-file arg               Set the file name for configuring the post-processing--rawfull [=arg(=1)] (=0)             Force use of full resolution raw frames-n [ --nopreview ] [=arg(=1)] (=0)    Do not show a preview window-p [ --preview ] arg (=0,0,0,0)       Set the preview window dimensions, given as x,y,width,height e.g. 0,0,640,480-f [ --fullscreen ] [=arg(=1)] (=0)   Use a fullscreen preview window--qt-preview [=arg(=1)] (=0)          Use Qt-based preview window (WARNING: causes heavy CPU load, fullscreen notsupported)--hflip [=arg(=1)] (=0)               Request a horizontal flip transform--vflip [=arg(=1)] (=0)               Request a vertical flip transform--rotation arg (=0)                   Request an image rotation, 0 or 180--roi arg (=0,0,0,0)                  Set region of interest (digital zoom) e.g. 0.25,0.25,0.5,0.5--shutter arg (=0)                    Set a fixed shutter speed in microseconds--analoggain arg (=0)                 Set a fixed gain value (synonym for 'gain' option)--gain arg                            Set a fixed gain value--metering arg (=centre)              Set the metering mode (centre, spot, average, custom)--exposure arg (=normal)              Set the exposure mode (normal, sport)--ev arg (=0)                         Set the EV exposure compensation, where 0 = no change--awb arg (=auto)                     Set the AWB mode (auto, incandescent, tungsten, fluorescent, indoor, daylight,cloudy, custom)--awbgains arg (=0,0)                 Set explict red and blue gains (disable the automatic AWB algorithm)--flush [=arg(=1)] (=0)               Flush output data as soon as possible--wrap arg (=0)                       When writing multiple output files, reset the counter when it reaches thisnumber--brightness arg (=0)                 Adjust the brightness of the output images, in the range -1.0 to 1.0--contrast arg (=1)                   Adjust the contrast of the output image, where 1.0 = normal contrast--saturation arg (=1)                 Adjust the colour saturation of the output, where 1.0 = normal and 0.0 =greyscale--sharpness arg (=1)                  Adjust the sharpness of the output image, where 1.0 = normal sharpening--framerate arg (=-1)                 Set the fixed framerate for preview and video modes--denoise arg (=auto)                 Sets the Denoise operating mode: auto, off, cdn_off, cdn_fast, cdn_hq--viewfinder-width arg (=0)           Width of viewfinder frames from the camera (distinct from the preview windowsize--viewfinder-height arg (=0)          Height of viewfinder frames from the camera (distinct from the preview windowsize)--tuning-file arg (=-)                Name of camera tuning file to use, omit this option for libcamera defaultbehaviour--lores-width arg (=0)                Width of low resolution frames (use 0 to omit low resolution stream--lores-height arg (=0)               Height of low resolution frames (use 0 to omit low resolution stream--mode arg                            Camera mode as W:H:bit-depth:packing, where packing is P (packed) or U(unpacked)--viewfinder-mode arg                 Camera mode for preview as W:H:bit-depth:packing, where packing is P (packed)or U (unpacked)--buffer-count arg (=0)               Number of in-flight requests (and buffers) configured for video, raw, andstill.--viewfinder-buffer-count arg (=0)    Number of in-flight requests (and buffers) configured for preview window.--autofocus-mode arg (=default)       Control to set the mode of the AF (autofocus) algorithm.(manual, auto,continuous)--autofocus-range arg (=normal)       Set the range of focus distances that is scanned.(normal, macro, full)--autofocus-speed arg (=normal)       Control that determines whether the AF algorithm is to move the lens as quicklyas possible or more steadily.(normal, fast)--autofocus-window arg (=0,0,0,0)     Sets AfMetering to  AfMeteringWindows an set region used, e.g.0.25,0.25,0.5,0.5--lens-position arg                   Set the lens to a particular focus position, expressed as a reciprocal distance(0 moves the lens to infinity), or "default" for the hyperfocal distance--hdr [=arg(=1)] (=0)                 Enable (1) or disable (0) High Dynamic Range, where supported--metadata arg                        Save captured image metadata to a file or "-" for stdout--metadata-format arg (=json)         Format to save the metadata in, either txt or json (requires --metadata)

2.3.2 libcamera-vid

视频采集

  • 编码:--codec h264
  • 配置:--profile main
  • 级别:--level 4
  • 码流:-b 150000000
  • 帧率:--framerate 30
  • 宽高:--width 1920 --height 1080
  • 延时:-t 0
  • 强制:--inline
  • 输出:-o -
$ libcamera-vid --help
Valid options are:-h [ --help ] [=arg(=1)] (=0)         Print this help message--version [=arg(=1)] (=0)             Displays the build version number--list-cameras [=arg(=1)] (=0)        Lists the available cameras attached to the system.--camera arg (=0)                     Chooses the camera to use. To list the available indexes, use the--list-cameras option.-v [ --verbose ] [=arg(=2)] (=1)      Set verbosity level. Level 0 is no output, 1 is default, 2 is verbose.-c [ --config ] [=arg(=config.txt)]   Read the options from a file. If no filename is specified, default toconfig.txt. In case of duplicate options, the ones provided on the command linewill be used. Note that the config file must only contain the long formoptions.--info-text arg (=#%frame (%fps fps) exp %exp ag %ag dg %dg)Sets the information string on the titlebar. Available values:%frame (frame number)%fps (framerate)%exp (shutter speed)%ag (analogue gain)%dg (digital gain)%rg (red colour gain)%bg (blue colour gain)%focus (focus FoM value)%aelock (AE locked status)%lp (lens position, if known)%afstate (AF state, if supported)--width arg (=0)                      Set the output image width (0 = use default value)--height arg (=0)                     Set the output image height (0 = use default value)-t [ --timeout ] arg (=5000)          Time (in ms) for which program runs-o [ --output ] arg                   Set the output file name--post-process-file arg               Set the file name for configuring the post-processing--rawfull [=arg(=1)] (=0)             Force use of full resolution raw frames-n [ --nopreview ] [=arg(=1)] (=0)    Do not show a preview window-p [ --preview ] arg (=0,0,0,0)       Set the preview window dimensions, given as x,y,width,height e.g. 0,0,640,480-f [ --fullscreen ] [=arg(=1)] (=0)   Use a fullscreen preview window--qt-preview [=arg(=1)] (=0)          Use Qt-based preview window (WARNING: causes heavy CPU load, fullscreen notsupported)--hflip [=arg(=1)] (=0)               Request a horizontal flip transform--vflip [=arg(=1)] (=0)               Request a vertical flip transform--rotation arg (=0)                   Request an image rotation, 0 or 180--roi arg (=0,0,0,0)                  Set region of interest (digital zoom) e.g. 0.25,0.25,0.5,0.5--shutter arg (=0)                    Set a fixed shutter speed in microseconds--analoggain arg (=0)                 Set a fixed gain value (synonym for 'gain' option)--gain arg                            Set a fixed gain value--metering arg (=centre)              Set the metering mode (centre, spot, average, custom)--exposure arg (=normal)              Set the exposure mode (normal, sport)--ev arg (=0)                         Set the EV exposure compensation, where 0 = no change--awb arg (=auto)                     Set the AWB mode (auto, incandescent, tungsten, fluorescent, indoor, daylight,cloudy, custom)--awbgains arg (=0,0)                 Set explict red and blue gains (disable the automatic AWB algorithm)--flush [=arg(=1)] (=0)               Flush output data as soon as possible--wrap arg (=0)                       When writing multiple output files, reset the counter when it reaches thisnumber--brightness arg (=0)                 Adjust the brightness of the output images, in the range -1.0 to 1.0--contrast arg (=1)                   Adjust the contrast of the output image, where 1.0 = normal contrast--saturation arg (=1)                 Adjust the colour saturation of the output, where 1.0 = normal and 0.0 =greyscale--sharpness arg (=1)                  Adjust the sharpness of the output image, where 1.0 = normal sharpening--framerate arg (=-1)                 Set the fixed framerate for preview and video modes--denoise arg (=auto)                 Sets the Denoise operating mode: auto, off, cdn_off, cdn_fast, cdn_hq--viewfinder-width arg (=0)           Width of viewfinder frames from the camera (distinct from the preview windowsize--viewfinder-height arg (=0)          Height of viewfinder frames from the camera (distinct from the preview windowsize)--tuning-file arg (=-)                Name of camera tuning file to use, omit this option for libcamera defaultbehaviour--lores-width arg (=0)                Width of low resolution frames (use 0 to omit low resolution stream--lores-height arg (=0)               Height of low resolution frames (use 0 to omit low resolution stream--mode arg                            Camera mode as W:H:bit-depth:packing, where packing is P (packed) or U(unpacked)--viewfinder-mode arg                 Camera mode for preview as W:H:bit-depth:packing, where packing is P (packed)or U (unpacked)--buffer-count arg (=0)               Number of in-flight requests (and buffers) configured for video, raw, andstill.--viewfinder-buffer-count arg (=0)    Number of in-flight requests (and buffers) configured for preview window.--autofocus-mode arg (=default)       Control to set the mode of the AF (autofocus) algorithm.(manual, auto,continuous)--autofocus-range arg (=normal)       Set the range of focus distances that is scanned.(normal, macro, full)--autofocus-speed arg (=normal)       Control that determines whether the AF algorithm is to move the lens as quicklyas possible or more steadily.(normal, fast)--autofocus-window arg (=0,0,0,0)     Sets AfMetering to  AfMeteringWindows an set region used, e.g.0.25,0.25,0.5,0.5--lens-position arg                   Set the lens to a particular focus position, expressed as a reciprocal distance(0 moves the lens to infinity), or "default" for the hyperfocal distance--hdr [=arg(=1)] (=0)                 Enable (1) or disable (0) High Dynamic Range, where supported--metadata arg                        Save captured image metadata to a file or "-" for stdout--metadata-format arg (=json)         Format to save the metadata in, either txt or json (requires --metadata)-b [ --bitrate ] arg (=0)             Set the video bitrate for encoding, in bits/second (h264 only)--profile arg                         Set the encoding profile (h264 only)--level arg                           Set the encoding level (h264 only)-g [ --intra ] arg (=0)               Set the intra frame period (h264 only)--inline [=arg(=1)] (=0)              Force PPS/SPS header with every I frame (h264 only)--codec arg (=h264)                   Set the codec to use, either h264, mjpeg or yuv420--save-pts arg                        Save a timestamp file with this name-q [ --quality ] arg (=50)            Set the MJPEG quality parameter (mjpeg only)-l [ --listen ] [=arg(=1)] (=0)       Listen for an incoming client network connection before sending data to theclient-k [ --keypress ] [=arg(=1)] (=0)     Pause or resume video recording when ENTER pressed-s [ --signal ] [=arg(=1)] (=0)       Pause or resume video recording when signal received-i [ --initial ] arg (=record)        Use 'pause' to pause the recording at startup, otherwise 'record' (the default)--split [=arg(=1)] (=0)               Create a new output file every time recording is paused and then resumed--segment arg (=0)                    Break the recording into files of approximately this many milliseconds--circular [=arg(=4)] (=0)            Write output to a circular buffer of the given size (in MB) which is saved onexit--frames arg (=0)                     Run for the exact number of frames specified. This will override any timeoutset.

2.3.3 cvlc

cvlc stream:///dev/stdin --sout '#rtp{sdp=rtsp://:8554/stream1}' :demux=h264 这里需要仔细的阅读以下文档:

  • RTP (I): Intro to RTP and SDP
  • RTP (II): Streaming with FFmpeg

还不太熟悉这个命令,不过个人理解如下:

  • 输入输出:stream:///dev/stdin --sout '#rtp{sdp=rtsp://:8554/stream1}'
  • H264编码::demux=h264
$ cvlc --help
VLC media player 3.0.20 Vetinari (revision 3.0.20-0-g6f0d0ab126b)
Usage: vlc [options] [stream] ...
You can specify multiple streams on the commandline.
They will be enqueued in the playlist.
The first item specified will be played first.Options-styles:--option  A global option that is set for the duration of the program.-option  A single letter version of a global --option.:option  An option that only applies to the stream directly before itand that overrides previous settings.Stream MRL syntax:[[access][/demux]://]URL[#[title][:chapter][-[title][:chapter]]][:option=value ...]Many of the global --options can also be used as MRL specific :options.Multiple :option=value pairs can be specified.URL syntax:file:///path/file              Plain media filehttp://host[:port]/file        HTTP URLftp://host[:port]/file         FTP URLmms://host[:port]/file         MMS URLscreen://                      Screen capturedvd://[device]                 DVD devicevcd://[device]                 VCD devicecdda://[device]                Audio CD deviceudp://[[<source address>]@[<bind address>][:<bind port>]]UDP stream sent by a streaming servervlc://pause:<seconds>          Pause the playlist for a certain timevlc://quit                     Special item to quit VLCcore program (core)Audio--audio, --no-audio        Enable audio(default enabled)--force-dolby-surround {0 (Auto), 1 (On), 2 (Off)}Force detection of Dolby Surround--audio-replay-gain-mode {none,track,album}Replay gain mode--audio-replay-gain-preamp <float>Replay preamp--audio-replay-gain-default <float>Default replay gain--audio-time-stretch, --no-audio-time-stretchEnable time stretching audio(default enabled)--audio-filter <string>    Audio filters--audio-visual {any,visual,glspectrum,none}Audio visualisationsVideo-f, --fullscreen, --no-fullscreenFullscreen video output(default disabled)--video-on-top, --no-video-on-topAlways on top(default disabled)--video-wallpaper, --no-video-wallpaperEnable wallpaper mode(default disabled)--video-title-show, --no-video-title-showShow media title on video(default enabled)--video-title-timeout <integer>Show video title for x milliseconds--video-title-position {0 (Centre), 1 (Left), 2 (Right), 4 (Top), 8 (Bottom), 5 (Top-Left), 6 (Top-Right), 9 (Bottom-Left), 10 (Bottom-Right)}Position of video title--mouse-hide-timeout <integer>Hide cursor and fullscreen controller after x millisecondsSnapshot:--snapshot-path <string>   Video snapshot directory (or filename)--snapshot-prefix <string> Video snapshot file prefix--snapshot-format {png,jpg,tiff}Video snapshot format--snapshot-preview, --no-snapshot-previewDisplay video snapshot preview(default enabled)--snapshot-sequential, --no-snapshot-sequentialUse sequential numbers instead of timestamps(default disabled)Window properties:--crop <string>            Video cropping--custom-crop-ratios <string>Custom crop ratios list--aspect-ratio <string>    Source aspect ratio--autoscale, --no-autoscaleVideo Auto Scaling(default enabled)--custom-aspect-ratios <string>Custom aspect ratios list--deinterlace {0 (Off), -1 (Automatic), 1 (On)}Deinterlace--deinterlace-mode {auto,discard,blend,mean,bob,linear,x,yadif,yadif2x,phosphor,ivtc}Deinterlace mode--video-filter <string>    Video filter module--video-splitter <string>  Video splitter moduleSubpicturesOn Screen Display:--spu, --no-spu            Enable sub-pictures(default enabled)--osd, --no-osd            On Screen Display(default enabled)Subtitles:--sub-file <string>        Use subtitle file--sub-autodetect-file, --no-sub-autodetect-fileAutodetect subtitle files(default enabled)--sub-text-scale <integer [10 .. 500]>Subtitles text scaling factorOverlays:--sub-source <string>      Subpictures source module--sub-filter <string>      Subpictures filter moduleTrack settings:--audio-language <string>  Audio language--sub-language <string>    Subtitle language--menu-language <string>   Menu language--preferred-resolution {-1 (Best available), 1080 (Full HD (1080p)), 720 (HD (720p)), 576 (Standard Definition (576 or 480 lines)), 360 (Low Definition (360 lines)), 240 (Very Low Definition (240 lines))}Preferred video resolutionPlayback control:--input-repeat <integer [0 .. 65535]>Input repetitions--input-fast-seek, --no-input-fast-seekFast seek(default disabled)--rate <float>             Playback speedDefault devices:--dvd <string>             DVD device--vcd <string>             VCD deviceAdvanced:--input-title-format <string>Change title according to current mediaInput--stream-filter <string>   Stream filter modulePlaylistPerformance options:-Z, --random, --no-random      Play files randomly forever(default disabled)-L, --loop, --no-loop          Repeat all(default disabled)-R, --repeat, --no-repeat      Repeat current item(default disabled)--play-and-exit, --no-play-and-exitPlay and exit(default disabled)--play-and-stop, --no-play-and-stopPlay and stop(default disabled)--start-paused, --no-start-pausedStart paused(default disabled)--playlist-autostart, --no-playlist-autostartAuto start(default enabled)--playlist-cork, --no-playlist-corkPause on audio communication(default enabled)--media-library, --no-media-libraryUse media library(default disabled)--playlist-tree, --no-playlist-treeDisplay playlist tree(default disabled)--open <string>            Default stream--auto-preparse, --no-auto-preparseAutomatically preparse items(default enabled)--preparse-timeout <integer>Preparsing timeout--metadata-network-access, --no-metadata-network-accessAllow metadata network access(default disabled)--recursive {none,collapse,expand}Subdirectory behaviour--ignore-filetypes <string>Ignored extensions--show-hiddenfiles, --no-show-hiddenfilesShow hidden files(default disabled)-v, --verbose <integer>        Verbosity (0,1,2)--pidfile <string>         Write process id to file--advanced, --no-advanced  Show advanced options(default disabled)--interact, --no-interact  Interface interaction(default enabled)-I, --intf <string>            Interface module--extraintf <string>       Extra interface modules--control <string>         Control interfacesHot keys--hotkeys-y-wheel-mode {-1 (Ignore), 0 (Volume control), 2 (Position control), 3 (Position control reversed)}Mouse wheel vertical axis control--hotkeys-x-wheel-mode {-1 (Ignore), 0 (Volume control), 2 (Position control), 3 (Position control reversed)}Mouse wheel horizontal axis control--global-key-toggle-fullscreen <string>Fullscreen--key-toggle-fullscreen <string>Fullscreen--global-key-leave-fullscreen <string>Exit fullscreen--key-leave-fullscreen <string>Exit fullscreen--global-key-play-pause <string>Play/Pause--key-play-pause <string>  Play/Pause--global-key-faster <string>Faster--key-faster <string>      Faster--global-key-slower <string>Slower--key-slower <string>      Slower--global-key-rate-normal <string>Normal rate--key-rate-normal <string> Normal rate--global-key-rate-faster-fine <string>Faster (fine)--key-rate-faster-fine <string>Faster (fine)--global-key-rate-slower-fine <string>Slower (fine)--key-rate-slower-fine <string>Slower (fine)--global-key-next <string> Next--key-next <string>        Next--global-key-prev <string> Previous--key-prev <string>        Previous--global-key-stop <string> Stop--key-stop <string>        Stop--global-key-jump-extrashort <string>Very short backwards jump--key-jump-extrashort <string>Very short backwards jump--global-key-jump+extrashort <string>Very short forward jump--key-jump+extrashort <string>Very short forward jump--global-key-jump-short <string>Short backwards jump--key-jump-short <string>  Short backwards jump--global-key-jump+short <string>Short forward jump--key-jump+short <string>  Short forward jump--global-key-jump-medium <string>Medium backwards jump--key-jump-medium <string> Medium backwards jump--global-key-jump+medium <string>Medium forward jump--key-jump+medium <string> Medium forward jump--global-key-jump-long <string>Long backwards jump--key-jump-long <string>   Long backwards jump--global-key-jump+long <string>Long forward jump--key-jump+long <string>   Long forward jump--global-key-frame-next <string>Next frame--key-frame-next <string>  Next frame--global-key-quit <string> Quit--key-quit <string>        Quit--global-key-vol-up <string>Volume up--key-vol-up <string>      Volume up--global-key-vol-down <string>Volume down--key-vol-down <string>    Volume down--global-key-vol-mute <string>Mute--key-vol-mute <string>    Mute--global-key-audio-track <string>Cycle audio track--key-audio-track <string> Cycle audio track--global-key-audiodevice-cycle <string>Cycle through audio devices--key-audiodevice-cycle <string>Cycle through audio devices--global-key-subtitle-revtrack <string>Cycle subtitle track in reverse order--key-subtitle-revtrack <string>Cycle subtitle track in reverse order--global-key-subtitle-track <string>Cycle subtitle track--key-subtitle-track <string>Cycle subtitle track--global-key-subtitle-toggle <string>Toggle subtitles--key-subtitle-toggle <string>Toggle subtitles--global-key-program-sid-next <string>Cycle next program Service ID--key-program-sid-next <string>Cycle next program Service ID--global-key-program-sid-prev <string>Cycle previous program Service ID--key-program-sid-prev <string>Cycle previous program Service ID--global-key-aspect-ratio <string>Cycle source aspect ratio--key-aspect-ratio <string>Cycle source aspect ratio--global-key-crop <string> Cycle video crop--key-crop <string>        Cycle video crop--global-key-toggle-autoscale <string>Toggle autoscaling--key-toggle-autoscale <string>Toggle autoscaling--global-key-incr-scalefactor <string>Increase scale factor--key-incr-scalefactor <string>Increase scale factor--global-key-decr-scalefactor <string>Decrease scale factor--key-decr-scalefactor <string>Decrease scale factor--global-key-deinterlace <string>Toggle deinterlacing--key-deinterlace <string> Toggle deinterlacing--global-key-deinterlace-mode <string>Cycle deinterlace modes--key-deinterlace-mode <string>Cycle deinterlace modes--global-key-intf-show <string>Show controller in fullscreen--key-intf-show <string>   Show controller in fullscreen--global-key-wallpaper <string>Toggle wallpaper mode in video output--key-wallpaper <string>   Toggle wallpaper mode in video output--global-key-random <string>Random--key-random <string>      Random--global-key-loop <string> Normal/Loop/Repeat--key-loop <string>        Normal/Loop/Repeat--global-key-zoom-quarter <string>1:4 Quarter--key-zoom-quarter <string>1:4 Quarter--global-key-zoom-half <string>1:2 Half--key-zoom-half <string>   1:2 Half--global-key-zoom-original <string>1:1 Original--key-zoom-original <string>1:1 Original--global-key-zoom-double <string>2:1 Double--key-zoom-double <string> 2:1 DoubleJump sizes:--extrashort-jump-size <integer>Very short jump length--short-jump-size <integer>Short jump length--medium-jump-size <integer>Medium jump length--long-jump-size <integer> Long jump length--bookmark1 <string>       Playlist bookmark 1--bookmark2 <string>       Playlist bookmark 2--bookmark3 <string>       Playlist bookmark 3--bookmark4 <string>       Playlist bookmark 4--bookmark5 <string>       Playlist bookmark 5--bookmark6 <string>       Playlist bookmark 6--bookmark7 <string>       Playlist bookmark 7--bookmark8 <string>       Playlist bookmark 8--bookmark9 <string>       Playlist bookmark 9--bookmark10 <string>      Playlist bookmark 10-h, --help, --no-help          print help for VLC (can be combined with --advanced and --help-verbose)(default disabled)-H, --full-help, --no-full-helpExhaustive help for VLC and its modules(default disabled)--longhelp, --no-longhelp  print help for VLC and all its modules (can be combined with --advanced and --help-verbose)(default disabled)--help-verbose, --no-help-verboseask for extra verbosity when displaying help(default disabled)-l, --list, --no-list          print a list of available modules(default disabled)--list-verbose, --no-list-verboseprint a list of available modules with extra detail(default disabled)-p, --module <string>          print help on a specific module (can be combined with --advanced and --help-verbose). Prefix the module name with = for strict matches.--ignore-config, --no-ignore-configno configuration option will be loaded nor saved to config file(default enabled)--reset-config, --no-reset-configreset the current config to the default values(default disabled)--reset-plugins-cache, --no-reset-plugins-cacheresets the current plugins cache(default disabled)--version, --no-version    print version information(default disabled)--config <string>          use alternate config fileNote: add --advanced to your command line to see advanced options.To get exhaustive help, use '-H'.

3. 实测

注:链接视频是一个合集,有Rpanion/libcamera_ivd等视频,可以点开来看下效果。

总的来说:Rpi3B+ OV5647 CSI摄像模组,在640x480 @ 30/50FPS下实时的效果还是可以的。目前该摄像头驱动好像并不支持720P,所以高清的时候,会很卡顿。

$ libcamera-vid --codec h264 --profile main --level 4 --framerate 30 --width 1920 --height 1080 -t 0 --inline -o - | cvlc stream:///dev/stdin --sout '#rtp{sdp=rtsp://:8554/stream1}' :demux=h264

  • OV5647_libcamera_cvlc_1920x1080x30FPS

OV5647-1920x1080x30FPS

4. 参考资料

【1】Raspbian安装云台
【2】Raspbian安装摄像头
【3】Raspbian镜像无头烧录

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/682383.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Python re找到特定pattern并将此pattern重复n次

要找到字符串s中的数字&#xff0c;并将这些数字重复3次&#xff1a; import re s "abc123def456ghi789" # 找到所有的数字 numbers re.findall(r\d, s) # 重复每个数字3次 repeated_numbers [num * 3 for num in numbers] # 将重复的数字放回原位置 #…

【QT+QGIS跨平台编译】之四十:【gsl+Qt跨平台编译】(一套代码、一套框架,跨平台编译)

文章目录 一、GSL介绍二、GSL下载三、文件分析四、pro文件五、编译实践一、GSL介绍 GSL(GNU Scientific Library)是一个开源的数值计算库,用于提供一系列常用的数学函数和算法。它为科学计算和数据分析提供了高效、可靠的工具。 GSL库提供了丰富的功能,包括数值积分、数值…

C++-带你深度理解string类的常见接口

1. 为什么学习string类&#xff1f; C语言中&#xff0c;字符串是以\0结尾的一些字符的集合&#xff0c;为了操作方便&#xff0c;C标准库中提供了一些str系列的库函数&#xff0c;但是这些库函数与字符串是分离开的&#xff0c;不太符合OOP的思想&#xff0c;而且底层空间需…

“从根到叶:深入理解堆数据结构“

​​​​​​​ 一.堆的概念及实现 1.1堆的概念 在数据结构中&#xff0c;堆是一种特殊的树形数据结构。堆可以分为最大堆和最小堆两种类型。 最大堆&#xff1a;对于堆中的任意节点&#xff0c;其父节点的值都不小于它的值。换句话说&#xff0c;最大堆中的根节点是堆中的最…

AI论文速读 | 2024【综述】图神经网络在智能交通系统中的应用

论文标题&#xff1a;A Survey on Graph Neural Networks in Intelligent Transportation Systems 链接&#xff1a;https://arxiv.org/abs/2401.00713 作者&#xff1a;Hourun Li, Yusheng Zhao, Zhengyang Mao, Yifang Qin, Zhiping Xiao, Jiaqi Feng, Yiyang Gu, Wei Ju, …

PR:熟悉PR工作环境

新建项目 设置自己的页面布局 首选项

【Algorithms 4】算法(第4版)学习笔记 07 - 2.4 优先队列

文章目录 前言参考目录学习笔记1&#xff1a;API1.1&#xff1a;实现 demo 示例1.2&#xff1a;初级实现&#xff08;有序或无序的数组&#xff09;2&#xff1a;二叉堆2.1&#xff1a;完全二叉树2.2&#xff1a;二叉堆2.2.1&#xff1a;堆的表示2.2.2&#xff1a;属性2.3&…

Vue2源码梳理:关于数据驱动,与new Vue时的初始化操作

数据驱动 1 &#xff09;概述 vue的一个核心思想&#xff0c;就是数据驱动 所谓数据驱动&#xff0c;就是指视图是由数据驱动生成的 对视图的修改并不会直接操作dom&#xff0c;而是通过修改数据 它相比我们传统的前端开发&#xff0c;如使用 jQuery 的前端库直接去修改 dom…

Java 基于 SpringBoot+Vue 的智慧外贸平台的研究与实现,附源码

博主介绍&#xff1a;✌程序员徐师兄、7年大厂程序员经历。全网粉丝12w、csdn博客专家、掘金/华为云/阿里云/InfoQ等平台优质作者、专注于Java技术领域和毕业项目实战✌ &#x1f345;文末获取源码联系&#x1f345; &#x1f447;&#x1f3fb; 精彩专栏推荐订阅&#x1f447;…

【Vue】Vue基础入门

&#x1f4dd;个人主页&#xff1a;五敷有你 &#x1f525;系列专栏&#xff1a;Vue ⛺️稳重求进&#xff0c;晒太阳 Vue概念 是一个用于构建用户界面的渐进式框架优点&#xff1a;大大提高开发效率缺点&#xff1a;需要理解记忆规则 创建Vue实例 步骤&#xff1a; …

Arm发布新的人工智能Cortex-M处理器

Arm发布了一款新的Cortex-M处理器&#xff0c;旨在为资源受限的物联网&#xff08;IoT&#xff09;设备提供先进的人工智能功能。这款新的Cortex-M52声称是最小的、面积和成本效率最高的处理器&#xff0c;采用了Arm Helium技术&#xff0c;使开发者能够在单一工具链上使用简化…

小结与数字的魅力的开篇

小结 本系列主要介绍了一些排序算法&#xff0c;包括冒泡排序、快速排序、直接插入排序、希尔排序、简单选择排序、堆排序、归并排序、计数排序、桶排序和基数排序。 排序算法本身并不难&#xff0c;但其涉及的知识点却星罗棋布&#xff0c;其变化莫测的思路更让人难以捉摸&am…

Socket.D 开源输传协议 v2.4.0 发布

Socket.D 协议 是基于"事件"和"语义消息""流"的网络应用层传输协议。有用户说&#xff0c;“Socket.D 之于 Socket&#xff0c;尤如 Vue 之于 Js、Mvc 之于 Http”。支持 tcp, udp, ws, kcp 传输。协议特点可参考《官网介绍》。 pyton 已开发完…

移动机器人激光SLAM导航(五):Cartographer SLAM 篇

参考 Cartographer 官方文档Cartographer 从入门到精通 1. Cartographer 安装 1.1 前置条件 推荐在刚装好的 Ubuntu 16.04 或 Ubuntu 18.04 上进行编译ROS 安装&#xff1a;ROS学习1&#xff1a;ROS概述与环境搭建 1.2 依赖库安装 资源下载完解压并执行以下指令 https://pa…

Spring Boot 笔记 009 创建接口_更新用户基本信息

1.1.1 给User实体类添加校验 package com.geji.pojo;import com.fasterxml.jackson.annotation.JsonIgnore; import jakarta.validation.constraints.Email; import jakarta.validation.constraints.NotEmpty; import jakarta.validation.constraints.NotNull; import jakarta…

【Java程序设计】【C00260】基于Springboot的企业客户信息反馈平台(有论文)

基于Springboot的企业客户信息反馈平台&#xff08;有论文&#xff09; 项目简介项目获取开发环境项目技术运行截图 项目简介 这是一个基于Springboot的企业客户信息反馈平台 本系统分为平台功能模块、管理员功能模块以及客户功能模块。 平台功能模块&#xff1a;在平台首页可…

FastAI 之书(面向程序员的 FastAI)(六)

原文&#xff1a;www.bookstack.cn/read/th-fastai-book 译者&#xff1a;飞龙 协议&#xff1a;CC BY-NC-SA 4.0 第十三章&#xff1a;卷积神经网络 原文&#xff1a;www.bookstack.cn/read/th-fastai-book/44d8848dfac0c1b0.md 译者&#xff1a;飞龙 协议&#xff1a;CC BY-N…

【Java程序设计】【C00257】基于Springboot的校园二手书交易平台(有论文)

基于Springboot的校园二手书交易平台&#xff08;有论文&#xff09; 项目简介项目获取开发环境项目技术运行截图 项目简介 这是一个基于Springboot的乐校园二手书交易管理系统 本系统分为系统功能模块、管理员功能模块、卖家用户功能模块以及用户功能模块。 系统功能模块&…

【教程】C++语言基础学习笔记(九)——指针

写在前面&#xff1a; 如果文章对你有帮助&#xff0c;记得点赞关注加收藏一波&#xff0c;利于以后需要的时候复习&#xff0c;多谢支持&#xff01; 【C语言基础学习】系列文章 第一章 《项目与程序结构》 第二章 《数据类型》 第三章 《运算符》 第四章 《流程控制》 第五章…

TCP和UDP面试题提问

@TOC TCP(传输控制协议)和UDP(用户数据报协议)是两种计算机网络通信协议,它们在网络通信中起着不同的作用。 TCP TCP 是面向连接的协议,它在数据传输之前需要在发送端和接收端建立一条连接。TCP 提供可靠的数据传输,它使用确认和重传机制来确保数据的可靠性和完整性。…