+ Reply to Thread
Results 781 to 810 of 831
-
-
update itv service to fixed it
https://github.com/stabbedbybrick/services/tree/main/services -
Yes, I have, I'm still getting the same error message.
However, now that I have updated the ITV service, I now get this error message when using it with cookies:
Code:─────────────────────────────── Service: ITV ─────────────────────────────── Service is not Geoblocked in your region + Cookies for 'default' profile found, authenticating... ╭───────────────────── Traceback (most recent call last) ──────────────────────╮ │ in _run_module_as_main:198 │ │ in _run_code:88 │ │ │ │ in <module>:10 │ │ │ │ C:\Users\User\unshackle\.venv\Lib\site-packages\click\core.py:1462 in │ │ __call__ │ │ │ │ C:\Users\User\unshackle\.venv\Lib\site-packages\click\core.py:1383 in main │ │ │ │ C:\Users\User\unshackle\.venv\Lib\site-packages\click\core.py:1850 in invoke │ │ │ │ C:\Users\User\unshackle\.venv\Lib\site-packages\click\core.py:1850 in invoke │ │ │ │ C:\Users\User\unshackle\.venv\Lib\site-packages\click\core.py:1819 in │ │ _process_result │ │ │ │ C:\Users\User\unshackle\.venv\Lib\site-packages\click\core.py:814 in invoke │ │ │ │ C:\Users\User\unshackle\unshackle\commands\dl.py:800 in result │ │ │ │ 797 │ │ │ try: │ │ 798 │ │ │ │ cookies = self.get_cookie_jar(self.service, self.prof │ │ 799 │ │ │ │ credential = self.get_credentials(self.service, self. │ │ ❱ 800 │ │ │ │ service.authenticate(cookies, credential) │ │ 801 │ │ │ │ if cookies or credential: │ │ 802 │ │ │ │ │ self.log.info("Authenticated with Service") │ │ 803 │ │ │ │ │ if self.debug_logger: │ │ │ │ C:\Users\User\unshackle\unshackle\services\ITV\__init__.py:91 in │ │ authenticate │ │ │ │ 88 │ │ │ │ sys.exit(1) │ │ 89 │ │ │ │ │ 90 │ │ │ itv_session = json.loads(itv_session) │ │ ❱ 91 │ │ │ refresh_token = itv_session["tokens"]["content"].get("refr │ │ 92 │ │ │ if not refresh_token: │ │ 93 │ │ │ │ self.log.error(" - Error: Access tokens not found. Try │ │ 94 │ │ │ │ sys.exit(1) │ ╰──────────────────────────────────────────────────────────────────────────────╯ KeyError: 'content' -
Since I updated to the newest version I am getting this:
C:\Unshackle>uv run unshackle env info
ERROR: The 'scene_naming' option has been removed.
Please configure 'output_template' in your unshackle.yaml instead.
See unshackle-example.yaml for examples.
So I tried putting this in my main.yaml:
# Set file naming convention
# Plex movies: 'The Matrix (1999) 1080p'
# Plex series: 'Breaking Bad S01E01 Pilot'
scene_naming: true
Any help is appreciated and thank you in advance. It doesn't matter what command I use I get the above and can't get any further.
Update I have now tried this and I am still not getting anywhere:
# Set terminal background color (custom option not in CONFIG.md)
set_terminal_bg: false
# Set file naming convention
# Plex movies: 'The Matrix (1999) 1080p'
# Plex series: 'Breaking Bad S01E01 Pilot'
scene_naming: true
output_template:
# Plex-friendly naming (space-separated, clean format)
# movies: '{title} ({year}) {quality}'
# series: '{title} {season_episode} {episode_name?}'
# songs: '{track_number}. {title}'
Update I got it fixed I copied and replaced what I had with that whole output template section. Now to back up this main.yamlLast edited by Tom Saurus; 21st Mar 2026 at 09:55.
-
What isn't obvious is how to format the folder names for Series and Movies. I certainly don't want the whole file naming format repeated for the folder name.
I'm sure there was an edit for this but I can't remember. -
Scene naming as an option has been removed and the following settings have been added in its place.
If you belong to a 'scene' group and download stuff you have all the bells and whistles to ring or blow.
If you just want simple name, you may choose that too. The following is the preset used in envied-working-example.yaml from TwinVine.
If you use TwinVine just git pull and then copy the section inside packages/envied/src/envied/envied-working-example (as below) to your envied.yaml. Don't copy the whole envied-working-example file as you will overwrite your sites settings, login and other details - just edit it.
I now prefer spaces in filenames, but in the template above spaces may be replaced by . or underscore if that is your preference.Code:output-template: # Plex-friendly naming (space-separated, clean format) movies: '{title} ({year})' series: '{title} {season_episode} {episode_name?}' songs: '{track_number}. {title}'
The whole template should you wish
Code:# Custom output templates for filenames # Configure output_template in your envied.yaml to control filename format. # If not configured, default scene-style templates are used and a warning is shown. # Available variables: {title}, {year}, {season}, {episode}, {season_episode}, {episode_name}, # {quality}, {resolution}, {source}, {audio}, {audio_channels}, {audio_full}, # {video}, {hdr}, {hfr}, {atmos}, {dual}, {multi}, {tag}, {edition}, {repack}, # {lang_tag} # Conditional variables (included only if present): Add ? suffix like {year?}, {episode_name?}, {hdr?} # Customize the templates below: # # Example outputs: # Scene movies: 'The.Matrix.1999.1080p.SERVICE.WEB-DL.DDP5.1.H.264-EXAMPLE' # Scene movies (HDR): 'Dune.2021.2160p.SERVICE.WEB-DL.DDP5.1.HDR10.H.265-EXAMPLE' # Scene movies (REPACK): 'Dune.2021.REPACK.2160p.SERVICE.WEB-DL.DDP5.1.H.265-EXAMPLE' # Scene series: 'Breaking.Bad.2008.S01E01.Pilot.1080p.SERVICE.WEB-DL.DDP5.1.H.264-EXAMPLE' # Plex movies: 'The Matrix (1999)' # Plex series: 'Breaking Bad S01E01 Pilot' output_template: # Scene-style naming (dot-separated) #movies: '{title}.{year}.{repack?}.{edition?}.{quality}.{source}.WEB-DL.{dual?}.{multi?}.{audio_full}.{atmos?}.{hdr?}.{hfr?}.{video}-{tag}' #series: '{title}.{year?}.{season_episode}.{episode_name?}.{repack?}.{edition?}.{quality}.{source}.WEB-DL.{dual?}.{multi?}.{audio_full}.{atmos?}.{hdr?}.{hfr?}.{video}-{tag}' #songs: '{track_number}.{title}.{repack?}.{edition?}.{source?}.WEB-DL.{audio_full}.{atmos?}-{tag}' # # Plex-friendly naming (space-separated, clean format) movies: '{title} ({year})' series: '{title} {season_episode} {episode_name?}' songs: '{track_number}. {title}' # # Minimal naming (basic info only) # movies: '{title}.{year}.{quality}' # series: '{title}.{season_episode}.{episode_name?}' # # Custom scene-style with specific elements # movies: '{title}.{year}.{quality}.{hdr?}.{source}.WEB-DL.{audio_full}.{video}-{tag}' # series: '{title}.{year?}.{season_episode}.{episode_name?}.{quality}.{hdr?}.{source}.WEB-DL.{audio_full}.{atmos?}.{video}-{tag}' # Language-based tagging for output filenames # Automatically adds language identifiers (e.g., DANiSH, NORDiC, DKsubs) based on # audio and subtitle track languages. Rules are evaluated in order; first match wins. # Use {lang_tag?} in your output_template to place the tag in the filename. # # Conditions (all conditions in a rule must match): # audio: <lang> - any audio track matches this language # subs_contain: <lang> - any subtitle matches this language # subs_contain_all: [lang, ...] - subtitles include ALL listed languages # # language_tags: # rules: # - audio: da # tag: DANiSH # - audio: sv # tag: SWEDiSH # - audio: nb # tag: NORWEGiAN # - audio: en # subs_contain_all: [da, sv, nb] # tag: NORDiC # - audio: en # subs_contain: da # tag: DKsubsNoob Starter Pack. Just download any Widevine media! Over 25,000 downloads for V6!.
https://files.videohelp.com/u/301890/hellyes6.zip -
It's also in the unshackle-example.yaml like the info says:
https://github.com/unshackle-dl/unshackle/blob/main/unshackle/unshackle-example.yaml
All you have to do if you are updating a current yaml is:
Copy and paste this from unshackle-example.yaml
And remove the -{tag} if you don't use them.Code:output_template: # Scene-style naming (dot-separated) movies: '{title}.{year}.{repack?}.{edition?}.{quality}.{source}.WEB-DL.{dual?}.{multi?}.{audio_full}.{atmos?}.{hdr?}.{hfr?}.{video}-{tag}' series: '{title}.{year?}.{season_episode}.{episode_name?}.{repack?}.{edition?}.{quality}.{source}.WEB-DL.{dual?}.{multi?}.{audio_full}.{atmos?}.{hdr?}.{hfr?}.{video}-{tag}' songs: '{track_number}.{title}.{repack?}.{edition?}.{source?}.WEB-DL.{audio_full}.{atmos?}-{tag}'
Or for plex:
Then find in you current yaml:Code:output_template: # Scene-style naming (dot-separated) # Plex-friendly naming (space-separated, clean format) movies: '{title} ({year}) {quality}' series: '{title} {season_episode} {episode_name?}' songs: '{track_number}. {title}'
Then either put a # before 'scene_naming: true' or delete the entire 4 lines.Code:# Set file naming convention # true for style - Prime.Suspect.S07E01.The.Final.Act.Part.One.1080p.ITV.WEB-DL.AAC2.0.H.264 # false for style - Prime Suspect S07E01 The Final Act - Part One scene_naming: true
It's pretty self-explanatory -
What I prefer when it comes to naming of series is:
series name two spaces S01E01 two spaces then episode name
To me it looks better with two spaces as it is all globbed together so
The Blacklist S01E01 Pilot
That to me looks better than:
The Blacklist S01E01 Pilot -
I am concerned that we are getting into the realms of discussing premium subscription sites, like the above post (if I'm wrong then I do apologise). At the top of every page: 'Please don't discuss paid subscription services!'. If this is not adhered to, there is a danger we could lose what we have here and that affects everybody. If you have such a query, discuss it in private with a member who may be able to help you.
Thank you. -
Last edited by iamghost; 23rd Mar 2026 at 06:13.
-
If I remember correctly for Prague Mysteries on Tubi I had an error come up similar to that one above and checking it now I get this from:
Code:C:\Unshackle>uv run unshackle dl --list -w S01E01 TUBI https://tubitv.com/series/300008227/the-prague-mysteries ▄ ▄▌ ▐ ▄ .▄▄ · ▄ .▄ ▄▄▄· ▄▄· ▄ ▄ ▄▄▌ ▄▄▄ . █▪██▌█▌▐█▐█ ▀. ██▪▐█▐█ ▀█ ▐█ ▌▪█▌▄▌▪██ ▀▄.▀· █▌▐█▌▐█▐▐▌▄▀▀▀█▄██▀▐█▄█▀▀█ ██ ▄▄▐▀▀▄·██▪ ▐▀▀▪▄ ▐█▄█▌██▐█▌▐█▄▪▐███▌▐▀▐█ ▪▐▌▐███▌▐█.█▌▐█▌▐▌▐█▄▄▌ ▀▀▀ ▀▀ █▪ ▀▀▀▀ ▀▀▀ · ▀ ▀ ·▀▀▀ ·▀ ▀.▀▀▀ ▀▀▀ v 4.0.0 - © 2025-2026 - github.com/unshackle-dl/unshackle Service Config loaded Loaded 1/1 Vaults Loaded Widevine CDM: 4464 (L3) ────────────────────────────── Service: TUBI ─────────────────────────────── Service has no Geofence Authenticated with Service ─────────────────── Series: The Prague Mysteries (2021) ──────────────────── 1 seasons, S1(10) ───────────────────── The Prague Mysteries 2021 S01E01 ───────────────────── Search -> No match found - Could not find a h264 video resource for this title - Could not find a h265 video resource for this title ╭───────────────────────── Available Tracks ─────────────────────────╮ │ 1 Subtitle │ │ └── [SRT] | en │ │ 4 Chapters │ │ ├── 00:00:00.000 │ │ ├── 00:00:02.000 | Intro │ │ ├── 00:00:49.000 │ │ └── 01:04:07.000 | End Credits │ ╰────────────────────────────────────────────────────────────────────╯ Processed all titles in 0m0s C:\Unshackle> -
I get error like that with unshackle version 4.0.0
but with version 3.0.0
Code:▄ ▄▌ ▐ ▄ .▄▄ · ▄ .▄ ▄▄▄· ▄▄· ▄ ▄ ▄▄▌ ▄▄▄ . █▪██▌█▌▐█▐█ ▀. ██▪▐█▐█ ▀█ ▐█ ▌▪█▌▄▌▪██ ▀▄.▀· █▌▐█▌▐█▐▐▌▄▀▀▀█▄██▀▐█▄█▀▀█ ██ ▄▄▐▀▀▄·██▪ ▐▀▀▪▄ ▐█▄█▌██▐█▌▐█▄▪▐███▌▐▀▐█ ▪▐▌▐███▌▐█.█▌▐█▌▐▌▐█▄▄▌ ▀▀▀ ▀▀ █▪ ▀▀▀▀ ▀▀▀ · ▀ ▀ ·▀▀▀ ·▀ ▀.▀▀▀ ▀▀▀ v 3.0.0 - © 2025-2026 - github.com/unshackle-dl/unshackle ⚠️ Update available! Current: 3.0.0 → Latest: 4.0.0 Visit: https://github.com/unshackle-dl/unshackle/releases/latest Service Config loaded Loaded 2/2 Vaults Loaded Widevine CDM: 4464 (L3) ────────────────────────────── Service: TUBI ─────────────────────────────── Service has no Geofence Authenticated with Service ─────────────────── Series: The Prague Mysteries (2021) ──────────────────── 1 seasons, S1(10) ───────────────────── The Prague Mysteries 2021 S01E01 ───────────────────── Search -> No match found ╭───────────────────────── Available Tracks ─────────────────────────╮ │ 3 Videos │ │ ├── [H.264, SDR] | cs | 1280x720 @ 2664 kb/s, 29.970 FPS │ │ ├── [H.264, SDR] | cs | 854x480 @ 1339 kb/s, 29.970 FPS │ │ └── [H.264, SDR] | cs | 640x360 @ 649 kb/s, 29.970 FPS │ │ 1 Audio │ │ └── [AAC] | en | 2.0 | 127 kb/s │ │ 1 Subtitle │ │ └── [SRT] | en │ │ 4 Chapters │ │ ├── 00:00:00.000 │ │ ├── 00:00:02.000 | Intro │ │ ├── 00:00:49.000 │ │ └── 01:04:07.000 | End Credits │ ╰───────────────────────────── -
That is interesting; thanks for your response. I probably won't bother with the show I played a little bit of one episode and it is probably going to be too brutal for me. It reminds me of "Luther", I only watched one episode and it was so violent I was too squemish to watch the rest. I guess that explains why I don't watch Slasher movies. I had nightmares watching some Edge of Night episodes when I was growing up. Hopefully whatever this issue it is gets corrected as the program evolves and doesn't effect many other TV series or movies.
-
Anyone having a problem with CBS. It seems to be getting just the first eight minutes or so of an episode not the entire thing. It shows it is succeeding but when you check the video you are not getting an entire episode.
Update I gave it a try with Envied and it got the same warning but it got the entire episode.Code:C:\unshackle>uv run unshackle dl -q 720 -w S02E14 CBS https://www.cbs.com/shows/watson/ ▄ ▄▌ ▐ ▄ .▄▄ · ▄ .▄ ▄▄▄· ▄▄· ▄ ▄ ▄▄▌ ▄▄▄ . █▪██▌█▌▐█▐█ ▀. ██▪▐█▐█ ▀█ ▐█ ▌▪█▌▄▌▪██ ▀▄.▀· █▌▐█▌▐█▐▐▌▄▀▀▀█▄██▀▐█▄█▀▀█ ██ ▄▄▐▀▀▄·██▪ ▐▀▀▪▄ ▐█▄█▌██▐█▌▐█▄▪▐███▌▐▀▐█ ▪▐▌▐███▌▐█.█▌▐█▌▐▌▐█▄▄▌ ▀▀▀ ▀▀ █▪ ▀▀▀▀ ▀▀▀ · ▀ ▀ ·▀▀▀ ·▀ ▀.▀▀▀ ▀▀▀ v 3.0.0 - © 2025-2026 - github.com/unshackle-dl/unshackle ⚠️ Update available! Current: 3.0.0 → Latest: 4.0.0 Visit: https://github.com/unshackle-dl/unshackle/releases/latest Service Config loaded Loaded 1/1 Vaults Loaded Widevine CDM: 4445 (L3) ─────────────────────────────── Service: CBS ─────────────────────────────── Service is not Geoblocked in your region ────────────────────────────── Series: Watson ────────────────────────────── 2 seasons, S1(13), S2(14) ─────────────────────── Watson S02E14 Wrongful Life ──────────────────────── ThePlatform request failed: max() iterable argument is empty, falling back to standard manifest 1 Video └── [H.264, SDR] | en-US | 1280x720 @ 3301 kb/s, 23.976 FPS ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 02:06 Downloaded 1 Audio └── [DD+] | en-US | 6.0 | 194 kb/s | United States ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 02:01 Downloaded 1 Subtitle └── [WVTT] | en-US | United States ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 02:02 Downloaded 2 Chapters ├── 00:00:00.000 └── 00:42:22.000 | Credits Widevine(AAAAWHBzc2gAAAAA7e+LqXnWSs6jyCfc1R0h7QAAADgIARIQeWf9z5MkS...) └── 7967fdcf932449899d5035986f9ffc93:344f8f8d1a34adaec256083e525ac44c* from Local SQLite Track downloads finished in 2m6s Multiplexing... ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 00:00 Title downloaded in 2m7s! Processed all titles in 2m10sLast edited by Tom Saurus; 23rd Mar 2026 at 21:32.
-
I have same like 8 mins video,
here full video I did download without unshackle
manifest.mpd add, I have remove all ads from mpd
https://gofile.io/d/klYkvi -
I got it with Envied and watched the episode and no problems. However the incomplete video issue may spread to Envied and Angela wrote that Envied will no longer be updated. Thank you on behalf of those who need to get that episode.
-
-
Hi Stabby, HBO MAX releases today in the UK, would it be possible to make a service for that? I do remember you saying it's pretty much identical to the latest DSCP service and you can edit some of the code to make it work so I might have a go at doing that.
Cheers Stabby for you continued support to keep the services up to date. -
-
OK for me.
[Attachment 91713 - Click to enlarge] -
One of us needs to raise this issue over at at stabbedbybrick's website and if it is a service issue he may be able remedy it; in regard to CBS.
As for HBO/Max that is a premium service and stabbedbybrick does not address those services and it is against the rules so please don't openly ask about such services going forward. Perhaps you can private message someone or maybe there is another forum somewhere that can help with that issue.
I want to write once again thank you all for the help you give me here at VideoHelp. I appreciate it very much. I hope I help others along the way as well. -
-
I'm trying to download the 5 most recent episodes of The Young & The Restless from CBS. Of the 5 freely available episodes, only s53e116 downloads complete. The other 4 all end up as partial videos.
I suspect I must have something configured wrong, or installed wrong, but I don't understand why it works for 1 out of 5 videos.
Here's an example output from Unshackle and from Envied. Both produce the same video, which is about 3 and a half minutes long. (*edit:* just realized this is when the first commercial break happens, at 3 and a half minutes. Not sure if that's relevant.)
https://www.cbs.com/shows/video/ALVE01KKEK2YHME5WBDH46PRFJ510X/
[Attachment 91724 - Click to enlarge]
[Attachment 91725 - Click to enlarge]
Any suggestions?Last edited by SomeDingus; 27th Mar 2026 at 13:43.
-
??!
[Attachment 91726 - Click to enlarge]
Full video mate, pointless posting otherwise. innit?
Similar Threads
-
Devine - Modular Movie, TV, and Music Archival Software
By billybanana in forum Video Streaming DownloadingReplies: 1871Last Post: 26th Jan 2026, 14:12 -
Bitrate confusion: HD vs. DV archival
By taigi in forum Capturing and VCRReplies: 3Last Post: 9th Nov 2024, 03:38 -
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




Quote