VideoHelp Forum



Support our site by donate $5 directly to us Thanks!!!

Try StreamFab Downloader and download streaming video from Netflix, Amazon!



+ Reply to Thread
Page 23 of 54
FirstFirst ... 13 21 22 23 24 25 33 ... LastLast
Results 661 to 690 of 1599
  1. Error due to mismatch resolved.

    Is this the cause?:
    beaupy 3.6.1 has requirement rich<13.0.0,>=12.2.0, but you have rich 13.7.0.
    pywidevine 1.8.0 has requirement protobuf<5.0.0,>=4.25.1, but you have protobuf 3.19.5.

    Thanks to shellcmd for resolving the issue.
    Last edited by Spectrumhsm; 6th Jan 2024 at 10:39. Reason: Added additional info.
    Quote Quote  
  2. Originally Posted by stabbedbybrick View Post
    It will list IDs if there are any, but CBC doesn't have any video IDs. You need to use other regex to specify, like res="".
    Ah, that makes sense. I'd checked on CBC and iPlayer, but neither of those had stream IDs. ITV, C4, STV and UKTV Play all do.
    Quote Quote  
  3. if you want to use multiple versions of protobuf, suggest you use python venv.
    Quote Quote  
  4. So I have Proton VPN connected and am accessing Roku from Canada. I can play shows just fine but I cannot get anything to download. When I use

    freevine.py get -c https://therokuchannel.roku.com/details/29f3873ff578566d882898c88a474839/the-flying-nun/ --save-dir Downloaded/TheFlyingNun

    I get the following error from freevine:

    ❯_freevine v1.1.1

    20:13:41.535 INFO : The Roku Channel
    20:13:46.315 INFO : The Flying Nun (1967): 3 Season(s), 82 Episode(s)

    Traceback (most recent call last):
    File "D:\Programs\Video\freevine\freevine.py", line 15, in <module>
    cli()
    File "C:\Users\Brian\AppData\Local\Programs\Python\Pyth on312\Lib\site-packages\click\core.py", line 1157, in __call__
    return self.main(*args, **kwargs)
    ^^^^^^^^^^^^^^^^^^^^^^^^^^
    File "C:\Users\Brian\AppData\Local\Programs\Python\Pyth on312\Lib\site-packages\click\core.py", line 1078, in main
    rv = self.invoke(ctx)
    ^^^^^^^^^^^^^^^^
    File "C:\Users\Brian\AppData\Local\Programs\Python\Pyth on312\Lib\site-packages\click\core.py", line 1688, in invoke
    return _process_result(sub_ctx.command.invoke(sub_ctx))
    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    File "C:\Users\Brian\AppData\Local\Programs\Python\Pyth on312\Lib\site-packages\click\core.py", line 1434, in invoke
    return ctx.invoke(self.callback, **ctx.params)
    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    File "C:\Users\Brian\AppData\Local\Programs\Python\Pyth on312\Lib\site-packages\click\core.py", line 783, in invoke
    return __callback(*args, **kwargs)
    ^^^^^^^^^^^^^^^^^^^^^^^^^^^
    File "D:\Programs\Video\freevine\utils\commands.py" , line 81, in get
    Service(config, **kwargs)
    File "D:\Programs\Video\freevine\services\roku\roku.py" , line 45, in __init__
    self.get_options()
    File "D:\Programs\Video\freevine\services\roku\roku.py" , line 241, in get_options
    self.download(download, title)
    File "D:\Programs\Video\freevine\services\roku\roku.py" , line 247, in download
    lic_url, manifest = self.get_playlist(stream.data)
    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    File "D:\Programs\Video\freevine\services\roku\roku.py" , line 145, in get_playlist
    r.raise_for_status()
    File "C:\Users\Brian\AppData\Local\Programs\Python\Pyth on312\Lib\site-packages\requests\models.py", line 1021, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
    requests.exceptions.HTTPError: 451 Client Error: Unavailable For Legal Reasons for url: https://therokuchannel.roku.com/api/v3/playback
    Is there a way around this? There are several things on Roku I would like to grad, including a couple of episodes or series that are missing from other streaming services. The Flying Nun is one of them. s01e03 is missing from CTV and one other serivce in Canada that has that series.
    Quote Quote  
  5. Originally Posted by stabbedbybrick View Post
    Yes, it's exactly that. You wouldn't be getting that error message otherwise.

    The Android and the web are two separate endpoints, and it's not a guarantee that your proxy/VPN will work on both. And in this case it doesn't. The solution is to either stick with the older version, or find a provider better suited for getting around these fences.
    While that’s technically correct, in my specific case the error appears to be occurring due to v1.1.1 of the script assuming that the android playlist will always be available/accessible. If it’s not, the script fails; it only falls back to using the web playlist if the android playlist is available and its max resolution is < 1080.

    Looking at the get_mediainfo() function in channel4.py, the flow seems to be:
    • get_mediainfo() calls android_playlist() to grab relevant info e.g resolution, token, etc
      • if android_playlist() fails, the script exits
      • if android_playlist worked, it then looks at the first available resolution:
        • if it's 1080 or greater, it continues on with the info from android_playlist()
        • if it's less than 1080, it calls web_playlist() and carries on with the info from that.
    In my case, it’s failing at the first step - the android playlist is not available to me for whatever reason.

    However: if I comment out the call to android_playlist() and the subsequent comparison and just call web_playlist() e.g.

    Code:
        def get_mediainfo(self, video_id: str, quality: str, bearer: str) -> str:
    #        manifest, token = self.android_playlist(video_id, bearer)
    #        lic_token = self.decrypt_token(token, client="android")
    #        heights, self.soup = get_heights(self.client, manifest)
    #        resolution = heights[0]
    
    #        if resolution < 1080:
            manifest, token = self.web_playlist(video_id)
            lic_token = self.decrypt_token(token, client="web")
            heights, self.soup = get_heights(self.client, manifest)
            resolution = heights[0]
    
    	…
    It works fine & downloads whatever I ask for.

    From memory of previous comments here or on github, the reason for preferring the android playlist was that it provided better bitrates at high resolutions? Failing the return of the ‘client: “web”’ setting, a potential solution might be implementing something like:
    • get_mediainfo() calls android_playlist() to grab relevant info e.g resolution, manifest, etc
      • if android_playlist() fails, or the first available resolution is < 1080:
        • try web_playlist()
          • if web_playlist() fails, then the script exits.
          • if one or the other works, the script continues on…
    I realise that the error in my specific case may be due to my slightly unusual setup - but I wouldn't mind betting that there's other occasional cases (e.g. older content?) where the android playlist may not be available.
    Quote Quote  
  6. Originally Posted by eday_2010 View Post
    So I have Proton VPN connected and am accessing Roku from Canada. I can play shows just fine but I cannot get anything to download. When I use

    freevine.py get -c https://therokuchannel.roku.com/details/29f3873ff578566d882898c88a474839/the-flying-nun/ --save-dir Downloaded/TheFlyingNun

    I get the following error from freevine:

    ❯_freevine v1.1.1

    20:13:41.535 INFO : The Roku Channel
    20:13:46.315 INFO : The Flying Nun (1967): 3 Season(s), 82 Episode(s)

    requests.exceptions.HTTPError: 451 Client Error: Unavailable For Legal Reasons for url: https://therokuchannel.roku.com/api/v3/playback
    Is there a way around this? There are several things on Roku I would like to grad, including a couple of episodes or series that are missing from other streaming services. The Flying Nun is one of them. s01e03 is missing from CTV and one other serivce in Canada that has that series.
    Most likely a VPN issue. Many of these scripts are accessing streams not available by regular browsers, so even if it plays fine it's not a guarantee the API will accept your IP. I've not used Proton myself, but based on reports it's very hit or miss when it comes to bypassing geo blocks. At least the free version.
    Quote Quote  
  7. Originally Posted by alberich_manus View Post
    Originally Posted by stabbedbybrick View Post
    Yes, it's exactly that. You wouldn't be getting that error message otherwise.

    The Android and the web are two separate endpoints, and it's not a guarantee that your proxy/VPN will work on both. And in this case it doesn't. The solution is to either stick with the older version, or find a provider better suited for getting around these fences.
    While that’s technically correct, in my specific case the error appears to be occurring due to v1.1.1 of the script assuming that the android playlist will always be available/accessible. If it’s not, the script fails; it only falls back to using the web playlist if the android playlist is available and its max resolution is < 1080.
    No, the error occurs because you're using a bad proxy.

    Connecting through a blocked IP falls under user error, and that's up to the user to fix. If I were to follow your suggestion about falling back to the web client, then anyone with a half-working proxy would automatically download the lesser version instead of being given a chance to change IP and try again. If we lose access to this endpoint like we did with the last one, I'll make adjustments. But the scripts will always go for highest available quality, and it's up to the user to have the proper setup for it. And in this case, you don't.
    Quote Quote  
  8. Member
    Join Date
    Dec 2022
    Location
    Lesotho
    Search Comp PM
    @stabbedbybrick

    Regarding CTV.CA

    v1.1.1 doesn't have the Described Video audio track whereas v1.0.6 does provide this. It's very important to me to be able to download this track along with the normal audio track.

    Code:
    aac-ffa6v1-english-dv-128000
    Any way you could please enable this feature?

    I know I can just keep on using v1.0.6 but that's not practical long term.
    Quote Quote  
  9. @sipho:

    It's slightly more difficult to add this time around, but I'll look into it.
    Quote Quote  
  10. Member
    Join Date
    Dec 2022
    Location
    Lesotho
    Search Comp PM
    Originally Posted by stabbedbybrick View Post
    @sipho:

    It's slightly more difficult to add this time around, but I'll look into it.
    Thank you.
    Quote Quote  
  11. @sipho:

    Main branch has been updated with DV for CTV. It'll only be added to the manifest if it exists, so if you're not seeing it it's because there isn't any.
    Quote Quote  
  12. Member
    Join Date
    Dec 2022
    Location
    Lesotho
    Search Comp PM
    Originally Posted by stabbedbybrick View Post
    @sipho:

    Main branch has been updated with DV for CTV. It'll only be added to the manifest if it exists, so if you're not seeing it it's because there isn't any.
    You are an absolute star, thank you very much!
    Quote Quote  
  13. @stabbedbybrick

    Thank you very much.
    Looking forward to try the iPlayer 4K soon
    Quote Quote  
  14. Originally Posted by stabbedbybrick View Post
    Most likely a VPN issue. Many of these scripts are accessing streams not available by regular browsers, so even if it plays fine it's not a guarantee the API will accept your IP. I've not used Proton myself, but based on reports it's very hit or miss when it comes to bypassing geo blocks. At least the free version.
    Alrighty. I will keep trying different servers. The VPN has worked flawlessly with other sites. It's the paid version of Proton so I have access to hundreds of US servers to try.
    Quote Quote  
  15. Member
    Join Date
    Dec 2021
    Location
    Scotland
    Search Comp PM
    I'm not sure which freevine version this problem started, but with iplayer I am getting a shit load of Invalid timestamps during the final mux. I'm now using freevine.py-v1.1.1.

    Code:
    00:49:24.069 WARN : [mpegts @ 000001ce1e12c600] Invalid timestamps stream=1, pts=311367600, dts=311369400, size=96
    00:49:24.069 WARN : [mpegts @ 000001ce1e12c600] Invalid timestamps stream=1, pts=311369400, dts=311371200, size=93
    00:49:24.069 WARN : [vost#0:1/copy @ 000001ce1e7bed00] Invalid DTS: 310467600 PTS: 310465800, replacing by guess
    00:49:24.069 WARN : [vost#0:1/copy @ 000001ce1e7bed00] Invalid DTS: 310469400 PTS: 310467600, replacing by guess
    00:49:24.069 WARN : [mpegts @ 000001ce1e12c600] Invalid timestamps stream=1, pts=311371200, dts=311373000, size=89
    00:49:24.069 WARN : [mpegts @ 000001ce1e12c600] Invalid timestamps stream=1, pts=311373000, dts=311374800, size=92
    00:49:24.069 WARN : [vost#0:1/copy @ 000001ce1e7bed00] Invalid DTS: 310471200 PTS: 310469400, replacing by guess
    00:49:24.069 WARN : [vost#0:1/copy @ 000001ce1e7bed00] Invalid DTS: 310473000 PTS: 310471200, replacing by guess
    00:49:24.069 WARN : [mpegts @ 000001ce1e12c600] Invalid timestamps stream=1, pts=311374800, dts=311376600, size=91
    00:49:24.069 WARN : [mpegts @ 000001ce1e12c600] Invalid timestamps stream=1, pts=311376600, dts=311378400, size=95
    00:49:24.069 WARN : [vost#0:1/copy @ 000001ce1e7bed00] Invalid DTS: 310474800 PTS: 310473000, replacing by guess
    00:49:24.070 WARN : [vost#0:1/copy @ 000001ce1e7bed00] Invalid DTS: 310476600 PTS: 310474800, replacing by guess
    00:49:24.070 WARN : [mpegts @ 000001ce1e12c600] Invalid timestamps stream=1, pts=311380200, dts=311382000, size=89
    00:49:24.070 WARN : [vost#0:1/copy @ 000001ce1e7bed00] Invalid DTS: 310478400 PTS: 310476600, replacing by guess
    00:49:24.070 WARN : [mpegts @ 000001ce1e12c600] Invalid timestamps stream=1, pts=311382000, dts=311383800, size=91
    00:49:24.070 WARN : [vost#0:1/copy @ 000001ce1e7bed00] Invalid DTS: 310482000 PTS: 310480200, replacing by guess
    00:49:24.070 WARN : [vost#0:1/copy @ 000001ce1e7bed00] Invalid DTS: 310483800 PTS: 310482000, replacing by guess
    00:49:24.086 WARN : Cleaning files...
    00:49:24.219 WARN : Rename to Antiques Roadshow S46E10 Pollok Country Park Glasgow 2 [1080p].mp4
    00:49:24.219 INFO : Done
    Now, I want mp4 as the final file which I set up in the config.yaml, as well as muxer = ffmpeg. I had a version of ffmpeg a couple of months old, so I've tried the latest version (version: 2024-01-04). Exactly the same. I changed final file type to mkv, again the same.

    However, using mkv and mkvmerge, everything is fine.

    The final mp4 file seems to be OK, it's just the process looks messy.

    All other UK downloaders are working fine with mp4 & ffmpeg.

    Is it possible to look at this issue stabby?
    Last edited by deccavox; 7th Jan 2024 at 20:13.
    Quote Quote  
  16. @deccavox:

    This is an ffmpeg issue and not something I have control over. It still works, though, like you said. And if you want to remove the verbose output, you can tell N_m3u8DL-RE to change log level with the "--add-command":
    Code:
    freevine.py get --add-command "--log-level ERROR" -e s46e10 https://www.bbc.co.uk/iplayer/episodes/b006mj2y
    Quote Quote  
  17. I am running freevine v1.1.1 from the main Github branch.

    I'm trying to download a complete series from All4, and everything works. The problem I am having is that when I open any of the video files in VLC, the audio description track plays. There is only one audio track and no option to switch off AD.

    I have tried with the following command to drop the audio description track on download:

    ```
    python freevine.py get --complete https://www.channel4.com/programmes/truelove -da audio_eng
    ```

    but this doesn't make any difference.

    FWIW, this was not a problem with older versions of freevine.

    Can anyone help me please?
    Quote Quote  
  18. Thanks so much for all your effort with this suite, it's truly excellent.

    I've downloaded a few episodes from all4 but they're lacking the subtitle track. Via the website subs are available, but in freevine it shows no subs available. Any suggestions welcome!

    Thank you!!

    Code:
     C:\Users\XYZ\Downloads\freevine-main\freevine-main>freevine.py get --sub-only --episode S02E04 https://www.channel4.com/programmes/teachers
    
    ❯_freevine v1.1.1
    
    10:27:08.854 ←[4m←[32mINFO←[0m : ←[1mALL4←[0m
    10:27:08.854 ←[4m←[32mINFO←[0m : + Loading user profile
    10:27:08.870 ←[4m←[32mINFO←[0m : Using cached tokens
    10:27:09.889 ←[4m←[32mINFO←[0m : Teachers: 4 Season(s), 40 Episode(s)
    
    10:27:12.243 ←[4m←[32mINFO←[0m : Teachers S02E04
    10:27:12.244 ←[4m←[32mINFO←[0m : 00000000000000000000000003358247:512bb4ae2aa001e5aaa0735f6e17ea95
    
    10:27:12.437 INFO : N_m3u8DL-RE (Beta version) 20230628
    10:27:12.465 INFO : Loading URL: https://cf.jos.c4assets.com/CH4_08_02_900_32278004001001_004/CH4_08_02_900_32278004001...NWDTVdq2vP7A8Q
    10:27:13.302 INFO : Content Matched: Dynamic Adaptive Streaming over HTTP
    10:27:13.303 INFO : Parsing streams...
    10:27:13.339 WARN : Writing meta json
    10:27:13.356 INFO : Extracted, there are 8 streams, with 7 basic streams, 1 audio streams, 0 subtitle streams
    10:27:13.356 INFO : Vid *CENC 1920x1080 | 2993 Kbps | video=2993000 | avc1.640029 | 487 Segments | ~48m38s
    10:27:13.357 INFO : Vid *CENC 1280x720 | 1995 Kbps | video=1995000 | avc1.640029 | 487 Segments | ~48m38s
    10:27:13.359 INFO : Vid *CENC 1024x576 | 1496 Kbps | video=1496000 | avc1.640029 | 487 Segments | ~48m38s
    10:27:13.360 INFO : Vid *CENC 1024x576 | 1197 Kbps | video=1197000 | avc1.640029 | 487 Segments | ~48m38s
    10:27:13.365 INFO : Vid *CENC 640x360 | 997 Kbps | video=997000 | avc1.640029 | 487 Segments | ~48m38s
    10:27:13.369 INFO : Vid *CENC 640x360 | 798 Kbps | video=798000 | avc1.4D401F | 487 Segments | ~48m38s
    10:27:13.371 INFO : Vid *CENC 512x288 | 500 Kbps | video=500000 | avc1.42C01E | 487 Segments | ~48m38s
    10:27:13.371 INFO : Aud *CENC audio=129808 | 129 Kbps | mp4a.40.2 | 2CH | 487 Segments | ~48m38s
    10:27:13.372 ERROR: No stream found to download
    Quote Quote  
  19. Member
    Join Date
    Dec 2021
    Location
    Scotland
    Search Comp PM
    Originally Posted by stabbedbybrick View Post
    @deccavox:

    This is an ffmpeg issue and not something I have control over. It still works, though, like you said. And if you want to remove the verbose output, you can tell N_m3u8DL-RE to change log level with the "--add-command":
    Code:
    freevine.py get --add-command "--log-level ERROR" -e s46e10 https://www.bbc.co.uk/iplayer/episodes/b006mj2y
    Thanks for the reply. I was expecting that conclusion, indeed one that I had thought of.

    Except the final portable version of freevine (freevine-0.6.2-beta) works fine with same settings. And it's strange I'm only getting that error with iplayer. STV, ITVX, All4, UKTV & My5 are all fine.
    Quote Quote  
  20. @evbuk1:

    Use this to drop the audio descriptive track for All4:
    Code:
    -da id=audio_eng_1
    @deleteduser:

    The missing subtitles for web streams is actually a bug I'd totally forgot about, so thanks for reminding me. I'll look into it soon.

    @deccavox:

    The newer version of Freevine is grabbing iPlayer streams that the older version didn't, and it's possible that the encoding for these files are different which is causing ffmpeg to act up. And I can't really do anything about that.
    Quote Quote  
  21. Originally Posted by stabbedbybrick View Post
    @evbuk1:

    Use this to drop the audio descriptive track for All4:
    Code:
    -da id=audio_eng_1
    @deleteduser:

    The missing subtitles for web streams is actually a bug I'd totally forgot about, so thanks for reminding me. I'll look into it soon.

    @deccavox:

    The newer version of Freevine is grabbing iPlayer streams that the older version didn't, and it's possible that the encoding for these files are different which is causing ffmpeg to act up. And I can't really do anything about that.
    Thanks very much! Glad to know I'm not being daft.
    Quote Quote  
  22. Member
    Join Date
    Dec 2021
    Location
    Scotland
    Search Comp PM
    Originally Posted by stabbedbybrick View Post
    @deccavox:

    The newer version of Freevine is grabbing iPlayer streams that the older version didn't, and it's possible that the encoding for these files are different which is causing ffmpeg to act up. And I can't really do anything about that.
    Fair enough and thanks.
    Quote Quote  
  23. Originally Posted by deleteduser View Post
    Originally Posted by stabbedbybrick View Post

    @deleteduser:

    The missing subtitles for web streams is actually a bug I'd totally forgot about, so thanks for reminding me. I'll look into it soon.
    Thanks very much! Glad to know I'm not being daft.
    This has now been fixed. You can get it from the main branch now or wait for the next version update.
    Quote Quote  
  24. I get a couple of seemingly different errors with two series I am trying to download from Pluto TV. First is this one which will not download anything from The Beverly Hillbillies:

    Code:
    ❯_freevine v1.1.1
    
    16:30:03.397 INFO : PlutoTV
    Traceback (most recent call last):
      File "D:\Programs\Video\freevine\freevine.py", line 15, in <module>
        cli()
      File "C:\Users\Brian\AppData\Local\Programs\Python\Python312\Lib\site-packages\click\core.py", line 1157, in __call__
        return self.main(*args, **kwargs)
               ^^^^^^^^^^^^^^^^^^^^^^^^^^
      File "C:\Users\Brian\AppData\Local\Programs\Python\Python312\Lib\site-packages\click\core.py", line 1078, in main
        rv = self.invoke(ctx)
             ^^^^^^^^^^^^^^^^
      File "C:\Users\Brian\AppData\Local\Programs\Python\Python312\Lib\site-packages\click\core.py", line 1688, in invoke
        return _process_result(sub_ctx.command.invoke(sub_ctx))
                               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      File "C:\Users\Brian\AppData\Local\Programs\Python\Python312\Lib\site-packages\click\core.py", line 1434, in invoke
        return ctx.invoke(self.callback, **ctx.params)
               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      File "C:\Users\Brian\AppData\Local\Programs\Python\Python312\Lib\site-packages\click\core.py", line 783, in invoke
        return __callback(*args, **kwargs)
               ^^^^^^^^^^^^^^^^^^^^^^^^^^^
      File "D:\Programs\Video\freevine\utils\commands.py", line 81, in get
        Service(config, **kwargs)
      File "D:\Programs\Video\freevine\services\pluto\pluto.py", line 51, in __init__
        self.get_options()
      File "D:\Programs\Video\freevine\services\pluto\pluto.py", line 318, in get_options
        downloads, title = get_downloads(self)
                           ^^^^^^^^^^^^^^^^^^^
      File "D:\Programs\Video\freevine\utils\options.py", line 163, in get_downloads
        content, title = stream.get_content(stream.url)
                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      File "D:\Programs\Video\freevine\services\pluto\pluto.py", line 301, in get_content
        content = self.get_series(url)
                  ^^^^^^^^^^^^^^^^^^^^
      File "D:\Programs\Video\freevine\services\pluto\pluto.py", line 118, in get_series
        for series in data["seasons"]
                      ~~~~^^^^^^^^^^^
    TypeError: list indices must be integers or slices, not str
    And this one which downloaded the first 8 episodes of Three's Company but will give this error when I try to download the rest:

    Code:
    Traceback (most recent call last):
      File "D:\Programs\Video\freevine\freevine.py", line 15, in <module>
        cli()
      File "C:\Users\Brian\AppData\Local\Programs\Python\Python312\Lib\site-packages\click\core.py", line 1157, in __call__
        return self.main(*args, **kwargs)
               ^^^^^^^^^^^^^^^^^^^^^^^^^^
      File "C:\Users\Brian\AppData\Local\Programs\Python\Python312\Lib\site-packages\click\core.py", line 1078, in main
        rv = self.invoke(ctx)
             ^^^^^^^^^^^^^^^^
      File "C:\Users\Brian\AppData\Local\Programs\Python\Python312\Lib\site-packages\click\core.py", line 1688, in invoke
        return _process_result(sub_ctx.command.invoke(sub_ctx))
                               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      File "C:\Users\Brian\AppData\Local\Programs\Python\Python312\Lib\site-packages\click\core.py", line 1434, in invoke
        return ctx.invoke(self.callback, **ctx.params)
               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      File "C:\Users\Brian\AppData\Local\Programs\Python\Python312\Lib\site-packages\click\core.py", line 783, in invoke
        return __callback(*args, **kwargs)
               ^^^^^^^^^^^^^^^^^^^^^^^^^^^
      File "D:\Programs\Video\freevine\utils\commands.py", line 81, in get
        Service(config, **kwargs)
      File "D:\Programs\Video\freevine\services\pluto\pluto.py", line 51, in __init__
        self.get_options()
    Seems oddly random on these two series when everything else seemed to work.
    Quote Quote  
  25. Member
    Join Date
    Dec 2021
    Location
    england
    Search Comp PM
    The Beverly Hillbillies..... look fine
    Code:
    Microsoft Windows [Version 10.0.22631.2861]
    (c) Microsoft Corporation. All rights reserved.
    
    C:\Users\Admin\1.1.1\freevine-main>freevine.py search pluto "The Beverly Hillbillies"
    
    ❯_freevine v1.1.1
    
    
    
        PlutoTV
        Title: The Beverly Hillbillies
        Type: series
        Synopsis: None
        Link: https://pluto.tv/en/on-demand/series/5fb80beee8b7e6001a753aa8/details
    
    
        PlutoTV
        Title: Beverly Hillbillies
        Type: channel
        Synopsis: None
        Link: https://pluto.tv/en/on-demand/series/5f7796e470510900070d4e3d/details
    
    
    C:\Users\Admin\1.1.1\freevine-main>freevine.py get -t https://pluto.tv/en/on-demand/series/5fb80beee8b7e6001a753aa8/details
    
    ❯_freevine v1.1.1
    
    22:11:47.331 INFO : PlutoTV
    22:11:48.402 INFO : The Beverly Hillbillies: 9 Season(s), 215 Episode(s)
    
    22:11:48.403 INFO : The Beverly Hillbillies S01E01 Clampetts Strike Oil
    22:11:48.403 INFO : The Beverly Hillbillies S01E02 Getting Settled
    22:11:48.403 INFO : The Beverly Hillbillies S01E03 Meanwhile, Back At The Cabin
    22:11:48.403 INFO : The Beverly Hillbillies S01E04 The Clampetts Meet Mrs.Drysdale
    22:11:48.403 INFO : The Beverly Hillbillies S01E06 Trick Or Treat
    22:11:48.403 INFO : The Beverly Hillbillies S01E07 The Servants
    22:11:48.403 INFO : The Beverly Hillbillies S01E09 Elly's First Date
    22:11:48.403 INFO : The Beverly Hillbillies S01E10 Pygmalion & Elly
    22:11:48.403 INFO : The Beverly Hillbillies S01E12 The Great Feud
    22:11:48.403 INFO : The Beverly Hillbillies S01E13 Home For Christmas
    22:11:48.403 INFO : The Beverly Hillbillies S01E14 No Place Like Home
    22:11:48.403 INFO : The Beverly Hillbillies S01E15 Jed Rescues Pearl
    22:11:48.403 INFO : The Beverly Hillbillies S01E16 Back To Californy
    22:11:48.403 INFO : The Beverly Hillbillies S01E17 Jed's Dilemma
    22:11:48.403 INFO : The Beverly Hillbillies S01E18 Jed Saves Drysdale's Marriage
    22:11:48.403 INFO : The Beverly Hillbillies S01E19 Elly's Animals
    22:11:48.403 INFO : The Beverly Hillbillies S01E21 Jed Plays Solomon
    22:11:48.403 INFO : The Beverly Hillbillies S01E22 Duke Steals A Wife
    22:11:48.405 INFO : The Beverly Hillbillies S01E23 The Family Tree
    22:11:48.405 INFO : The Beverly Hillbillies S01E24 Jed Buys The Freeway
    22:11:48.405 INFO : The Beverly Hillbillies S01E25 Jed Becomes A Banker
    22:11:48.405 INFO : The Beverly Hillbillies S01E26 Jed Cuts The Family Tree
    22:11:48.405 INFO : The Beverly Hillbillies S01E27 Granny's Spring Tonic
    22:11:48.405 INFO : The Beverly Hillbillies S01E28 Jed Pays His Tax
    22:11:48.405 INFO : The Beverly Hillbillies S01E30 The Clampetts In Court
    22:11:48.405 INFO : The Beverly Hillbillies S01E33 The Clampetts Get Psychoanalyzed
    22:11:48.405 INFO : The Beverly Hillbillies S01E34 The Psychiatrist Gets Clampetted
    22:11:48.405 INFO : The Beverly Hillbillies S01E35 Elly Becomes A Secretary
    22:11:48.405 INFO : The Beverly Hillbillies S01E36 Jethro's Friend
    22:11:48.405 INFO : The Beverly Hillbillies S02E01 Jed Gets The Misery
    22:11:48.405 INFO : The Beverly Hillbillies S02E02 Hair Raising Holiday
    22:11:48.405 INFO : The Beverly Hillbillies S02E03 Granny's Garden
    22:11:48.405 INFO : The Beverly Hillbillies S02E04 Elly Starts To School
    22:11:48.405 INFO : The Beverly Hillbillies S02E05 The Clampett Look
    22:11:48.406 INFO : The Beverly Hillbillies S02E06 Jethro's First Love
    22:11:48.406 INFO : The Beverly Hillbillies S02E07 Chickadee Returns
    22:11:48.406 INFO : The Beverly Hillbillies S02E08 The Clampetts Are Overdrawn
    22:11:48.406 INFO : The Beverly Hillbillies S02E09 The Clampetts Go Hollywood
    22:11:48.406 INFO : The Beverly Hillbillies S02E10 Turkey Day
    22:11:48.406 INFO : The Beverly Hillbillies S02E11 The Garden Party
    22:11:48.406 INFO : The Beverly Hillbillies S02E12 Elly Needs A Maw
    22:11:48.406 INFO : The Beverly Hillbillies S02E13 The Clampetts Get Culture
    22:11:48.406 INFO : The Beverly Hillbillies S02E14 Christmas At Clampetts
    22:11:48.406 INFO : The Beverly Hillbillies S02E15 A Man For Elly
    22:11:48.406 INFO : The Beverly Hillbillies S02E16 The Giant Jack Rabbit
    22:11:48.406 INFO : The Beverly Hillbillies S02E17 The Girl From Home
    22:11:48.406 INFO : The Beverly Hillbillies S02E18 Lafe Lingers On
    22:11:48.406 INFO : The Beverly Hillbillies S02E19 The Race For Queen
    22:11:48.406 INFO : The Beverly Hillbillies S02E20 The Critter Doctor
    22:11:48.406 INFO : The Beverly Hillbillies S02E21 Lafe Returns
    22:11:48.406 INFO : The Beverly Hillbillies S02E22 Son Of Lafe Returns
    22:11:48.406 INFO : The Beverly Hillbillies S02E23 The Clampetts Go Fishing
    22:11:48.406 INFO : The Beverly Hillbillies S02E26 Another Neighbor
    22:11:48.406 INFO : The Beverly Hillbillies S02E27 The Bank Raising
    22:11:48.406 INFO : The Beverly Hillbillies S02E28 The Great Crawdad Hunt
    22:11:48.407 INFO : The Beverly Hillbillies S02E29 The Dress Shop
    22:11:48.407 INFO : The Beverly Hillbillies S02E30 House Of Granny
    22:11:48.407 INFO : The Beverly Hillbillies S02E31 The Continental Touch
    22:11:48.407 INFO : The Beverly Hillbillies S02E32 Jed Incorporated
    22:11:48.407 INFO : The Beverly Hillbillies S02E33 Granny Learns To Drive
    22:11:48.407 INFO : The Beverly Hillbillies S02E34 Cabin In Beverly Hills
    22:11:48.407 INFO : The Beverly Hillbillies S02E35 Jed Foils A Home Wrecker
    22:11:48.407 INFO : The Beverly Hillbillies S02E36 Jethro's Graduation
    22:11:48.407 INFO : The Beverly Hillbillies S03E01 Jed Becomes Movie Mogul
    22:11:48.407 INFO : The Beverly Hillbillies S03E02 Clampett City
    22:11:48.407 INFO : The Beverly Hillbillies S03E03 Clampett City, Gen.Store
    22:11:48.407 INFO : The Beverly Hillbillies S03E05 Dr. Jed Clampett
    22:11:48.407 INFO : The Beverly Hillbillies S03E06 Jed The Heartbreaker
    22:11:48.407 INFO : The Beverly Hillbillies S03E08 Teenage Idol
    22:11:48.407 INFO : The Beverly Hillbillies S03E09 The Widow Poke Arrives
    22:11:48.407 INFO : The Beverly Hillbillies S03E10 The Ballet
    22:11:48.407 INFO : The Beverly Hillbillies S03E11 The Boarder
    22:11:48.407 INFO : The Beverly Hillbillies S03E12 The Boarder Stays
    22:11:48.407 INFO : The Beverly Hillbillies S03E13 Start The New Year Right
    22:11:48.407 INFO : The Beverly Hillbillies S03E14 Clampett General Hospital
    22:11:48.407 INFO : The Beverly Hillbillies S03E16 Elly In The Movies
    22:11:48.407 INFO : The Beverly Hillbillies S03E17 Dash Riprock, You Cad
    22:11:48.409 INFO : The Beverly Hillbillies S03E18 Clampett A Go Go
    22:11:48.409 INFO : The Beverly Hillbillies S03E19 Granny's Romance
    22:11:48.409 INFO : The Beverly Hillbillies S03E20 Jed's Temptation
    22:11:48.409 INFO : The Beverly Hillbillies S03E21 Double Naught Jethro
    22:11:48.409 INFO : The Beverly Hillbillies S03E22 Clampett's Millions
    22:11:48.409 INFO : The Beverly Hillbillies S03E23 Drysdale's Dog Days
    22:11:48.409 INFO : The Beverly Hillbillies S03E24 Brewster's Honeymoon
    22:11:48.409 INFO : The Beverly Hillbillies S03E26 Jed & The Countess
    22:11:48.409 INFO : The Beverly Hillbillies S03E27 Big Daddy Jed
    22:11:48.409 INFO : The Beverly Hillbillies S03E28 Cool School Is Out
    22:11:48.409 INFO : The Beverly Hillbillies S03E29 The Big Bank Battle
    22:11:48.409 INFO : The Beverly Hillbillies S03E30 Clampetts Vs. Automation
    22:11:48.409 INFO : The Beverly Hillbillies S03E31 Luke's Boy
    22:11:48.409 INFO : The Beverly Hillbillies S03E32 The Brewster's Return
    22:11:48.409 INFO : The Beverly Hillbillies S03E33 Jed The Bachelor
    22:11:48.409 INFO : The Beverly Hillbillies S03E34 The Art Center
    22:11:48.409 INFO : The Beverly Hillbillies S04E02 That Old Black Magic
    22:11:48.409 INFO : The Beverly Hillbillies S04E04 The Private Eye
    22:11:48.409 INFO : The Beverly Hillbillies S04E05 Possum Day
    22:11:48.409 INFO : The Beverly Hillbillies S04E06 Possum Day Parade
    22:11:48.409 INFO : The Beverly Hillbillies S04E07 Clampetts Play The Rams
    22:11:48.409 INFO : The Beverly Hillbillies S04E08 The Courtship Of Elly
    22:11:48.410 INFO : The Beverly Hillbillies S04E09 A Real Nice Neighbor
    22:11:48.410 INFO : The Beverly Hillbillies S04E10 The Poor Farmer
    22:11:48.410 INFO : The Beverly Hillbillies S04E12 Mrs. Drysdale's Father
    22:11:48.410 INFO : The Beverly Hillbillies S04E13 Mr. Farquhar Stays On
    22:11:48.410 INFO : The Beverly Hillbillies S04E14 Military School
    22:11:48.410 INFO : The Beverly Hillbillies S04E15 The Common Cold
    22:11:48.410 INFO : The Beverly Hillbillies S04E16 The Richest Woman
    22:11:48.410 INFO : The Beverly Hillbillies S04E17 The Trotting Horse
    22:11:48.410 INFO : The Beverly Hillbillies S04E18 The Buggy
    22:11:48.410 INFO : The Beverly Hillbillies S04E20 The Big Chicken
    22:11:48.410 INFO : The Beverly Hillbillies S04E21 Sonny Drysdale Returns
    22:11:48.410 INFO : The Beverly Hillbillies S04E22 Brewster's Baby
    22:11:48.410 INFO : The Beverly Hillbillies S04E23 The Great Jethro
    22:11:48.410 INFO : The Beverly Hillbillies S04E24 The Old Folks' Home
    22:11:48.410 INFO : The Beverly Hillbillies S04E26 The Folk Singers
    22:11:48.410 INFO : The Beverly Hillbillies S04E27 The Beautiful Maid
    22:11:48.410 INFO : The Beverly Hillbillies S04E28 Jethro's Pad
    22:11:48.410 INFO : The Beverly Hillbillies S04E29 The Bird Watchers
    22:11:48.410 INFO : The Beverly Hillbillies S04E31 Granny Tonics A Birdwatcher
    22:11:48.410 INFO : The Beverly Hillbillies S05E01 The Party Line
    22:11:48.410 INFO : The Beverly Hillbillies S05E02 The Soup Contest
    22:11:48.412 INFO : The Beverly Hillbillies S05E03 The Badger Game
    22:11:48.412 INFO : The Beverly Hillbillies S05E04 The Badger Returns
    22:11:48.412 INFO : The Beverly Hillbillies S05E05 The Gorilla
    22:11:48.412 INFO : The Beverly Hillbillies S05E06 Come Back Little Herby
    22:11:48.412 INFO : The Beverly Hillbillies S05E07 Jed In Politics
    22:11:48.412 INFO : The Beverly Hillbillies S05E08 Jed Joins The Board
    22:11:48.412 INFO : The Beverly Hillbillies S05E09 The Woodchucks
    22:11:48.412 INFO : The Beverly Hillbillies S05E10 The Christmas Present
    22:11:48.412 INFO : The Beverly Hillbillies S05E11 The Flying Saucer
    22:11:48.412 INFO : The Beverly Hillbillies S05E12 Granny Retires
    22:11:48.412 INFO : The Beverly Hillbillies S05E13 The Clampett Curse
    22:11:48.412 INFO : The Beverly Hillbillies S05E14 The Indians Are Coming
    22:11:48.412 INFO : The Beverly Hillbillies S05E15 Elly Comes Out
    22:11:48.412 INFO : The Beverly Hillbillies S05E16 The Gypsy's Warning
    22:11:48.412 INFO : The Beverly Hillbillies S05E17 His Royal Highness
    22:11:48.412 INFO : The Beverly Hillbillies S05E18 Super Hawg
    22:11:48.412 INFO : The Beverly Hillbillies S05E19 The Little Monster
    22:11:48.412 INFO : The Beverly Hillbillies S06E01 Jed Inherits A Castle
    22:11:48.412 INFO : The Beverly Hillbillies S06E02 Clampetts In London
    22:11:48.412 INFO : The Beverly Hillbillies S06E03 Clampett Castle
    22:11:48.412 INFO : The Beverly Hillbillies S06E04 Greetings From The President
    22:11:48.412 INFO : The Beverly Hillbillies S06E05 Army Game
    22:11:48.412 INFO : The Beverly Hillbillies S06E06 Plot For Granny
    22:11:48.413 INFO : The Beverly Hillbillies S06E07 Jethro's Military Career
    22:11:48.413 INFO : The Beverly Hillbillies S06E08 Reserve Program
    22:11:48.413 INFO : The Beverly Hillbillies S06E09 Jethro In The Reserve
    22:11:48.413 INFO : The Beverly Hillbillies S06E10 Cimarron Drip
    22:11:48.413 INFO : The Beverly Hillbillies S06E11 Corn Pone Picassos
    22:11:48.413 INFO : The Beverly Hillbillies S06E12 Clampetts Play Cupid
    22:11:48.413 INFO : The Beverly Hillbillies S06E13 Housekeeper
    22:11:48.413 INFO : The Beverly Hillbillies S06E14 Social Climbers
    22:11:48.413 INFO : The Beverly Hillbillies S06E15 Diner
    22:11:48.413 INFO : The Beverly Hillbillies S06E16 Topless Anyone
    22:11:48.413 INFO : The Beverly Hillbillies S06E17 Great Snow
    22:11:48.413 INFO : The Beverly Hillbillies S06E18 Great Tag Team Match
    22:11:48.413 INFO : The Beverly Hillbillies S06E19 Jethro Proposes
    22:11:48.413 INFO : The Beverly Hillbillies S06E20 Dog Days
    22:11:48.413 INFO : The Beverly Hillbillies S06E21 Crystal Gazers
    22:11:48.413 INFO : The Beverly Hillbillies S07E01 Something For The Queen
    22:11:48.413 INFO : The Beverly Hillbillies S07E02 Granny Goes To Hooterville
    22:11:48.413 INFO : The Beverly Hillbillies S07E03 Italian Cook
    22:11:48.413 INFO : The Beverly Hillbillies S07E04 Great Cook Off
    22:11:48.413 INFO : The Beverly Hillbillies S07E05 Thanksgiving Spirit
    22:11:48.414 INFO : The Beverly Hillbillies S07E06 The Courtship Of Homer Noodleman
    22:11:48.414 INFO : The Beverly Hillbillies S07E07 Hot Rod Truck
    22:11:48.414 INFO : The Beverly Hillbillies S07E08 Week Before Christmas
    22:11:48.414 INFO : The Beverly Hillbillies S07E09 Drysdale And Friend
    22:11:48.414 INFO : The Beverly Hillbillies S07E10 Problem Bear
    22:11:48.414 INFO : The Beverly Hillbillies S07E11 Jed Clampett Enterprises
    22:11:48.414 INFO : The Beverly Hillbillies S07E12 Phantom Fifth Floor
    22:11:48.414 INFO : The Beverly Hillbillies S07E13 Hired Gun
    22:11:48.414 INFO : The Beverly Hillbillies S07E14 Sam Drucker's Visit
    22:11:48.414 INFO : The Beverly Hillbillies S07E15 Guru
    22:11:48.414 INFO : The Beverly Hillbillies S07E16 Jogging Clampetts
    22:11:48.414 INFO : The Beverly Hillbillies S07E17 Collard Greens And Fatback
    22:11:48.414 INFO : The Beverly Hillbillies S08E01 Back to the Hills
    22:11:48.414 INFO : The Beverly Hillbillies S08E02 The Hills of Home
    22:11:48.414 INFO : The Beverly Hillbillies S08E03 Silver Dollar City Fair
    22:11:48.414 INFO : The Beverly Hillbillies S08E04 Jane Finds Elly a Man
    22:11:48.414 INFO : The Beverly Hillbillies S08E05 Wedding Plans
    22:11:48.414 INFO : The Beverly Hillbillies S08E08 Manhattan Hillibillies
    22:11:48.414 INFO : The Beverly Hillbillies S08E09 Home Again
    22:11:48.414 INFO : The Beverly Hillbillies S08E10 Shorty Kellems Moves West
    22:11:48.416 INFO : The Beverly Hillbillies S08E12 Shorty Go Home
    22:11:48.416 INFO : The Beverly Hillbillies S08E14 Our Hero the Banker
    22:11:48.416 INFO : The Beverly Hillbillies S08E15 Buzz Bodine, Boy General
    22:11:48.416 INFO : The Beverly Hillbillies S08E16 The Clampett-Hewes Empire
    22:11:48.416 INFO : The Beverly Hillbillies S08E17 What Happened to Shorty?
    22:11:48.416 INFO : The Beverly Hillbillies S08E18 Marry Me, Shorty
    22:11:48.416 INFO : The Beverly Hillbillies S08E19 Shorty Spits the Hook
    22:11:48.416 INFO : The Beverly Hillbillies S08E20 Three-Day Reprieve
    22:11:48.416 INFO : The Beverly Hillbillies S08E21 The Wedding
    22:11:48.416 INFO : The Beverly Hillbillies S08E22 Annul That Marriage
    22:11:48.416 INFO : The Beverly Hillbillies S08E23 Hotel for Women
    22:11:48.416 INFO : The Beverly Hillbillies S08E24 Simon Legree Drysdale
    22:11:48.416 INFO : The Beverly Hillbillies S08E25 Honest John Returns
    22:11:48.416 INFO : The Beverly Hillbillies S08E26 Honesty is the Best Policy
    22:11:48.416 INFO : The Beverly Hillbillies S09E01 The Pollution Solution
    22:11:48.416 INFO : The Beverly Hillbillies S09E04 Mark Templeton Arrives
    22:11:48.416 INFO : The Beverly Hillbillies S09E06 Doctor, Cure My Frog
    22:11:48.416 INFO : The Beverly Hillbillies S09E08 The Frog Family
    22:11:48.417 INFO : The Beverly Hillbillies S09E10 Shorty to the Rescue
    22:11:48.417 INFO : The Beverly Hillbillies S09E11 Welcome to the Family
    22:11:48.417 INFO : The Beverly Hillbillies S09E12 The Great Revelation
    22:11:48.417 INFO : The Beverly Hillbillies S09E13 The Grunion Invasion
    22:11:48.417 INFO : The Beverly Hillbillies S09E14 The Girls from Grun
    22:11:48.417 INFO : The Beverly Hillbillies S09E15 The Grun Incident
    22:11:48.417 INFO : The Beverly Hillbillies S09E16 Women's Lib
    22:11:48.417 INFO : The Beverly Hillbillies S09E17 The Teahouse of Jed Clampett
    22:11:48.417 INFO : The Beverly Hillbillies S09E19 Lib and Let Lib
    22:11:48.417 INFO : The Beverly Hillbillies S09E20 Elly, the Working Girl
    22:11:48.417 INFO : The Beverly Hillbillies S09E21 Elly, the Secretary
    22:11:48.417 INFO : The Beverly Hillbillies S09E22 Love Finds Jane Hathaway
    22:11:48.417 INFO : The Beverly Hillbillies S09E23 The Clampetts Meet Robert Audobon Getty
    22:11:48.417 INFO : The Beverly Hillbillies S09E24 Jethro Returns
    
    C:\Users\Admin\1.1.1\freevine-main>freevine.py get -e s01e01 https://pluto.tv/en/on-demand/series/5fb80beee8b7e6001a753aa8/details
    
    ❯_freevine v1.1.1
    
    22:12:18.630 INFO : PlutoTV
    22:12:19.599 INFO : The Beverly Hillbillies: 9 Season(s), 215 Episode(s)
    
    22:12:23.532 INFO : The Beverly Hillbillies S01E01 Clampetts Strike Oil
    
    22:12:27.313 INFO : N_m3u8DL-RE (Beta version) 20230628
    22:12:27.324 INFO : Loading URL: http://silo-hybrik.pluto.tv.s3.amazonaws.com/c22ab6_CBS_TV/clip/5fbbe7155eb0df001b149971_The_Beverly_Hillbillies_Clampetts_Strike_Oil_S01E001/720p/20230509_074007/dash/0-end/main.mpd
    22:12:27.699 INFO : Content Matched: Dynamic Adaptive Streaming over HTTP
    22:12:27.699 INFO : Parsing streams...
    22:12:27.713 WARN : Writing meta json
    22:12:27.715 INFO : Extracted, there are 7 streams, with 5 basic streams, 1 audio streams, 1 subtitle streams
    22:12:27.715 INFO : Vid *CENC 2635 Kbps | 2 | 30 | avc1.64001f | 305 Segments | ~25m23s
    22:12:27.715 INFO : Vid *CENC 854x480 | 1812 Kbps | 6 | 30 | avc1.64001f | 305 Segments | ~25m23s
    22:12:27.715 INFO : Vid *CENC 854x480 | 1230 Kbps | 5 | 30 | avc1.64001f | 305 Segments | ~25m23s
    22:12:27.715 INFO : Vid *CENC 640x360 | 769 Kbps | 4 | 30 | avc1.64001f | 305 Segments | ~25m23s
    22:12:27.715 INFO : Vid *CENC 426x240 | 391 Kbps | 1 | 30 | avc1.64001f | 305 Segments | ~25m23s
    22:12:27.715 INFO : Aud *CENC 3 | 98 Kbps | mp4a.40.2 | 2CH | 305 Segments | ~25m23s
    22:12:27.715 INFO : Sub 0 | en | wvtt | 305 Segments | ~25m25s
    22:12:27.715 INFO : Parsing streams...
    22:12:27.717 INFO : Selected streams:
    22:12:27.717 INFO : Vid *CENC 2635 Kbps | 2 | 30 | avc1.64001f | 305 Segments | ~25m23s
    22:12:27.717 INFO : Aud *CENC 3 | 98 Kbps | mp4a.40.2 | 2CH | 305 Segments | ~25m23s
    22:12:27.717 INFO : Sub 0 | en | wvtt | 305 Segments | ~25m25s
    22:12:27.717 WARN : Writing meta json
    22:12:27.718 INFO : Save Name: The.Beverly.Hillbillies.S01E01.Clampetts.Strike.Oil.720p.PLUTO.WEB-DL.AAC2.0.H.264
    22:12:27.719 WARN : MuxAfterDone is detected, binary merging is automatically enabled
    22:12:27.724 INFO : Start downloading...Vid 2635 Kbps | 2 | 30 | avc1.64001f
    22:12:27.724 INFO : Start downloading...Aud 3 | 98 Kbps | mp4a.40.2 | 2CH
    22:12:27.724 INFO : Start downloading...Sub 0 | en | wvtt
    22:12:27.875 WARN : Type: cenc
    22:12:27.876 WARN : PSSH(WV): EhAAAAAAZFn419SsZ1ARgQe8EhAAAAAAZFn419SsZ1ARgQe9SOPclZsG
    22:12:27.877 WARN : KID: 000000006459f8d7d4ac6750118107bc
    22:12:27.878 INFO : Trying to search for KEY from text file...
    22:12:27.879 INFO : OK 000000006459f8d7d4ac6750118107bc:0f1b56043aef9e0b820fc5b25e046738
    22:12:27.879 WARN : Reading media info...
    22:12:27.988 WARN : Type: cenc
    22:12:27.988 WARN : PSSH(WV): EhAAAAAAZFn419SsZ1ARgQe8EhAAAAAAZFn419SsZ1ARgQe9SOPclZsG
    22:12:27.989 WARN : KID: 000000006459f8d7d4ac6750118107bd
    22:12:27.989 INFO : Trying to search for KEY from text file...
    22:12:27.989 INFO : OK 000000006459f8d7d4ac6750118107bd:59ecb33f7160f0ebd4644d13995188b8
    22:12:27.989 WARN : Reading media info...
    22:12:27.996 WARN : Reading media info...
    22:12:28.578 INFO : [0x1]: Video, h264 (avc1), 1280x720
    22:12:28.582 INFO : [0x1]: Audio, aac (mp4a), 93 kb/s
    22:12:28.582 INFO : [0x1]: Data, none (wvtt) (default)
    22:12:33.918 WARN : Extracting VTT(mp4) subtitle...
    22:12:33.946 INFO : Binary merging...
    22:12:36.121 INFO : Binary merging...
    22:12:36.206 INFO : Decrypting...
    22:12:43.812 INFO : Binary merging...
    22:12:44.396 INFO : Decrypting...
    22:12:46.708 WARN : The.Beverly.Hillbillies.S01E01.Clampetts.Strike.Oil.720p.PLUTO.WEB-DL.AAC2.0.H.264.mp4
    22:12:46.708 WARN : The.Beverly.Hillbillies.S01E01.Clampetts.Strike.Oil.720p.PLUTO.WEB-DL.AAC2.0.H.264.m4a
    22:12:46.708 WARN : The.Beverly.Hillbillies.S01E01.Clampetts.Strike.Oil.720p.PLUTO.WEB-DL.AAC2.0.H.264.en.srt
    22:12:46.708 WARN : Muxing to The.Beverly.Hillbillies.S01E01.Clampetts.Strike.Oil.720p.PLUTO.WEB-DL.AAC2.0.H.264.MUX.mkv
    22:12:47.854 WARN : Cleaning files...
    22:12:47.923 WARN : Rename to The.Beverly.Hillbillies.S01E01.Clampetts.Strike.Oil.720p.PLUTO.WEB-DL.AAC2.0.H.264.mkv
    22:12:47.924 INFO : Done
    for Three's Company
    got error too on v1.1.1 but v 0.6.1 work fine
    Edit: its look like audio out of sync after 11.43
    yep its look like as you can see below info, audio and video have different time

    Code:
    22:24:09.498 INFO : Freevine v0.6.1-beta (20231027)
    
    22:24:09.974 INFO : PlutoTV
    22:24:10.849 INFO : Three's Company: 8 Season(s), 174 Episode(s)
    
    22:24:14.535 INFO : Three's Company S02E09 Janet's Promotion
    
    22:24:14.645 INFO : N_m3u8DL-RE (Beta version) 20230628
    22:24:14.655 INFO : Loading URL: http://silo-hybrik.pluto.tv.s3.amazonaws.com/23309b_DLT/clip/5ee7c4986e0047001cb97666_Threes_Company_Janets_Promotion_S02E009/720p/20230522_164652/dash/0-end/main.mpd
    22:24:15.006 INFO : Content Matched: Dynamic Adaptive Streaming over HTTP
    22:24:15.006 INFO : Parsing streams...
    22:24:15.014 WARN : Writing meta json
    22:24:15.016 INFO : Extracted, there are 7 streams, with 5 basic streams, 1 audio streams, 1 subtitle streams
    22:24:15.016 INFO : Vid *CENC 2784 Kbps | 4 | 30 | avc1.64001f | 237 Segments | ~20m02s
    22:24:15.016 INFO : Vid *CENC 854x480 | 1844 Kbps | 3 | 30 | avc1.64001f | 225 Segments | ~19m02s
    22:24:15.016 INFO : Vid *CENC 854x480 | 1262 Kbps | 6 | 30 | avc1.64001f | 240 Segments | ~20m02s
    22:24:15.016 INFO : Vid *CENC 640x360 | 743 Kbps | 5 | 30 | avc1.64001f | 236 Segments | ~20m02s
    22:24:15.017 INFO : Vid *CENC 426x240 | 390 Kbps | 1 | 30 | avc1.64001f | 234 Segments | ~19m32s
    22:24:15.017 INFO : Aud *CENC 2 | 99 Kbps | mp4a.40.2 | 2CH | 235 Segments | ~19m32s
    22:24:15.017 INFO : Sub 0 | en | wvtt | 239 Segments | ~19m55s
    22:24:15.017 INFO : Parsing streams...
    22:24:15.020 INFO : Selected streams:
    22:24:15.020 INFO : Vid *CENC 2784 Kbps | 4 | 30 | avc1.64001f | 237 Segments | ~20m02s
    22:24:15.020 INFO : Aud *CENC 2 | 99 Kbps | mp4a.40.2 | 2CH | 235 Segments | ~19m32s
    22:24:15.020 INFO : Sub 0 | en | wvtt | 239 Segments | ~19m55s
    22:24:15.020 WARN : Writing meta json
    22:24:15.032 INFO : Save Name: Threes.Company.S02E09.Janets.Promotion.Nonep.PLUTO.WEB-DL.AAC2.0.H.264
    22:24:15.032 WARN : MuxAfterDone is detected, binary merging is automatically enabled
    22:24:15.033 INFO : Start downloading...Vid 2784 Kbps | 4 | 30 | avc1.64001f
    22:24:15.033 INFO : Start downloading...Sub 0 | en | wvtt
    22:24:15.033 INFO : Start downloading...Aud 2 | 99 Kbps | mp4a.40.2 | 2CH
    22:24:15.184 WARN : Type: cenc
    22:24:15.185 WARN : PSSH(WV): EhAAAAAAZGucfH1kXHMrtckcEhAAAAAAZGucfH1kXHMrtckdSOPclZsG
    22:24:15.185 WARN : KID: 00000000646b9c7c7d645c732bb5c91c
    22:24:15.186 INFO : Trying to search for KEY from text file...
    22:24:15.189 INFO : OK 00000000646b9c7c7d645c732bb5c91c:c4de2939b7acdbf8274b636ff2a76a1c
    22:24:15.190 WARN : Reading media info...
    22:24:15.260 INFO : [0x1]: Video, h264 (avc1), 1280x720
    22:24:15.293 WARN : Reading media info...
    22:24:15.338 WARN : Type: cenc
    22:24:15.339 WARN : PSSH(WV): EhAAAAAAZGucfH1kXHMrtckcEhAAAAAAZGucfH1kXHMrtckdSOPclZsG
    22:24:15.340 WARN : KID: 00000000646b9c7c7d645c732bb5c91d
    22:24:15.340 INFO : Trying to search for KEY from text file...
    22:24:15.341 INFO : OK 00000000646b9c7c7d645c732bb5c91d:29525af757f0d077356e70e0ec658151
    22:24:15.341 WARN : Reading media info...
    22:24:15.342 INFO : [0x1]: Data, none (wvtt) (default)
    22:24:15.378 INFO : [0x1]: Audio, aac (mp4a), 92 kb/s
    22:24:19.478 WARN : Extracting VTT(mp4) subtitle...
    22:24:19.512 INFO : Binary merging...
    22:24:21.778 INFO : Binary merging...
    22:24:21.819 INFO : Decrypting...
    22:24:28.352 INFO : Binary merging...
    22:24:28.549 INFO : Decrypting...
    22:24:30.376 WARN : Threes.Company.S02E09.Janets.Promotion.Nonep.PLUTO.WEB-DL.AAC2.0.H.264.mp4
    22:24:30.376 WARN : Threes.Company.S02E09.Janets.Promotion.Nonep.PLUTO.WEB-DL.AAC2.0.H.264.m4a
    22:24:30.376 WARN : Threes.Company.S02E09.Janets.Promotion.Nonep.PLUTO.WEB-DL.AAC2.0.H.264.en.srt
    22:24:30.376 WARN : Muxing to Threes.Company.S02E09.Janets.Promotion.Nonep.PLUTO.WEB-DL.AAC2.0.H.264.MUX.mkv
    22:24:31.197 WARN : Cleaning files...
    22:24:31.235 WARN : Rename to Threes.Company.S02E09.Janets.Promotion.Nonep.PLUTO.WEB-DL.AAC2.0.H.264.mkv
    22:24:31.236 INFO : Done
    Last edited by iamghost; 8th Jan 2024 at 16:38.
    Quote Quote  
  26. Originally Posted by iamghost View Post
    The Beverly Hillbillies..... look fine
    The Beverly Hillbillies is now working. I don't know what changed or what I did wrong in my command, but thank you for the help!

    I'll try Three's Company with an older version of freevine to see what it spits out, out of curiousity
    Quote Quote  
  27. Hello stabbedbybrick. I've only just noticed that you now have this all-in-one script (freevine.py) - I have your standalone scripts for itv and all4 so thought I'd give your new one a try. Here's a pic of my freevine folder and the error I'm getting ("no module named 'yaml'"). Any suggestions on what's wrong with my setup?

    The only thing I don't seem to have from 'Requirements' is "Widevine Device File (.wvd)" but it's not hyperlinked to anywhere on the github page so, if I still need it, where would I get it? Many thanks.
    Image Attached Thumbnails Click image for larger version

Name:	freevine error.jpg
Views:	52
Size:	116.3 KB
ID:	76119  

    Quote Quote  
  28. Member
    Join Date
    Dec 2021
    Location
    england
    Search Comp PM
    Pyyaml is list on Requirements.txt
    You will need install Requirements
    Code:
    pip install -r requirements.txt
    Last edited by iamghost; 9th Jan 2024 at 03:00.
    Quote Quote  
  29. Originally Posted by eday_2010 View Post

    I'll try Three's Company with an older version of freevine to see what it spits out, out of curiousity
    I've fixed the download error, but I haven't found a good solution for the sync issues on some videos. The streams on Pluto are delivered in three parts with ads forced in between, and each part has their own segments. In order to get an ad-free video, you assemble all the parts without ads. Sometimes the timestamps don't match, causing sync issues. You can even get sync issues on their actual web player by rewinding...

    To sum it up: Pluto is a genuine dumpster fire of a streaming service.
    Quote Quote  
  30. Originally Posted by stabbedbybrick View Post
    Originally Posted by eday_2010 View Post

    I'll try Three's Company with an older version of freevine to see what it spits out, out of curiousity
    I've fixed the download error, but I haven't found a good solution for the sync issues on some videos. The streams on Pluto are delivered in three parts with ads forced in between, and each part has their own segments. In order to get an ad-free video, you assemble all the parts without ads. Sometimes the timestamps don't match, causing sync issues. You can even get sync issues on their actual web player by rewinding...

    To sum it up: Pluto is a genuine dumpster fire of a streaming service.
    I have definitely noticed this snyc issue with some episodes of "Gunsmoke". It is nice to know you are looking for a solution to this frustrating problem. From my Google searches some of the paid for streaming downloader customers have run across this same problem and it seems a solution was found. As of late the movies I have downloaded from Pluto TV the timestamps match up and usually that means it is all in sync. I swear "The Fugitive" when I downloaded it earlier has sync issues and when I went back after another poster had downloaded it with no problems and downloaded it again there were no problems. Why that is I haven't a clue but I am grateful for it. One can get lip sync issue even when backing up DVDs; I backed up my Sister's Dr. Quinn Medicine Woman Complete Collection DVD set and some of the episodes have lip sync issues. They have Dr. Quinn Medicine Woman on Pluto TV U.S. but it looks interlaced wrong or something akin to that so I don't bother downloading it.

    You have made a terrific program and I appreciate it.

    Looking at the timestamps for "Three's Company" even if you do get it in sync if it is only twenty minutes long it may be an edited episode. The show ran from 1977 to 1983 and Wikipedia states that the episodes ran 25 minutes. This may be true for the first few seasons but episodes lengths decreased as time has marched on so later episodes may be 23 minutes. That is why I am saving up for "Maude The Complete Series" DVD set as some shows it is just criminal for them to be edited as you can really miss some terrific scenes. Edited episodes may be a factor in making the effort to download a TV show.
    Last edited by Tom Saurus; 9th Jan 2024 at 06:10.
    Quote Quote  



Similar Threads

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