6 lines
129 B
Bash
Executable File
6 lines
129 B
Bash
Executable File
#!/bin/bash
|
|
url=$1
|
|
key=$2
|
|
/opt/movistar/ffmpeg -re -cenc_decryption_key $key -i $url -c:v copy -c:a copy -f mpegts pipe:1
|
|
exit 0
|