Created
May 13, 2020 00:35
-
-
Save pmarkun/e27f26a3f7026435ff431a7fa2251fe8 to your computer and use it in GitHub Desktop.
transmite.sh
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| URL="rtsp://192.168.0.33:554/user=admin&password=senhasecreta&channel=2&stream=.sdp" | |
| ARGS="-s 1280x720 -vcodec rawvideo -pix_fmt yuv420p -threads 0 -vf fps=25" | |
| ffmpeg -r 30 -i "$URL" $ARGS -f v4l2 /dev/video2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment