VideoHelp Forum




+ Reply to Thread
Page 34 of 34
FirstFirst ... 24 32 33 34
Results 991 to 1,009 of 1009
  1. Member
    Join Date
    Dec 2021
    Location
    england
    Search Comp PM
    Originally Posted by PunchDrunkL0ve View Post
    Originally Posted by iamghost View Post
    try update sbs service
    work on my machine..
    OK will try that. In the meantime I took the liberty of DMing you -hope that's OK.

    https://gofile.io/d/ScC7z1
    Quote Quote  
  2. Originally Posted by PunchDrunkL0ve View Post
    SBS is no longer working for me. Not sure if it's my VPN or unshackle. Any good Samaritans around to grab something for me? Please DM me
    Do you keep getting
    Code:
    ConnectionError: Failed to request the M3U(8) document.
    That's what I get. One day it will work fine and the other it doesn't. Think it may be the VPN.
    Quote Quote  
  3. I hadn't checked out CBC for quite a while and I updated to the latest stabbedbybrick services and I just added a Cookie for CBC in the Cookie folder to try to remedy this problem:

    ConnectionError: 400 -
    {"error":"invalid_grant","error_description":"AADB 2C90080: The provided grant
    has expired. Please re-authenticate and try again. Current time: 1780320496,
    Grant issued time: 1775424010, Grant expiration time: 1778102410\r\nCorrelation
    ID: bc4c2456-3734-46a8-9e30-438b4de8b308\r\nTimestamp: 2026-06-01
    13:28:16Z\r\n"}

    Is anyone else having problems with CBC? Thanks in advance on how I can remedy this and get CBC working again.

    I did some thinking and removed my tokens from the Cache CBC folder. Unshackle got new tokens and things seem to be fine.
    Last edited by Tom Saurus; 1st Jun 2026 at 08:43.
    Quote Quote  
  4. Originally Posted by iamghost View Post
    Originally Posted by PunchDrunkL0ve View Post
    Originally Posted by iamghost View Post
    try update sbs service
    work on my machine..
    OK will try that. In the meantime I took the liberty of DMing you -hope that's OK.

    https://gofile.io/d/ScC7z1
    Thank you!
    Quote Quote  
  5. Originally Posted by SaLTy View Post
    Originally Posted by PunchDrunkL0ve View Post
    SBS is no longer working for me. Not sure if it's my VPN or unshackle. Any good Samaritans around to grab something for me? Please DM me
    Do you keep getting
    Code:
    ConnectionError: Failed to request the M3U(8) document.
    That's what I get. One day it will work fine and the other it doesn't. Think it may be the VPN.
    That's the one, but haven't had the change to update the service yet so can't rule that out either.
    Quote Quote  
  6. Originally Posted by PunchDrunkL0ve View Post
    Originally Posted by SaLTy View Post
    Originally Posted by PunchDrunkL0ve View Post
    SBS is no longer working for me. Not sure if it's my VPN or unshackle. Any good Samaritans around to grab something for me? Please DM me
    Do you keep getting
    Code:
    ConnectionError: Failed to request the M3U(8) document.
    That's what I get. One day it will work fine and the other it doesn't. Think it may be the VPN.
    That's the one, but haven't had the change to update the service yet so can't rule that out either.
    I'm using the latest service so don't think it's that
    Quote Quote  
  7. Member
    Join Date
    Dec 2021
    Location
    england
    Search Comp PM
    its vpn, I use expressvpn and get
    Code:
    ConnectionError: Failed to request the M3U(8) document.
    windscribe vpn work fine
    Image
    [Attachment 92533 - Click to enlarge]
    Quote Quote  
  8. Originally Posted by iamghost View Post
    its vpn, I use expressvpn and get
    Code:
    ConnectionError: Failed to request the M3U(8) document.
    windscribe vpn work fine
    Image
    [Attachment 92533 - Click to enlarge]
    Thought it was the VPN. I use NordVPN, are you using the free plan for Windscribe?
    Quote Quote  
  9. Member
    Join Date
    Dec 2021
    Location
    england
    Search Comp PM
    no I paid for it
    Quote Quote  
  10. Member
    Join Date
    Nov 2024
    Location
    Planet Earth
    Search PM
    Everyone,

    I just noticed that unshackle version 5.1.0 has just been released.
    https://github.com/unshackle-dl/unshackle/releases/tag/5.1.0

    This is what I approximately did to upgrade. I ran each line, one line at a time.

    Code:
    uv self update
    
    uv lock --upgrade
    uv sync --upgrade
    
    git status
    git restore uv.lock  (IF NECESSARY)
    
    git fetch origin tag 5.1.0 --no-tags
    git merge 5.1.0
    git describe --tags --exact-match HEAD
    
    uv lock --upgrade
    uv sync --upgrade
    If anyone has a simpler, better, or more elegant way, then I want to know about it.
    Last edited by SummerArk; 4th Jun 2026 at 00:11. Reason: Misordered my original lines again
    Quote Quote  
  11. Originally Posted by SummerArk View Post
    Everyone,

    I just noticed that unshackle version 5.1.0 has just been released.

    This is what I approximately did to upgrade. I ran each line, one line at a time.

    If anyone has a simpler, better, or more elegant way, then I want to know about it.
    Surely, if you installed unshackle originally by cloning the repo with git clone, etc. All you now need do is
    Code:
    git pull
    uv lock
    uv sync
    And you are done. Is that not the case?
    Quote Quote  
  12. 2nd Army Bridgeburners. WhiskeyJack's Avatar
    Join Date
    Aug 2024
    Location
    Torshavn
    Search PM
    Originally Posted by SummerArk View Post
    Everyone,

    I just noticed that unshackle version 5.1.0 has just been released.
    https://github.com/unshackle-dl/unshackle/releases/tag/5.1.0

    This is what I approximately did to upgrade. I ran each line, one line at a time.

    Code:
    uv self update
    
    uv lock --upgrade
    uv sync --upgrade
    
    git status
    git restore uv.lock  (IF NECESSARY)
    
    git fetch origin tag 5.1.0 --no-tags
    git merge 5.1.0
    git describe --tags --exact-match HEAD
    
    uv lock --upgrade
    uv sync --upgrade
    If anyone has a simpler, better, or more elegant way, then I want to know about it.
    if installed as a system wide tool using uv tool install
    running
    uv tool install git+https://github.com/unshackle-dl/unshackle.git

    will update easily for you

    if you wish to switch to the dev branch
    uv tool install git+https://github.com/unshackle-dl/unshackle.git@dev

    will pull frm the dev branch
    Quote Quote  
  13. I just type:

    git pull
    uv sync

    I will have to research uv lock. I think I will wait a bit before upgrading in the event others run into some kind of problem when they upgrade.
    Quote Quote  
  14. Member
    Join Date
    Nov 2024
    Location
    Planet Earth
    Search PM
    Originally Posted by phased View Post
    Surely, if you installed unshackle originally by cloning the repo with git clone, etc. All you now need do is
    Code:
    git pull
    uv lock
    uv sync
    And you are done. Is that not the case?
    Originally Posted by WhiskeyJack View Post
    if installed as a system wide tool using uv tool install
    running
    will update easily for you

    if you wish to switch to the dev branch
    will pull frm the dev branch
    Originally Posted by Tom Saurus View Post
    I just type:
    Code:
    git pull
    uv sync
    I will have to research uv lock. I think I will wait a bit before upgrading in the event others run into some kind of problem when they upgrade.
    Thanks Everyone.
    Quote Quote  
  15. On my older computer I upgraded to the new version. Things are not working with stuff like "could not find a 265 resource for this title" or "fr not found in audio tracks" coming up when one tries to download.

    Some advice is appreciated thank you in advance.
    Quote Quote  
  16. Member
    Join Date
    Dec 2022
    Location
    Lesotho
    Search Comp PM
    Originally Posted by Tom Saurus View Post
    On my older computer I upgraded to the new version. Things are not working with stuff like "could not find a 265 resource for this title" or "fr not found in audio tracks" coming up when one tries to download.

    Look in your unshackle.yaml for "fr" and comment out that line.
    Quote Quote  
  17. Originally Posted by SummerArk View Post
    Originally Posted by phased View Post
    Surely, if you installed unshackle originally by cloning the repo with git clone, etc. All you now need do is
    Code:
    git pull
    uv lock
    uv sync
    And you are done. Is that not the case?
    Originally Posted by WhiskeyJack View Post
    if installed as a system wide tool using uv tool install
    running
    will update easily for you

    if you wish to switch to the dev branch
    will pull frm the dev branch
    Originally Posted by Tom Saurus View Post
    I just type:
    Code:
    git pull
    uv sync
    I will have to research uv lock. I think I will wait a bit before upgrading in the event others run into some kind of problem when they upgrade.
    Thanks Everyone.
    If you're like me and you make changes to your local files (and forget about them )
    run
    Code:
    git stash
    before everything else
    Quote Quote  



Similar Threads

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