VideoHelp Forum
+ Reply to Thread
Page 26 of 26
FirstFirst ... 16 24 25 26
Results 751 to 758 of 758
Thread
  1. Originally Posted by Tom Saurus View Post
    Originally Posted by iamghost View Post
    you will need chrome addon https://chromewebstore.google.com/detail/get-cookiestxt-locally/cclelndahbckbenkjhflpd...cc?hl=en&pli=1
    name: default.txt put it in cookies folder (your own PATH/cookies/TUBI)
    like that cookies
    Image
    [Attachment 79306 - Click to enlarge]
    There is a warning in Devine about the Chrome Add On. You can find the warning on the Devine GitHub website:

    https://github.com/devine-dl/devine?tab=readme-ov-file

    Scroll down the webpage and there is a section near the bottom that is Cookie File Format and Extensions. There are two alternatives, the chromium one seems just about the same. I have removed the extension and got the alternate version for Chrome. Hopefully the old extension did not do any harm. I felt a little uneasy about it yesterday so I decided to un enable it until I was ready to use it again. I did use it today before I read this but hopefully things will be fine.
    I would like to ask for some support regarding the cookie export.
    I am trying to download a free TV stream from DISCOVERYplus UK to test the service.

    Created an account on DSCP, logged in, installed Chrome extension https://chromewebstore.google.com/detail/get-cookiestxt-locally/cclelndahbckbenkjhflpd...ce=ext_sidebar

    Exported cookies to file as DSCP.txt into my cookies folder.
    In contrast to the screenshot above there are 44 lines in the cookies export file.

    Running devine afterwards gives:
    Code:
    (venv) F:\devine>devine dl -q 720 --s-lang en --sub-format srt DSCP https://www.discoveryplus.com/gb/channel/quest?pc=268
    
                           / __ \/ ____/ |  / /  _/ | / / ____/
                          / / / / __/  | | / // //  |/ / __/
                         / /_/ / /___  | |/ // // /|  / /___
                        /_____/_____/  |___/___/_/ |_/_____/
                        ⠀
                        v3.3.3 Copyright © 2019-2024 rlaphoenix
                          https://github.com/devine-dl/devine
    
         Service Config loaded
         Loaded Cdm Widevine CDM: 4445 (L3)
         Loaded 1 Vaults
    
      ────────────────────────────── Service: DSCP ───────────────────────────────
    
         Service has no Geofence
         - Invalid Token. Cookies are invalid or may have expired.
    Also tried refreshing my session in the webpage, exporting again and retrying once more, within seconds. Same error "Invalid or expired". Browser happily plays the live stream!
    Any idea?
    There are only cookies of domain ".discoveryplus.com" exported in the file. Would I potentially need other sites in addition in the file?

    Also tried changing the config from "downloader: aria2c" to "downloader: curl-impersonate" - still the same problem.

    Verified the whole process with a TUBI stream and storing in cookies\TUBI.txt: Everything works as expected. So there should be no issue with the format of the cookies file, it's naming etc.
    Last edited by cyberschlumpf; 4th Sep 2024 at 09:09.
    Quote Quote  
  2. I'm pretty sure attempting to download the live stream is not possible with the current version of service.
    Only show and video:

    Code:
    TITLE_RE = r"^(?:https?://(?:www\.)?discoveryplus\.com(?:/[a-z]{2})?)?/(?P<type>show|video)/(?P<id>[a-z0-9-/]+)"

    As for the cookies, the cookie 'st' is the only mandatory one:

    Code:
    # Netscape HTTP Cookie File
    # http://curl.haxx.se/rfc/cookie_spec.html
    # This is a generated file!  Do not edit.
    
    eu1-prod-direct.discoveryplus.com	FALSE	/	TRUE		st	{VALUE}
    Note: Replace {VALUE} with the st cookie value.
    Last edited by SaintyUK; 4th Sep 2024 at 09:54. Reason: Remove details about blank line at the end of the file.
    Quote Quote  
  3. Thought as well it might be due to the live stream (where should devine stop?) so I found another apparently FTA episode:

    https://www.discoveryplus.com/gb/show/ainsleys-festive-flavours

    Same issue here.

    It seems that extension does indeed NOT export that particular subdomain. It's in my cookie view in the browser but doesn't get exported. Will add. Thank you! Which cookie extension is the actual recommended one? Do you have a direct link for me please?
    Quote Quote  
  4. Affirmative! Adding the cookie for

    eu1-prod-direct.discoveryplus.com

    manually, makes everything work! (A empty line at the end of the file was NOT necessary). Can download the mentioned episode!

    Thank you very much!
    Quote Quote  
  5. Member
    Join Date
    Mar 2006
    Location
    United States
    Search Comp PM
    Originally Posted by TPD94 View Post
    Originally Posted by stabbedbybrick View Post
    @billybanana:

    Looking at the code, it seems like you need to use --movie for movies (pay attention to the placement of the option):
    Code:
    devine dl --no-folder -q 720 -sl en DSNP --movie entity-5850d3bf-947e-4265-8240-8ec13a87946d
    Devine has been very cleverly written in that it leaves the door open for additional option parameters to be used if the service author wants/needs it. In this case, @TPD94 has added a --movie option to be used when requesting movies to make it easier to differentiate the type of request to the API.

    Whenever an option has been added to a service like this, you need to use it after the service tag, i.e. DSNP --movie.
    My DSNP service code and others are all pretty hot garbage. Crunchyroll is my best written one. Most of them I wrote because I was slap happy at finally figuring Devine out. Soon I’ll start rewriting some of them for better manifests.
    I am still looking, tracing thru your DSNP and HULU services. They work great! But will only get episodes 1-10 of a season.

    What may be a fix for that? I just haven't either figured it out yet, or won't but I am still looking

    Example - Lost s01e01

    Code:
    devine dl -q 720 -w S01E10 DSNP entity-466b3994-b574-44f1-88bc-63707507a6cb
    This does work for episodes 1-10 on any season, any show thus far. Anything past episode 10, will just process, then do nothing.

    Image
    [Attachment 81972 - Click to enlarge]


    Code:
    devine dl -q 720 -w S01E11 DSNP entity-466b3994-b574-44f1-88bc-63707507a6cb
    Image
    [Attachment 81973 - Click to enlarge]


    Same goes for HULU, but now I will check Crunchyroll as you said that way your best one. Maybe that will help me.

    Otherwise, any ideas?
    Quote Quote  
  6. Originally Posted by SaintyUK View Post
    Note: Replace {VALUE} with the st cookie value.
    Where do I find the st cookie value? Ta

    Edit: Found it!
    Last edited by PunchDrunkL0ve; 4th Sep 2024 at 14:32.
    Quote Quote  
  7. Member
    Join Date
    Nov 2006
    Location
    canada
    Search Comp PM
    I'm getting quite a lot of this lately (I have a Nord subscription set up in my yaml)
    Any suggestions to fix it ?
    Thanks

    ❌ Download Failed...
    HTTPSConnectionPool(host='vod-hls-uk-live.akamaized.net',
    port=443): Max retries exceeded with url
    Quote Quote  
  8. I ran across today on Pluto TV U.S. that at anytime seasons can disappear of On Demand shows. But they can come back again at a different time in the month.

    I am noticing a lot of the U.S. Pluto TV website just in not displaying things and you do a search and it says it is having problems. I tried it both Nord VPN and Windscribe Free 10 GB per month version. The Canadian version of the website is not having any such problems but it has a lot less to chose from. Does anyone else have any problems with the website? I am hoping it is a temporary thing.
    Last edited by Tom Saurus; 5th Sep 2024 at 18:06.
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!