Play RTSP Cam Steams Via Linux
Page 1 of 1
Play RTSP Cam Steams Via Linux
- Code:
ffplay 'rtsp://username:password@ip_address:port/url'
More
unix.stackexchange.com/questions/25368/how-to-play-rtsp-stream-under-linux-for-the-bosch-autodome-junior-hd-iva-camera
Last edited by jamied_uk on 8th April 2018, 22:43; edited 1 time in total
Re: Play RTSP Cam Steams Via Linux
Code
Script To Playback Streams Via Linux Terminal Example
Script To Playback Streams Via Linux Terminal Example
- Code:
#!/bin/bash
# jnet.forumotion.com/t1598-play-rtsp-cam-steams-via-linux?highlight=play+rtsp+cam+stream+linux
#
# Usage: ./play.sh ip
#
# ./Cam_Play.sh "192.168.0.34"
#
#
if [ $# -lt 1 ]; then
echo 1>&2 "$0: Enter IP"
read ip
fi
ip="$1"
port="554"
#ffplay 'rtsp://username:password@ip_address:'$port'/url'
# ffplay 'rtsp://'"$ip"':'$port''
ffplay "rtsp://$ip:$port"
- Code:
./play.sh 192.168.1.14
Similar topics
» Using Linux Play Synth Bash Shell Scripting
» The History of Gaming — From Pay-to-Play to Play-to-Earn
» How to play F-Cat
» Top 5 Best GameFi Projects to Play and Earn
» Getting started with “play to earn” with Cat game!
» The History of Gaming — From Pay-to-Play to Play-to-Earn
» How to play F-Cat
» Top 5 Best GameFi Projects to Play and Earn
» Getting started with “play to earn” with Cat game!
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum