Coder Social home page Coder Social logo

Can't download episode in dub about ani-cli HOT 8 CLOSED

FilipLac avatar FilipLac commented on May 31, 2024
Can't download episode in dub

from ani-cli.

Comments (8)

FilipLac avatar FilipLac commented on May 31, 2024

And also in ''How a Realist Hero Rebuilt the Kingdom Part 2'' (which is named Season 2 for some reason in script). Almost every episode downloads without 3 episodes (ep 10, 12, 13).

It is also happening with the same error. Network is working fine and downloading other episodes work.

from ani-cli.

Sarvasv-0 avatar Sarvasv-0 commented on May 31, 2024

Final Edit:
It seems to be a curl or allanime bug, I tried to download the same anime and episode in different quality and it worked..
you can try to download in an inferior quality, which might infact work for you.

also -q best is not necessary as ani-cli downloads the episode in best quality by default

from ani-cli.

71zenith avatar 71zenith commented on May 31, 2024

@FilipLac it seems that the auto selected mp4 links are dead for some reason. in this case u can try other qualities like m3u8 and Mp4 . You can check the specific qualities available for a given episode by using ANI_CLI_PLAYER=debug ani-cli <anime>
We can't feasibly check every link for their validity every time so some will need to be manually checked.

from ani-cli.

CoolnsX avatar CoolnsX commented on May 31, 2024

We need to remove wixmp provider

from ani-cli.

FilipLac avatar FilipLac commented on May 31, 2024

Ok, thank you for response, what would be then best way to download them ? Should I use -q m3u8, or is there another witch for this that I could use ?

from ani-cli.

port19x avatar port19x commented on May 31, 2024

@FilipLac it seems that the auto selected mp4 links are dead for some reason. in this case u can try other qualities like m3u8 and Mp4 . You can check the specific qualities available for a given episode by using ANI_CLI_PLAYER=debug ani-cli <anime> We can't feasibly check every link for their validity every time so some will need to be manually checked.

when did we implement m3u8 and mp4 as -q parameters?

from ani-cli.

FilipLac avatar FilipLac commented on May 31, 2024

@FilipLac it seems that the auto selected mp4 links are dead for some reason. in this case u can try other qualities like m3u8 and Mp4 . You can check the specific qualities available for a given episode by using ANI_CLI_PLAYER=debug ani-cli <anime> We can't feasibly check every link for their validity every time so some will need to be manually checked.

I tried -q Mp4 and it also failed, because it tried to use the forbidden links, but it appears that m3u8 works

from ani-cli.

Derisis13 avatar Derisis13 commented on May 31, 2024

@FilipLac it seems that the auto selected mp4 links are dead for some reason. in this case u can try other qualities like m3u8 and Mp4 . You can check the specific qualities available for a given episode by using ANI_CLI_PLAYER=debug ani-cli <anime> We can't feasibly check every link for their validity every time so some will need to be manually checked.

when did we implement m3u8 and mp4 as -q parameters?

It's not explicitely implemented but a consequence of how we handle quality selection in v4:

select_quality() {
    case "$1" in
        best) result=$(printf "%s" "$links" | head -n1) ;;
        worst) result=$(printf "%s" "$links" | grep -E '^[0-9]{3,4}' | tail -n1) ;;
        *) result=$(printf "%s" "$links" | grep -m 1 "$1") ;;
    esac
    [ -z "$result" ] && printf "Specified quality not found, defaulting to best\n" 1>&2 && result=$(printf "%s" "$links" | head -n1)
    printf "%s" "$result" | cut -d'>' -f2
}

from ani-cli.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.