12 lines
		
	
	
		
			272 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
		
		
			
		
	
	
			12 lines
		
	
	
		
			272 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| 
								 | 
							
								#!/usr/bin/env bash
							 | 
						||
| 
								 | 
							
								#
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								ffmpeg -re -i "$1" -vcodec h264_nvenc -r 30 -g 30 -loop -1 -c:a aac -b:a 160k -ar 44100 -strict -2 -f flv rtmp:172.16.16.44/live/test &
							 | 
						||
| 
								 | 
							
								ffmpegpid=$!
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								sleep 1
							 | 
						||
| 
								 | 
							
								castnow --exit 'https://broadcast.fizz.buzz/hls/hls/test.m3u8'
							 | 
						||
| 
								 | 
							
								wait "$ffmpegpid"
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								sleep 10
							 |