LastResort: Boomers is a terrific show. Years ago I got the episodes of YouTube and back then they had theme songs with lyrics and it was such a catchy song I sang along with it. Now the words are gone and it might be a different tune as well.
Try StreamFab Downloader and download from Netflix, Amazon, Youtube! Or Try DVDFab and copy Blu-rays!
Try StreamFab Downloader and download streaming video from Youtube, Netflix, Amazon! Download free trial.
+ Reply to Thread
Results 571 to 600 of 759
Thread
-
-
-
I have moved on to trying to download from Tubi. I am getting the following error:
Code:1 Video └── [H.264, SDR] | en | 854x640 @ 1363 kb/s, 29.970 FPS ⠦ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ --:-- FAILED 1 Audio └── [AAC] | en | 2.0 ⠦ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ --:-- SKIPPED 1 Subtitle └── [SRT] | en ⠦ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ --:-- SKIPPED ╭───────────────────── Traceback (most recent call last) ──────────────────────╮ │ C:\Users\Brian\AppData\Local\Programs\Python\Python312\Lib\site-packages\dev │ │ ine\commands\dl.py:539 in result │ │ │ │ 536 │ │ │ │ │ │ │ ) │ │ 537 │ │ │ │ │ │ │ for i, track in enumerate(title.tracks) │ │ 538 │ │ │ │ │ │ )): │ │ ❱ 539 │ │ │ │ │ │ │ download.result() │ │ 540 │ │ │ except KeyboardInterrupt: │ │ 541 │ │ │ │ console.print(Padding( │ │ 542 │ │ │ │ │ ":x: Download Cancelled...", │ │ │ │ C:\Users\Brian\AppData\Local\Programs\Python\Python312\Lib\concurrent\future │ │ s\_base.py:449 in result │ │ │ │ 446 │ │ │ │ if self._state in [CANCELLED, CANCELLED_AND_NOTIFIED]: │ │ 447 │ │ │ │ │ raise CancelledError() │ │ 448 │ │ │ │ elif self._state == FINISHED: │ │ ❱ 449 │ │ │ │ │ return self.__get_result() │ │ 450 │ │ │ │ │ │ 451 │ │ │ │ self._condition.wait(timeout) │ │ 452 │ │ │ │ C:\Users\Brian\AppData\Local\Programs\Python\Python312\Lib\concurrent\future │ │ s\_base.py:401 in __get_result │ │ │ │ 398 │ def __get_result(self): │ │ 399 │ │ if self._exception: │ │ 400 │ │ │ try: │ │ ❱ 401 │ │ │ │ raise self._exception │ │ 402 │ │ │ finally: │ │ 403 │ │ │ │ # Break a reference cycle with the exception in self._ │ │ 404 │ │ │ │ self = None │ │ │ │ C:\Users\Brian\AppData\Local\Programs\Python\Python312\Lib\concurrent\future │ │ s\thread.py:58 in run │ │ │ │ 55 │ │ │ return │ │ 56 │ │ │ │ 57 │ │ try: │ │ ❱ 58 │ │ │ result = self.fn(*self.args, **self.kwargs) │ │ 59 │ │ except BaseException as exc: │ │ 60 │ │ │ self.future.set_exception(exc) │ │ 61 │ │ │ # Break a reference cycle with the exception 'exc' │ │ │ │ C:\Users\Brian\AppData\Local\Programs\Python\Python312\Lib\site-packages\dev │ │ ine\core\tracks\track.py:215 in download │ │ │ │ 212 │ │ │ │ │ │ # the service might not have explicitly define │ │ 213 │ │ │ │ │ │ # try find widevine DRM information from the i │ │ 214 │ │ │ │ │ │ try: │ │ ❱ 215 │ │ │ │ │ │ │ self.drm = [Widevine.from_track(self, sess │ │ 216 │ │ │ │ │ │ except Widevine.Exceptions.PSSHNotFound: │ │ 217 │ │ │ │ │ │ │ # it might not have Widevine DRM, or might │ │ 218 │ │ │ │ │ │ │ log.warning("No Widevine PSSH was found fo │ │ │ │ C:\Users\Brian\AppData\Local\Programs\Python\Python312\Lib\site-packages\dev │ │ ine\core\drm\widevine.py:93 in from_track │ │ │ │ 90 │ │ init_data = track.get_init_segment(session=session) │ │ 91 │ │ if init_data: │ │ 92 │ │ │ # try get via ffprobe, needed for non mp4 data e.g. WEBM f │ │ ❱ 93 │ │ │ probe = ffprobe(init_data) │ │ 94 │ │ │ if probe: │ │ 95 │ │ │ │ for stream in probe.get("streams") or []: │ │ 96 │ │ │ │ │ enc_key_id = stream.get("tags", {}).get("enc_key_i │ │ │ │ C:\Users\Brian\AppData\Local\Programs\Python\Python312\Lib\site-packages\dev │ │ ine\core\utils\subprocess.py:23 in ffprobe │ │ │ │ 20 │ elif isinstance(uri, bytes): │ │ 21 │ │ args.append("pipe:") │ │ 22 │ try: │ │ ❱ 23 │ │ ff = subprocess.run( │ │ 24 │ │ │ args, │ │ 25 │ │ │ input=uri if isinstance(uri, bytes) else None, │ │ 26 │ │ │ check=True, │ │ │ │ C:\Users\Brian\AppData\Local\Programs\Python\Python312\Lib\subprocess.py:548 │ │ in run │ │ │ │ 545 │ │ kwargs['stdout'] = PIPE │ │ 546 │ │ kwargs['stderr'] = PIPE │ │ 547 │ │ │ ❱ 548 │ with Popen(*popenargs, **kwargs) as process: │ │ 549 │ │ try: │ │ 550 │ │ │ stdout, stderr = process.communicate(input, timeout=timeo │ │ 551 │ │ except TimeoutExpired as exc: │ │ │ │ C:\Users\Brian\AppData\Local\Programs\Python\Python312\Lib\subprocess.py:102 │ │ 6 in __init__ │ │ │ │ 1023 │ │ │ │ │ self.stderr = io.TextIOWrapper(self.stderr, │ │ 1024 │ │ │ │ │ │ │ encoding=encoding, errors=errors) │ │ 1025 │ │ │ │ │ ❱ 1026 │ │ │ self._execute_child(args, executable, preexec_fn, close_f │ │ 1027 │ │ │ │ │ │ │ │ pass_fds, cwd, env, │ │ 1028 │ │ │ │ │ │ │ │ startupinfo, creationflags, shell, │ │ 1029 │ │ │ │ │ │ │ │ p2cread, p2cwrite, │ │ │ │ C:\Users\Brian\AppData\Local\Programs\Python\Python312\Lib\subprocess.py:153 │ │ 8 in _execute_child │ │ │ │ 1535 │ │ │ │ │ 1536 │ │ │ # Start the process │ │ 1537 │ │ │ try: │ │ ❱ 1538 │ │ │ │ hp, ht, pid, tid = _winapi.CreateProcess(executable, │ │ 1539 │ │ │ │ │ │ │ │ │ │ # no special security │ │ 1540 │ │ │ │ │ │ │ │ │ │ None, None, │ │ 1541 │ │ │ │ │ │ │ │ │ │ int(not close_fds), │ ╰──────────────────────────────────────────────────────────────────────────────╯ FileNotFoundError: [WinError 2] The system cannot find the file specified ❌ Download Failed... One of the track downloads had an error! See the error trace above for more information.
-
Have you got cookies saved from tubi site?? and saved into cookies folder within devine folder.
The only way i could get ffprobe, ffmpeg was to have them in my devine folder. (very odd because any other programme that needs them can find them easily within ffmpeg installation folder.
What's the url your after?? -
[Attachment 80741 - Click to enlarge]
I have tried everything with Pluto and yet it fails everytime. something to do at the merging stage. I checked my settings and if all the required pieces are installed yet it keeps failing.Last edited by Danker1990; 15th Jul 2024 at 04:44.
-
have also been getting this error but on all services tried 3 or different ones , have check logs and does seem to have anything , I havent changed any settings from maybe a week ago when was working have tried downgrade and reinstalling mkvtoolnix with out anysuccess , and it installed to path, have also tried switching downloaders from ariac to curl
--debug does not seem to work
only service that work is ip from stabby brick for uhd , but standard def i get the same errorLast edited by qruetry; 15th Jul 2024 at 06:20.
-
Same i didn't want to bring up any others incase it was a one off case but now you are reporting problems perhaps something has changed.
UPDATE: i did a full reinstallation of windows and redid the guides produced here and indeed the tool works so what i can say is a componment might be outdated on your system and is causing a muxing issue.Last edited by Danker1990; 15th Jul 2024 at 11:51. Reason: new info
-
I do have cookies saved from the Tubi site. Doing so got me over one error and onto this latest one.
I changed the path to point directly to ffmpeg, ffprobe and ffplay and that seems to have resolved FileNotFound error, but it now produces a new one:
Code:ValueError: Download Error (#3486940b1254f487): Network problem has occurred. cause:A socket operation was attempted to an unreachable network. (1), https://fastly2.tubi.video/63d42232-15da-4193-abb7-a67584ce9879/pdvuihlu.mp4 ❌ Download Failed... One of the track downloads had an error! See the error trace above for more information.
The URL I am after is https://tubitv.com/series/300000686/amen. I think it's right since it sees how many seasons and episodes there are before erroring out. My command line looks like this:
Code:devine dl -w S01-S05 TUBI "https://tubitv.com/series/300000686/amen"
Last edited by eday_2010; 15th Jul 2024 at 07:42.
-
-
-
That seemed to help. Progress!
It would download for a bit before failing and giving me a "shaka-packager is missing" error. I moved something around which made things worse. I have put everything back to where I had it (I think) and spent the last hour trying to figure out things out and am now getting this error:
Code:1 Video └── [H.264, SDR] | en | 854x640 @ 1359 kb/s, 29.970 FPS ⠴ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ --:-- FAILED 1 Audio └── [AAC] | en | 2.0 ⠴ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ --:-- SKIPPED 1 Subtitle └── [SRT] | en ⠴ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ --:-- SKIPPED ╭───────────────────── Traceback (most recent call last) ──────────────────────╮ │ C:\Users\Brian\AppData\Local\Programs\Python\Python312\Lib\site-packages\dev │ │ ine\commands\dl.py:539 in result │ │ │ │ 536 │ │ │ │ │ │ │ ) │ │ 537 │ │ │ │ │ │ │ for i, track in enumerate(title.tracks) │ │ 538 │ │ │ │ │ │ )): │ │ ❱ 539 │ │ │ │ │ │ │ download.result() │ │ 540 │ │ │ except KeyboardInterrupt: │ │ 541 │ │ │ │ console.print(Padding( │ │ 542 │ │ │ │ │ ":x: Download Cancelled...", │ │ │ │ C:\Users\Brian\AppData\Local\Programs\Python\Python312\Lib\concurrent\future │ │ s\_base.py:449 in result │ │ │ │ 446 │ │ │ │ if self._state in [CANCELLED, CANCELLED_AND_NOTIFIED]: │ │ 447 │ │ │ │ │ raise CancelledError() │ │ 448 │ │ │ │ elif self._state == FINISHED: │ │ ❱ 449 │ │ │ │ │ return self.__get_result() │ │ 450 │ │ │ │ │ │ 451 │ │ │ │ self._condition.wait(timeout) │ │ 452 │ │ │ │ C:\Users\Brian\AppData\Local\Programs\Python\Python312\Lib\concurrent\future │ │ s\_base.py:401 in __get_result │ │ │ │ 398 │ def __get_result(self): │ │ 399 │ │ if self._exception: │ │ 400 │ │ │ try: │ │ ❱ 401 │ │ │ │ raise self._exception │ │ 402 │ │ │ finally: │ │ 403 │ │ │ │ # Break a reference cycle with the exception in self._ │ │ 404 │ │ │ │ self = None │ │ │ │ C:\Users\Brian\AppData\Local\Programs\Python\Python312\Lib\concurrent\future │ │ s\thread.py:58 in run │ │ │ │ 55 │ │ │ return │ │ 56 │ │ │ │ 57 │ │ try: │ │ ❱ 58 │ │ │ result = self.fn(*self.args, **self.kwargs) │ │ 59 │ │ except BaseException as exc: │ │ 60 │ │ │ self.future.set_exception(exc) │ │ 61 │ │ │ # Break a reference cycle with the exception 'exc' │ │ │ │ C:\Users\Brian\AppData\Local\Programs\Python\Python312\Lib\site-packages\dev │ │ ine\core\tracks\track.py:215 in download │ │ │ │ 212 │ │ │ │ │ │ # the service might not have explicitly define │ │ 213 │ │ │ │ │ │ # try find widevine DRM information from the i │ │ 214 │ │ │ │ │ │ try: │ │ ❱ 215 │ │ │ │ │ │ │ self.drm = [Widevine.from_track(self, sess │ │ 216 │ │ │ │ │ │ except Widevine.Exceptions.PSSHNotFound: │ │ 217 │ │ │ │ │ │ │ # it might not have Widevine DRM, or might │ │ 218 │ │ │ │ │ │ │ log.warning("No Widevine PSSH was found fo │ │ │ │ C:\Users\Brian\AppData\Local\Programs\Python\Python312\Lib\site-packages\dev │ │ ine\core\drm\widevine.py:93 in from_track │ │ │ │ 90 │ │ init_data = track.get_init_segment(session=session) │ │ 91 │ │ if init_data: │ │ 92 │ │ │ # try get via ffprobe, needed for non mp4 data e.g. WEBM f │ │ ❱ 93 │ │ │ probe = ffprobe(init_data) │ │ 94 │ │ │ if probe: │ │ 95 │ │ │ │ for stream in probe.get("streams") or []: │ │ 96 │ │ │ │ │ enc_key_id = stream.get("tags", {}).get("enc_key_i │ │ │ │ C:\Users\Brian\AppData\Local\Programs\Python\Python312\Lib\site-packages\dev │ │ ine\core\utils\subprocess.py:23 in ffprobe │ │ │ │ 20 │ elif isinstance(uri, bytes): │ │ 21 │ │ args.append("pipe:") │ │ 22 │ try: │ │ ❱ 23 │ │ ff = subprocess.run( │ │ 24 │ │ │ args, │ │ 25 │ │ │ input=uri if isinstance(uri, bytes) else None, │ │ 26 │ │ │ check=True, │ │ │ │ C:\Users\Brian\AppData\Local\Programs\Python\Python312\Lib\subprocess.py:548 │ │ in run │ │ │ │ 545 │ │ kwargs['stdout'] = PIPE │ │ 546 │ │ kwargs['stderr'] = PIPE │ │ 547 │ │ │ ❱ 548 │ with Popen(*popenargs, **kwargs) as process: │ │ 549 │ │ try: │ │ 550 │ │ │ stdout, stderr = process.communicate(input, timeout=timeo │ │ 551 │ │ except TimeoutExpired as exc: │ │ │ │ C:\Users\Brian\AppData\Local\Programs\Python\Python312\Lib\subprocess.py:102 │ │ 6 in __init__ │ │ │ │ 1023 │ │ │ │ │ self.stderr = io.TextIOWrapper(self.stderr, │ │ 1024 │ │ │ │ │ │ │ encoding=encoding, errors=errors) │ │ 1025 │ │ │ │ │ ❱ 1026 │ │ │ self._execute_child(args, executable, preexec_fn, close_f │ │ 1027 │ │ │ │ │ │ │ │ pass_fds, cwd, env, │ │ 1028 │ │ │ │ │ │ │ │ startupinfo, creationflags, shell, │ │ 1029 │ │ │ │ │ │ │ │ p2cread, p2cwrite, │ │ │ │ C:\Users\Brian\AppData\Local\Programs\Python\Python312\Lib\subprocess.py:153 │ │ 8 in _execute_child │ │ │ │ 1535 │ │ │ │ │ 1536 │ │ │ # Start the process │ │ 1537 │ │ │ try: │ │ ❱ 1538 │ │ │ │ hp, ht, pid, tid = _winapi.CreateProcess(executable, │ │ 1539 │ │ │ │ │ │ │ │ │ │ # no special security │ │ 1540 │ │ │ │ │ │ │ │ │ │ None, None, │ │ 1541 │ │ │ │ │ │ │ │ │ │ int(not close_fds), │ ╰──────────────────────────────────────────────────────────────────────────────╯ FileNotFoundError: [WinError 2] The system cannot find the file specified ❌ Download Failed... One of the track downloads had an error! See the error trace above for more information.
-
Hi Chaps,
quick question about windscribe-proxy.exe and hola-proxy.exe,... Can both be used with de.vine,... by adding them to devine.yaml within C:\Users\XXX\AppData\Local\devine
I have tried hola-proxy.exe with billys gui and it shows as v1.12.1 (no idea if this is the latest version as I cannot seem to locate the file on the net.)
(But I do not have hola-proxy.exe within my devine.yaml it is only within my devine folder.
-------------
message for eday_2010..
my cookies last only a few hours before needing updating,... also the show i got two days ago has already gone from tubi. On tubi UK it was showing as unavailable, but now its gone. but with a u.s. vpn it is showing as available. sadly "amen" is showing the image below only on the u.s. site.
--------------------
I think this is where i can get hola proxy from, https://github.com/Snawoot/hola-proxy/releases/tag/v1.13.3
[Attachment 80760 - Click to enlarge]Last edited by LastResort; 16th Jul 2024 at 04:26. Reason: update...
-
Looking at iPlayer website it says that The Jetty is available in 4K UHD.
However, when I try and download it I get the following error :
[Attachment 80762 - Click to enlarge]
I used the command :
devine dl -r HLG ip https://www.bbc.co.uk/iplayer/episodes/m0020ys7/the-jetty
Does this mean that even though the iPlayer says it is available UHD it isn't possible for Devine to download it, or am I doing something obviously wrong?
Thanks. -
@peterb999:
"Selection unavailable" means that it can't find any streams for a given title, which in this case is the UHD stream. Why it can't find it could be because it simply doesn't exist, or it's located somewhere else. Hard to say which one. But considering the rest of the season is available as UHD, I'm guessing the first episode has been omitted for one reason or another.
I don't really question the behavior of iPlayer anymore. It is what it is. -
Haha, that made me laugh. Thanks for the reply. I didn't actually think of downloading the rest of the season, doh.
-
-
same but VT work fine
Code:2024-07-16 13:44:55 [I] download : + 1 Local Vaults 2024-07-16 13:44:55 [I] download : + 0 Remote Vaults 2024-07-16 13:44:55 [I] download : + Loaded LocalDevice: 8159 (L3) 2024-07-16 13:44:55 [I] iP : Creating a Python-requests Session 2024-07-16 13:44:55 [I] iP : + Set Common Headers 2024-07-16 13:44:55 [I] iP : + Set Cookies 2024-07-16 13:44:55 [I] iP : Obtaining a proxy to "gb" 2024-07-16 13:44:55 [I] iP : + Proxy was skipped as current region matches 2024-07-16 13:44:55 [I] iP : + Loaded [BBCiPlayer] Class instance 2024-07-16 13:44:55 [I] iP : Retrieving Titles 2024-07-16 13:44:55 [I] Titles : Title: The Jetty 2024-07-16 13:44:55 [I] Titles : Total Episodes: 4 2024-07-16 13:44:55 [I] Titles : By Season: 1 (4) 2024-07-16 13:44:55 [I] iP : Getting tracks for The Jetty S01E01 - Episode 1 2024-07-16 13:44:56 [I] iP : > All Tracks: 2024-07-16 13:44:56 [I] Tracks : 8 Video Tracks: 2024-07-16 13:44:56 [I] Tracks : VID | [hev1.2.4.L153.00.00.90, HLG] | en | 3840x2160 @ 21531 kb/s, 25.000 FPS 2024-07-16 13:44:56 [I] Tracks : VID | [hev1.2.4.L153.00.00.90, HLG] | en | 3200x1800 @ 15815 kb/s, 25.000 FPS 2024-07-16 13:44:56 [I] Tracks : VID | [hev1.2.4.L150.00.00.90, HLG] | en | 2560x1440 @ 10076 kb/s, 25.000 FPS 2024-07-16 13:44:56 [I] Tracks : VID | [hev1.2.4.L150.00.00.90, HLG] | en | 1920x1080 @ 7999 kb/s, 25.000 FPS 2024-07-16 13:44:56 [I] Tracks : VID | [hev1.2.4.L150.00.00.90, HLG] | en | 1600x900 @ 6140 kb/s, 25.000 FPS 2024-07-16 13:44:56 [I] Tracks : VID | [hev1.2.4.L120.00.00.90, HLG] | en | 1280x720 @ 3943 kb/s, 25.000 FPS 2024-07-16 13:44:56 [I] Tracks : VID | [hev1.2.4.L93.00.00.90, HLG] | en | 960x540 @ 2759 kb/s, 25.000 FPS 2024-07-16 13:44:56 [I] Tracks : VID | [hev1.2.4.L90.00.00.90, HLG] | en | 768x432 @ 1552 kb/s, 25.000 FPS 2024-07-16 13:44:56 [I] Tracks : 1 Audio Track: 2024-07-16 13:44:56 [I] Tracks : AUD | [mp4a.40.2] | 2ch | 191 kb/s | en 2024-07-16 13:44:56 [I] Tracks : 1 Text Track: 2024-07-16 13:44:56 [I] Tracks : SUB | [ttml] | en-GB | United Kingdom (SDH) 2024-07-16 13:44:56 [I] iP : > Selected Tracks: 2024-07-16 13:44:56 [I] Tracks : 1 Video Track: 2024-07-16 13:44:56 [I] Tracks : VID | [hev1.2.4.L153.00.00.90, HLG] | en | 3840x2160 @ 21531 kb/s, 25.000 FPS 2024-07-16 13:44:56 [I] Tracks : 1 Audio Track: 2024-07-16 13:44:56 [I] Tracks : AUD | [mp4a.40.2] | 2ch | 191 kb/s | en 2024-07-16 13:44:56 [I] Tracks : 1 Text Track: 2024-07-16 13:44:56 [I] Tracks : SUB | [ttml] | en-GB | United Kingdom (SDH) 2024-07-16 13:44:56 [I] iP : Getting tracks for The Jetty S01E02 - Episode 2 2024-07-16 13:44:57 [I] iP : > All Tracks: 2024-07-16 13:44:57 [I] Tracks : 8 Video Tracks: 2024-07-16 13:44:57 [I] Tracks : VID | [hev1.2.4.L153.00.00.90, HLG] | en | 3840x2160 @ 21436 kb/s, 25.000 FPS 2024-07-16 13:44:57 [I] Tracks : VID | [hev1.2.4.L153.00.00.90, HLG] | en | 3200x1800 @ 16051 kb/s, 25.000 FPS 2024-07-16 13:44:57 [I] Tracks : VID | [hev1.2.4.L150.00.00.90, HLG] | en | 2560x1440 @ 10048 kb/s, 25.000 FPS 2024-07-16 13:44:57 [I] Tracks : VID | [hev1.2.4.L150.00.00.90, HLG] | en | 1920x1080 @ 7864 kb/s, 25.000 FPS 2024-07-16 13:44:57 [I] Tracks : VID | [hev1.2.4.L150.00.00.90, HLG] | en | 1600x900 @ 5911 kb/s, 25.000 FPS 2024-07-16 13:44:57 [I] Tracks : VID | [hev1.2.4.L120.00.00.90, HLG] | en | 1280x720 @ 3814 kb/s, 25.000 FPS 2024-07-16 13:44:57 [I] Tracks : VID | [hev1.2.4.L93.00.00.90, HLG] | en | 960x540 @ 2641 kb/s, 25.000 FPS 2024-07-16 13:44:57 [I] Tracks : VID | [hev1.2.4.L90.00.00.90, HLG] | en | 768x432 @ 1491 kb/s, 25.000 FPS 2024-07-16 13:44:57 [I] Tracks : 1 Audio Track: 2024-07-16 13:44:57 [I] Tracks : AUD | [mp4a.40.2] | 2ch | 191 kb/s | en 2024-07-16 13:44:57 [I] Tracks : 1 Text Track: 2024-07-16 13:44:57 [I] Tracks : SUB | [ttml] | en-GB | United Kingdom (SDH) 2024-07-16 13:44:57 [I] iP : > Selected Tracks: 2024-07-16 13:44:57 [I] Tracks : 1 Video Track: 2024-07-16 13:44:57 [I] Tracks : VID | [hev1.2.4.L153.00.00.90, HLG] | en | 3840x2160 @ 21436 kb/s, 25.000 FPS 2024-07-16 13:44:57 [I] Tracks : 1 Audio Track: 2024-07-16 13:44:57 [I] Tracks : AUD | [mp4a.40.2] | 2ch | 191 kb/s | en 2024-07-16 13:44:57 [I] Tracks : 1 Text Track: 2024-07-16 13:44:57 [I] Tracks : SUB | [ttml] | en-GB | United Kingdom (SDH) 2024-07-16 13:44:57 [I] iP : Getting tracks for The Jetty S01E03 - Episode 3 2024-07-16 13:44:57 [I] iP : > All Tracks: 2024-07-16 13:44:57 [I] Tracks : 8 Video Tracks: 2024-07-16 13:44:57 [I] Tracks : VID | [hev1.2.4.L153.00.00.90, HLG] | en | 3840x2160 @ 20909 kb/s, 25.000 FPS 2024-07-16 13:44:57 [I] Tracks : VID | [hev1.2.4.L153.00.00.90, HLG] | en | 3200x1800 @ 15172 kb/s, 25.000 FPS 2024-07-16 13:44:57 [I] Tracks : VID | [hev1.2.4.L150.00.00.90, HLG] | en | 2560x1440 @ 9795 kb/s, 25.000 FPS 2024-07-16 13:44:57 [I] Tracks : VID | [hev1.2.4.L150.00.00.90, HLG] | en | 1920x1080 @ 7686 kb/s, 25.000 FPS 2024-07-16 13:44:57 [I] Tracks : VID | [hev1.2.4.L150.00.00.90, HLG] | en | 1600x900 @ 5736 kb/s, 25.000 FPS 2024-07-16 13:44:57 [I] Tracks : VID | [hev1.2.4.L120.00.00.90, HLG] | en | 1280x720 @ 3788 kb/s, 25.000 FPS 2024-07-16 13:44:57 [I] Tracks : VID | [hev1.2.4.L93.00.00.90, HLG] | en | 960x540 @ 2666 kb/s, 25.000 FPS 2024-07-16 13:44:57 [I] Tracks : VID | [hev1.2.4.L90.00.00.90, HLG] | en | 768x432 @ 1531 kb/s, 25.000 FPS 2024-07-16 13:44:57 [I] Tracks : 1 Audio Track: 2024-07-16 13:44:57 [I] Tracks : AUD | [mp4a.40.2] | 2ch | 191 kb/s | en 2024-07-16 13:44:57 [I] Tracks : 1 Text Track: 2024-07-16 13:44:57 [I] Tracks : SUB | [ttml] | en-GB | United Kingdom (SDH) 2024-07-16 13:44:57 [I] iP : > Selected Tracks: 2024-07-16 13:44:57 [I] Tracks : 1 Video Track: 2024-07-16 13:44:57 [I] Tracks : VID | [hev1.2.4.L153.00.00.90, HLG] | en | 3840x2160 @ 20909 kb/s, 25.000 FPS 2024-07-16 13:44:57 [I] Tracks : 1 Audio Track: 2024-07-16 13:44:57 [I] Tracks : AUD | [mp4a.40.2] | 2ch | 191 kb/s | en 2024-07-16 13:44:57 [I] Tracks : 1 Text Track: 2024-07-16 13:44:57 [I] Tracks : SUB | [ttml] | en-GB | United Kingdom (SDH) 2024-07-16 13:44:57 [I] iP : Getting tracks for The Jetty S01E04 - Episode 4 2024-07-16 13:44:58 [I] iP : > All Tracks: 2024-07-16 13:44:58 [I] Tracks : 8 Video Tracks: 2024-07-16 13:44:58 [I] Tracks : VID | [hev1.2.4.L153.00.00.90, HLG] | en | 3840x2160 @ 20930 kb/s, 25.000 FPS 2024-07-16 13:44:58 [I] Tracks : VID | [hev1.2.4.L153.00.00.90, HLG] | en | 3200x1800 @ 15103 kb/s, 25.000 FPS 2024-07-16 13:44:58 [I] Tracks : VID | [hev1.2.4.L150.00.00.90, HLG] | en | 2560x1440 @ 9601 kb/s, 25.000 FPS 2024-07-16 13:44:58 [I] Tracks : VID | [hev1.2.4.L150.00.00.90, HLG] | en | 1920x1080 @ 7538 kb/s, 25.000 FPS 2024-07-16 13:44:58 [I] Tracks : VID | [hev1.2.4.L150.00.00.90, HLG] | en | 1600x900 @ 5831 kb/s, 25.000 FPS 2024-07-16 13:44:58 [I] Tracks : VID | [hev1.2.4.L120.00.00.90, HLG] | en | 1280x720 @ 3759 kb/s, 25.000 FPS 2024-07-16 13:44:58 [I] Tracks : VID | [hev1.2.4.L93.00.00.90, HLG] | en | 960x540 @ 2642 kb/s, 25.000 FPS 2024-07-16 13:44:58 [I] Tracks : VID | [hev1.2.4.L90.00.00.90, HLG] | en | 768x432 @ 1500 kb/s, 25.000 FPS 2024-07-16 13:44:58 [I] Tracks : 1 Audio Track: 2024-07-16 13:44:58 [I] Tracks : AUD | [mp4a.40.2] | 2ch | 191 kb/s | en 2024-07-16 13:44:58 [I] Tracks : 1 Text Track: 2024-07-16 13:44:58 [I] Tracks : SUB | [ttml] | en-GB | United Kingdom (SDH) 2024-07-16 13:44:58 [I] iP : > Selected Tracks: 2024-07-16 13:44:58 [I] Tracks : 1 Video Track: 2024-07-16 13:44:58 [I] Tracks : VID | [hev1.2.4.L153.00.00.90, HLG] | en | 3840x2160 @ 20930 kb/s, 25.000 FPS 2024-07-16 13:44:58 [I] Tracks : 1 Audio Track: 2024-07-16 13:44:58 [I] Tracks : AUD | [mp4a.40.2] | 2ch | 191 kb/s | en 2024-07-16 13:44:58 [I] Tracks : 1 Text Track: 2024-07-16 13:44:58 [I] Tracks : SUB | [ttml] | en-GB | United Kingdom (SDH) 2024-07-16 13:44:58 [I] iP : Processed all titles!
-
-
anyone want vt, its old, and i have modified iplayer and peacock services to make it works.
https://files.videohelp.com/u/301156/0.1.0.%28iplayer_peacock%20fixed-yaml.zip
do not ask me to fix other services -
Appreciate that, @iamghost. Most people refuse to provide any info at all, so that's very nice to see. Thank you.
But it turns out I'm just a moron in this case, though. There's a part of the code I added a long time ago that sort of loops through all the available versions (Default, Editorial, Dubbed etc.) in order to check for the occasional outlier where the Default version wasn't the best one. And it's this code that messed up looking for UHD titles. So there aren't any "hidden" locations, it's just using the wrong pid version... It's probably this that caused some Glastonbury sets to go missing, as well.
It's stuff like this that makes you question whether I should be doing any this in the first place -
here old iP service before stabbedbybrick update iP about 2 weeks ago
you can keep both iP service files. old one will be name iP2 but remember to add pem file in devine.yaml name iP2 service. and also -r HLG will not work only use -v H.265 on command
Code:devine dl -v H.265 ip2 https://www.bbc.co.uk/iplayer/episodes/m0020ys7/the-jetty
old iP (untouched)
https://files.videohelp.com/u/301156/old_iP.zip
[Attachment 80769 - Click to enlarge]Last edited by iamghost; 16th Jul 2024 at 12:31.
-
Thanks for the reply. I resaved my cookies and added them to the Cookies folder but it did not solve anything. I still get the FileNotFoundError: [WinError 2] The system cannot find the file specified message and am not sure what file it cannot find.
This is the first time I have seen Amen available anywhere and would like to grab it to replace the low quality version I found a decade ago, so this problem is quite bothersome. Downloads from Pluto work fine still when it can find the metadata, so I don't know what's happening here. -
-
I'm trying to download a 4K program from BBC iPlayer using devine and stabbed's services. I'm getting the following error:
```
SSLError: HTTPSConnectionPool(host='securegate.iplayer.bbc.c o.uk', port=443):
Max retries exceeded with url:
/mediaselector/6/select/version/2.0/vpid/m00215yh/format/json/mediaset/iptv-uhd/
proto/https (Caused by SSLError(SSLError(398, '[SSL: CA_MD_TOO_WEAK] ca md too
weak (_ssl.c:3895)')))
```
It looks like the certificate is MD5 hashed which OpenSSL is complaining is too weak. I am using Ubuntu 24.04
Command I am running is:
```
devine dl --range HLG iP https://www.bbc.co.uk/iplayer/episodes/m0020ys7/the-jetty?seriesId=m0020ys8
```
I got the bbciplayer.pem file from a link on this board.
My config is:
```
directories:
services: /home/xxx/Documents/devine/services_sb/devine-services/services
cdm:
default: device
credentials:
ALL4: xxx@xxx.comxx
my5: xxx@xxx.comxx
UKTV: xxx@xxx.co.ukxx
AMZN: xxx@xxx.comxx
downloader: aria2c
aria2c:
max_concurrent_downloads: 2
file_allocation: prealloc
dl:
sub_format: srt
services:
iP:
cert: /home/xxx/Documents/devine/bbciplayer.pem
```
Can anyone help me? Is there a new version of the cert for iPlayer that I can download from somewhere, or some way to generate a new one? Thanks. -
Noob Starter Pack. Just download everything Widevine! Not kidding!.
https://files.videohelp.com/u/301890/hellyes5.zip -
-
Code:
devine dl TUBI https://tubitv.com/tv-shows/621782 / __ \/ ____/ | / / _/ | / / ____/ / / / / __/ | | / // // |/ / __/ / /_/ / /___ | |/ // // /| / /___ /_____/_____/ |___/___/_/ |_/_____/ ⠀ v3.3.3 Copyright © 2019-2024 rlaphoenix https://github.com/devine-dl/devine Service Config loaded Loaded RemoteCdm Widevine CDM: 8159 (L3) Loaded 1 Vaults ────────────────────────────── Service: TUBI ─────────────────────────────── Service is not Geoblocked in your region Authenticated with Service ──────────────────── Series: Blue Mountain State (2011) ──────────────────── 1 Season, 1 Episode ─────────────────── Blue Mountain State S03E10 One Week ──────────────────── 1 Video └── [H.264, SDR] | en | 1280x720 @ 2522 kb/s, 23.974 FPS ⠦ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ --:-- FAILED 1 Audio └── [AAC] | en | 2.0 ⠦ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ --:-- SKIPPED 1 Subtitle └── [SRT] | en ⠦ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ --:-- SKIPPED Widevine(AAAANHBzc2gAAAAA7e+LqXnWSs6jyCfc1R0h7QAAABQIARIQICt3SOauSfa5E 7XoCgoadQ==) └── An exception occurred in the Service's license function: Cannot Open CDM Session, Secret Key is Invalid, the Key is case-sensitive. [401] ❌ Download Failed... An unexpected error occurred in one of the download workers. See the error trace above for more information.
I started to get Devine working on my machine... I got this secret key error a couple of times. Can someone point my in the right direction on how to fix it? I also was able to download from PLUTO, But it failed muxing. I have all the required tools in the folder and added to /PATH/... is there something I'm missing? Thanks. -
@SL33K:
Since you're using a Remote CDM, I guessing the "secret key" is referring to the API key and that it might be invalid. If you're only using android L3's like this, there's really no reason not to use a local CDM. There are several linked in the stickies in this forum courtesy of @Karoolus. Either way, the error is linked to the CDM you're accessing.
As for the other error, I'll advise you and about 99% of the people posting errors in this thread: Don't put any of the dependencies in the Devine folder. Create a folder like C:\bin or whatever, add that folder to environment PATH, and place everything in there. Alternatively, you can try winget or chocolatey to handle everything. Before running Devine, test each by calling them from the command line so you know they work system-wide. -
Thank You sir....Success
Code:1 Video └── [H.264, SDR] | en | 1280x720 @ 2469 kb/s, 23.974 FPS ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 00:29 Downloaded 1 Audio └── [AAC] | en | 2.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 00:37 Downloaded 1 Subtitle └── [SRT] | en ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 00:37 Downloaded Widevine(AAAANHBzc2gAAAAA7e+LqXnWSs6jyCfc1R0h7QAAABQIARIQbRqbxoxPQkm6X wUMwRhLaw==) └── 6d1a9bc68c4f4249ba5f050cc1184b6b:e338eb20fe5c2af9a4f9b7ad5c8d70a8* Track downloads finished in 0m37s Multiplexing... ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 00:02 🎉 Title downloaded in 0m39s! Processed all titles in 0m41s
Similar Threads
-
How do I completely remove the music and sound effects from a movie?
By cns00 in forum EditingReplies: 1Last Post: 15th Jan 2024, 12:11 -
Which software can remove music from show but keep character dialogue?
By Mohamed61020 in forum AudioReplies: 6Last Post: 2nd Jul 2023, 21:32 -
Software for simple music videos?
By dewiclements in forum Software PlayingReplies: 3Last Post: 26th Jul 2022, 01:21 -
H.264 for archival and editing - no go?
By malling in forum CapturingReplies: 8Last Post: 19th Aug 2019, 23:51 -
Movie music too loud but dialogue too quiet fix needed
By hokkom in forum AudioReplies: 121Last Post: 4th May 2019, 08:51