Correct profile name casing for FFmpeg, Streamlink, and VLC in fixtures.json

This commit is contained in:
SergeantPanda 2025-12-23 15:17:50 -06:00
parent ff7298a93e
commit 8f811f2ed3

View file

@ -36,7 +36,7 @@
"model": "core.streamprofile",
"pk": 1,
"fields": {
"profile_name": "ffmpeg",
"profile_name": "FFmpeg",
"command": "ffmpeg",
"parameters": "-i {streamUrl} -c:a copy -c:v copy -f mpegts pipe:1",
"is_active": true,
@ -46,7 +46,7 @@
{
"model": "core.streamprofile",
"fields": {
"profile_name": "streamlink",
"profile_name": "Streamlink",
"command": "streamlink",
"parameters": "{streamUrl} best --stdout",
"is_active": true,
@ -56,7 +56,7 @@
{
"model": "core.streamprofile",
"fields": {
"profile_name": "vlc",
"profile_name": "VLC",
"command": "cvlc",
"parameters": "-vv -I dummy --no-video-title-show --http-user-agent {userAgent} {streamUrl} --sout #standard{access=file,mux=ts,dst=-}",
"is_active": true,