26 lines
1.5 KiB
Bash
26 lines
1.5 KiB
Bash
#!/bin/bash
|
|
|
|
ffmpeg -f lavfi -i color=c=black:s=1920x1080:d=30 -vf \
|
|
"drawtext=fontfile=roboto.ttf:text='File is no longer available, wait until zurg repairs it':fontcolor=white:fontsize=48:x=(w-tw)/2:y=(h-th)/2" \
|
|
-c:v libx264 -pix_fmt yuv420p no_longer_available.mp4
|
|
|
|
ffmpeg -f lavfi -i color=c=black:s=1920x1080:d=30 -vf \
|
|
"drawtext=fontfile=roboto.ttf:text='Cannot unrestrict file, wait until zurg repairs it':fontcolor=white:fontsize=48:x=(w-tw)/2:y=(h-th)/2" \
|
|
-c:v libx264 -pix_fmt yuv420p cannot_unrestrict_file.mp4
|
|
|
|
ffmpeg -f lavfi -i color=c=black:s=1920x1080:d=30 -vf \
|
|
"drawtext=fontfile=roboto.ttf:text='Returned file is different and not streamable, delete this torrent':fontcolor=white:fontsize=48:x=(w-tw)/2:y=(h-th)/2" \
|
|
-c:v libx264 -pix_fmt yuv420p not_streamable.mp4
|
|
|
|
ffmpeg -f lavfi -i color=c=black:s=1920x1080:d=30 -vf \
|
|
"drawtext=fontfile=roboto.ttf:text='Error creating a new request, try restarting zurg':fontcolor=white:fontsize=48:x=(w-tw)/2:y=(h-th)/2" \
|
|
-c:v libx264 -pix_fmt yuv420p error_new_request.mp4
|
|
|
|
ffmpeg -f lavfi -i color=c=black:s=1920x1080:d=30 -vf \
|
|
"drawtext=fontfile=roboto.ttf:text='Error downloading file, check if real-debrid.com is reachable from your network':fontcolor=white:fontsize=48:x=(w-tw)/2:y=(h-th)/2" \
|
|
-c:v libx264 -pix_fmt yuv420p error_downloading_file.mp4
|
|
|
|
ffmpeg -f lavfi -i color=c=black:s=1920x1080:d=30 -vf \
|
|
"drawtext=fontfile=roboto.ttf:text='Cannot stream the file, wait until zurg repairs it':fontcolor=white:fontsize=48:x=(w-tw)/2:y=(h-th)/2" \
|
|
-c:v libx264 -pix_fmt yuv420p status_code.mp4
|