mirror of
https://github.com/ksyasuda/aniwrapper.git
synced 2024-10-28 04:44:11 -07:00
update provider ordering
This commit is contained in:
parent
3117738f27
commit
06d3ad3ff2
18
ani-cli
18
ani-cli
@ -88,15 +88,6 @@ download() {
|
||||
generate_link() {
|
||||
case $1 in
|
||||
1)
|
||||
provider_name='Xstreamcdn'
|
||||
progress "Fetching $provider_name links.."
|
||||
fb_id=$(printf "%s" "$resp" | sed -n "s_.*fembed.*/v/__p")
|
||||
refr="https://fembed-hd.com/v/$fb_id"
|
||||
[ -z "$fb_id" ] && return 0
|
||||
result_links="$(curl -A "$AGENT" -s -X POST "https://fembed-hd.com/api/source/$fb_id" -H "x-requested-with:XMLHttpRequest" |
|
||||
sed -e 's/\\//g' -e 's/.*data"://' | tr "}" "\n" | sed -nE 's/.*file":"(.*)","label":"(.*)","type.*/\2>\1/p')"
|
||||
;;
|
||||
2)
|
||||
provider_name='Animixplay'
|
||||
progress "Fetching $provider_name Direct link.."
|
||||
refr="$BASE_URL"
|
||||
@ -105,6 +96,15 @@ generate_link() {
|
||||
ani_id=$(printf "%sLTXs3GrU8we9O%s" "$id" "$enc_id" | base64)
|
||||
result_links="$(curl -s "$BASE_URL/api/live${ani_id}" -A "$AGENT" -I | sed -nE 's_location: (.*)_\1_p' | cut -d"#" -f2 | base64 -d)"
|
||||
;;
|
||||
2)
|
||||
provider_name='Xstreamcdn'
|
||||
progress "Fetching $provider_name links.."
|
||||
fb_id=$(printf "%s" "$resp" | sed -n "s_.*fembed.*/v/__p")
|
||||
refr="https://fembed-hd.com/v/$fb_id"
|
||||
[ -z "$fb_id" ] && return 0
|
||||
result_links="$(curl -A "$AGENT" -s -X POST "https://fembed-hd.com/api/source/$fb_id" -H "x-requested-with:XMLHttpRequest" |
|
||||
sed -e 's/\\//g' -e 's/.*data"://' | tr "}" "\n" | sed -nE 's/.*file":"(.*)","label":"(.*)","type.*/\2>\1/p')"
|
||||
;;
|
||||
*)
|
||||
provider_name='Gogoanime'
|
||||
progress "Fetching $provider_name Direct link.."
|
||||
|
@ -263,7 +263,7 @@ get_player() {
|
||||
|
||||
# prompts the user to select a provider and returns the provider name and index
|
||||
get_provider() {
|
||||
providers="1. Xstreamcdn|2. Animixplay|3. Gogoanime"
|
||||
providers="1. Animixplay|2. Xstreamcdn|3. Gogoanime"
|
||||
if ((IS_ROFI)); then
|
||||
selection="$(rofi -dmenu -config "$CFG_FILE" -DPI "$DPI" \
|
||||
-i -l 7 -theme-str 'listview {columns: 1;} window {width: 45%;}' \
|
||||
|
Loading…
Reference in New Issue
Block a user