mirror of
https://gitea.invidious.io/iv-org/youtube-utils.git
synced 2024-08-15 00:53:16 +00:00
api-helper: Add TV clients
This commit is contained in:
parent
a9b2a07a1c
commit
1e293c67fc
1 changed files with 19 additions and 0 deletions
|
@ -40,6 +40,8 @@ print_clients()
|
||||||
echo " - android"
|
echo " - android"
|
||||||
echo " - android-embed"
|
echo " - android-embed"
|
||||||
echo " - apple-ios"
|
echo " - apple-ios"
|
||||||
|
echo " - tv-html5"
|
||||||
|
echo " - tv-html5-embed"
|
||||||
}
|
}
|
||||||
|
|
||||||
print_endpoints()
|
print_endpoints()
|
||||||
|
@ -309,6 +311,19 @@ case $client_option in
|
||||||
user_agent="com.google.ios.youtube/16.46 (iPhone11,8; U; CPU iOS 15_2 like Mac OS X; en_GB)"
|
user_agent="com.google.ios.youtube/16.46 (iPhone11,8; U; CPU iOS 15_2 like Mac OS X; en_GB)"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
tv-html5)
|
||||||
|
apikey="AIzaSyAO_FJ2SlqU8Q4STEHLGCilw_Y9_11qcW8"
|
||||||
|
client_name="TVHTML5"
|
||||||
|
client_vers="7.20220325"
|
||||||
|
;;
|
||||||
|
|
||||||
|
tv-html5-embed)
|
||||||
|
apikey="AIzaSyAO_FJ2SlqU8Q4STEHLGCilw_Y9_11qcW8"
|
||||||
|
client_name="TVHTML5_SIMPLY_EMBEDDED_PLAYER"
|
||||||
|
client_vers="2.0"
|
||||||
|
screen="EMBED"
|
||||||
|
;;
|
||||||
|
|
||||||
*)
|
*)
|
||||||
echo "Error: Unknown client '$client_option'"
|
echo "Error: Unknown client '$client_option'"
|
||||||
print_clients
|
print_clients
|
||||||
|
@ -434,6 +449,10 @@ if [ $interactive = true ]; then
|
||||||
client="${client},\"deviceMake\":\"${client_extra_device_make}\""
|
client="${client},\"deviceMake\":\"${client_extra_device_make}\""
|
||||||
client="${client},\"deviceModel\":\"${client_extra_device_model}\""
|
client="${client},\"deviceModel\":\"${client_extra_device_model}\""
|
||||||
|
|
||||||
|
if ! [ -z "$screen" ]; then
|
||||||
|
client="${client},\"clientScreen\":\"${screen}\""
|
||||||
|
fi
|
||||||
|
|
||||||
client="${client},\"clientName\":\"${client_name}\""
|
client="${client},\"clientName\":\"${client_name}\""
|
||||||
client="${client},\"clientVersion\":\"${client_vers}\""
|
client="${client},\"clientVersion\":\"${client_vers}\""
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue