Compare commits

...

18 Commits

Author SHA1 Message Date
douzeb 206a7c3593 WIP 2023-03-08 05:30:17 +01:00
douzeb b132c922f2 Switch to web radio audio source 2023-03-02 15:13:31 +01:00
douzeb 5502ca423c Change encoding to be compatible with owncast passthrough mode 2023-03-02 12:03:02 +01:00
douzeb c18e5b46d7 WIP 2023-03-02 10:15:39 +01:00
Douze Bé 7f5a8fa23c Added v4l script 2023-03-01 23:12:38 +00:00
douzeb 5e0b90b27a Tested version 2023-03-01 23:56:30 +01:00
douzeb 99e84f4432 W.I.P. 2023-03-01 23:31:48 +01:00
douzeb 5a4a7dca98 W.I.P. 2023-03-01 21:34:29 +01:00
douzeb 74d70c8455 W.I.P. 2023-03-01 16:45:50 +01:00
douzeb 03ffbebd73 W.I.P. 2023-03-01 15:18:36 +01:00
douzeb 957fd196f6 W.I.P. 2023-03-01 14:58:03 +01:00
douzeb 5d8848eb96 W.I.P. 2023-03-01 14:54:15 +01:00
douzeb db735c852f W.I.P. 2023-03-01 14:51:16 +01:00
douzeb 7d35ca494b W.I.P. 2023-03-01 14:39:57 +01:00
douzeb b0a971ea14 W.I.P. 2023-03-01 11:46:58 +01:00
douzeb 627f238551 W.I.P. 2023-03-01 11:45:35 +01:00
douzeb 6d8a6d694e W.I.P. 2023-03-01 11:42:50 +01:00
douzeb f0278ea602 add script to stream a v4l2 device 2023-03-01 11:38:10 +01:00
2 changed files with 100 additions and 2 deletions

View File

@ -7,6 +7,7 @@ These scripts rely on :
- `ffmpeg` to generate the audio/video streams. Tested with ffmpeg versions:
- 4.1.6
- 4.2.4
- 4.3.5
- `bc` to compute the encoding buffer size from the specified video bitrate
To install the dependencies on Debian 10 (Buster):
@ -22,6 +23,8 @@ There are 4 main scripts :
send live stream and save a copy to file with static pattern, time overlay (seconds from start) and sine wave audio
- stream_random_noise.sh
send live stream and save a copy to file with random video, time overlay (seconds elapsed from start and local timestamp) and sine wave audio
- stream_v4l_device.sh
send a continuous live stream and save a copy to files, one every 10 minutes, with video from a V4L2 device, a timestamp overlay and sine wave audio or camera audio (see comments in the file)
Run the scripts with no parameter for help.
@ -44,5 +47,3 @@ The other scripts are helpers that are just sortcuts to call the main scripts wi
- stream_random_1080p_3600s.sh
- stream_random_720p_300s.sh
- stream_random_720p_3600s.sh

97
stream_v4l_device.sh Executable file
View File

@ -0,0 +1,97 @@
#!/bin/bash
REPLAY_RESOLUTION=1280x720
LIVE_RESOLUTION=854x480
LIVE_AVBR=1024
LIVE_MVBR=1280
REPLAY_AVBR=2048
REPLAY_MVBR=3072
ABITRATE=128
V4LDEVICE=0
FPS=10
if [[ $# -lt 4 ]] ; then
echo "Not enough arguments supplied" >&2
echo "You need to pass the PeerTube server name as the " >&2
echo "first parameter the rtmp port as the second, the" >&2
echo "streaming key as the third and the v4l2 device as the fourth" >&2
echo " " >&2
echo "syntax: " >&2
echo " $(basename $0) <peertube-server> <rtmp port> <streaming-key> <v4ldevice>" >&2
echo " " >&2
echo "Example :" >&2
echo " `basename $0` tube.example.com 1935 69ac2d29-eba4-4d5f-a3a6-6047e6768ffb 0" >&2
exit 1
fi
URL=rtmp://$1:$2/live/$3
V4LDEVICE=$4
KEYFRAMEINTERVAL=$(echo "2*${FPS}" | bc)
BUFFERSIZE=$(echo "2*${VBITRATE}" | bc)
FILENAME=${1}-cam${V4LDEVICE}
echo " "
echo Will stream to $URL
echo and save a copy of the data file :
echo $FILENAME
# A la ligne xx, utiliser ces lignes pour avoir un son de test généré par ffmpeg :
# -f lavfi -i aevalsrc="(1-min(1\,mod(floor(5*t)\,50)))*0.1*sin(8*PI*(360-2.5/2)*t)+0.1*sin(2*PI*(360-2.5/2)*t)|(1-min(1\,mod(floor(5*t)\,50)))*0.1*sin(8*PI*(360+2.5/2)*t)+0.1*sin(2*PI*(360+2.5/2)*t):sample_rate=48000" \
# -ar 48000 \
# -channel_layout stereo \
# -c:a aac -b:a ${ABITRATE}k \
# A la ligne xx, utiliser ces lignes pour avoir le son de la caméra :
# -f alsa -ac 2 -i hw:CARD=CAMERA,DEV=${V4LDEVICE} \
# -c:a copy \
# A la ligne xx, utiliser ces lignes pour avoir le son d'une web radio :
# -f aac -ac 2 -i http://91.121.159.124:8000/eko-des-garrigues-48k.aac \
# -c:a copy \
ffmpeg \
-loglevel level \
-y \
-f v4l2 -framerate 30 -video_size ${REPLAY_RESOLUTION} -input_format mjpeg -i /dev/video${V4LDEVICE} \
-f aac -ac 2 -i http://91.121.159.124:8000/eko-des-garrigues-48k.aac \
-c:a copy \
-filter_complex "[0:v]drawtext='font=DejaVuSansMono:text=%{pts}: fontcolor=white: fontsize=h/24: box=1: boxcolor=black@0.43: boxborderw=5: x=mod(floor(t/10+1)\,2)*mod(t*(w-text_w)/10\,w-text_w)+mod(floor(t/10)\,2)*(w-text_w-mod(t*(w-text_w)/10\,w-text_w)): y=text_h/2', drawtext='font=DejaVuSansMono:text=%{localtime}: fontcolor=white: fontsize=h/20: box=1: boxcolor=black@0.43: boxborderw=5: x=text_h: y=h-3*text_h/2', split=2[out1][out2]" \
-flags +global_header -preset superfast \
-map '[out1]' -pix_fmt yuv420p -s ${LIVE_RESOLUTION} -c:v libx264 -b:v ${LIVE_AVBR}k -maxrate:v ${LIVE_MVBR}k -g:v ${KEYFRAMEINTERVAL} \
-keyint_min:v ${KEYFRAMEINTERVAL} -r:v ${FPS} -x264-params:v scenecut=0:open_gop=0 -bufsize:v 4096k -profile:v high \
-map 1:a \
-f flv ${URL} \
-map '[out2]' -pix_fmt yuv420p -s ${REPLAY_RESOLUTION} -c:v libx264 -b:v ${LIVE_AVBR}k -maxrate:v ${LIVE_MVBR}k -g:v ${KEYFRAMEINTERVAL} \
-keyint_min:v ${KEYFRAMEINTERVAL} -r:v ${FPS} -x264-params:v scenecut=0:open_gop=0 -bufsize:v 8192k -profile:v high \
-map 1:a \
-f matroska -f segment -segment_time 10:00 -reset_timestamps 1 -strftime 1 "${FILENAME}_%Y-%m-%d_%H-%M-%S.mkv"
# Notes
# Commande ffmpeg utilisée par own_cast
#/usr/bin/ffmpeg -hide_banner -loglevel warning \
#-fflags +genpts \
#-i pipe:0 -map v:0 \
#-c:v:0 libx264 -b:v:0 1008k -maxrate:v:0 1088k -g:v:0 48 -keyint_min:v:0 48 -r:v:0 24 \
#-x264-params:v:0 scenecut=0:open_gop=0 -bufsize:v:0 1088k -profile:v:0 high \
#-map a:0? -c:a:0 copy \
#-preset superfast \
#-var_stream_map v:0,a:0 \
#-f hls -hls_time 2 -hls_list_size 15 -hls_flags program_date_time+independent_segments+omit_endlist \
#-segment_format_options mpegts_flags=mpegts_copyts=1 \
#-tune zerolatency \
#-pix_fmt yuv420p \
#-sc_threshold 0 \
#-master_pl_name stream.m3u8 \
#-hls_segment_filename http://127.0.0.1:45627/%v/stream--KmjKxb4g-%d.ts \
#-max_muxing_queue_size 400 \
#-method PUT http://127.0.0.1:45627/%v/stream.m3u8