Git Product home page Git Product logo

m3u8's People

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

m3u8's Issues

Use Map.lookup instead

m3u8/src/M3U8.hs

Lines 22 to 27 in f44567f

show (Stream s url Video) = "Video Stream: "++(s Map.! "RESOLUTION")++(case Map.member "AUDIO" s of
True -> ", "++(s Map.! "AUDIO")
False -> "")
show (Stream s url Audio) = "Audio Stream: "++(case Map.member "AUDIO" s of
True -> s Map.! "AUDIO"
False -> url)

How to use?

Hi Dev
How to use this? what are the parameter to download m3u8?

Add a slow mode to disable concurrency in segment downloads

In slow mode, recursively process list of segments to be downloaded, when HTTP 429/Too many requests is received, suspend the thread for "retry-after"'s duration (in seconds), and then re-attempt failed segment before continuing

To get retry-after, convert (responseHeaders resp) into a Map and query for "retry-after" as key

For interactive mode:
"Slow/Rate-limited mode (on/off, default = off): "
For auto mode:
--slow

also add:
"Max Concurrency (int, default = 15): "
for auto mode:
--concurrency

rate-limited mode overrides concurrency settings automatically

Remove dependency on drop 18

matches = getAllTextMatches ((drop 18 (str++",")) =~ "[^,]+=(([^,\"]+)|(\"[^\"]+\"))," :: AllTextMatches [] String)

Use this instead:

splitAtFirst :: Eq a => a -> [a] -> ([a], [a])
splitAtFirst x = fmap (drop 1) . break (x ==)

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.