VideoHelp Forum




+ Reply to Thread
Page 56 of 57
FirstFirst ... 6 46 54 55 56 57 LastLast
Results 1,651 to 1,680 of 1685
  1. Is there a guide to getting a proxy to work in Devine as TUBI is rejecting my Windscribe VPN more and more?
    Quote Quote  
  2. Originally Posted by cedric8528 View Post
    Thank you for this information.
    Quote Quote  
  3. Hi there peoples, I've been trying to figure out the command to download certain series off iP as people know the file naming for some stuff is weird, certain series I can get the whole series with the command
    Code:
    devine dl -w S01 iP
    but for something like the below that command doesn't work
    Code:
    https://www.bbc.co.uk/iplayer/episodes/b008ncn6/red-dwarf?seriesId=b008ncn6-structural-2-p00b8lp2
    I've also tried
    Code:
    devine dl -w S02E01-S02E06 Ip https://www.bbc.co.uk/iplayer/episodes/b008ncn6/red-dwarf?seriesId=b008ncn6-structural-2-p00b8lp2
    then I just normally just make a list of episodes in that series and use the command
    Code:
    devine dl iP https://www.bbc.co.uk/iplayer/episode/p00bp2g9/red-dwarf-ii-1-kryten
    Is there a command to download the whole series with one working command please? Thanks guys I appreciate the knowledge and help.
    Last edited by kev043; 8th Jun 2025 at 10:46.
    Quote Quote  
  4. https://www.bbc.co.uk/iplayer/episodes/b008ncn6/red-dwarf

    Try that as the link part, the rest is fine.

    It only works though when ip is named correctly though. You may find S01 will also bring in specials as they often list those as S01.

    You can use --list-titles to check how the structure looks
    Last edited by F1sav28; 8th Jun 2025 at 10:53.
    Quote Quote  
  5. Originally Posted by F1sav28 View Post
    https://www.bbc.co.uk/iplayer/episodes/b008ncn6/red-dwarf

    Try that as the link part, the rest is fine.

    It only works though when ip is named correctly though. You may find S01 will also bring in specials as they often list those as S01.

    You can use --list-titles to check how the structure looks
    Thanks for the info F1sav28

    I tried both of these commands and they didn't download

    Code:
    devine dl -w S02 iP https://www.bbc.co.uk/iplayer/episodes/b008ncn6/red-dwarf
    Code:
    devine dl -w S02E01-S02E06 Ip https://www.bbc.co.uk/iplayer/episodes/b008ncn6/red-dwarf
    Quote Quote  
  6. Originally Posted by F1sav28 View Post
    https://www.bbc.co.uk/iplayer/episodes/b008ncn6/red-dwarf

    Try that as the link part, the rest is fine.

    It only works though when ip is named correctly though. You may find S01 will also bring in specials as they often list those as S01.

    You can use --list-titles to check how the structure looks
    Ah yes, when I list the titles using
    Code:
    devine dl --list  iP b008ncn6
    I can see all the files for all the series start with S01
    Quote Quote  
  7. Tubi is partially broken. Seasons 1,2,and 5 work fine. 3,6,7 give the following error.
    Here is the command line:
    Code:
    devine dl -w s03 tubi https://tubitv.com/series/300016049/macgyver
    Last edited by this-is-me; 11th Jun 2025 at 16:20.
    Quote Quote  
  8. Member
    Join Date
    Dec 2021
    Location
    england
    Search Comp PM
    Originally Posted by this-is-me View Post
    Tubi is partially broken. Seasons 1,2,and 5 work fine. 3,6,7 give the following error.
    Image
    [Attachment 87337 - Click to enlarge]

    Here is the command line:
    Code:
    devine dl -w s03 tubi https://tubitv.com/series/300016049/macgyver
    work on my machine...
    Image
    [Attachment 87338 - Click to enlarge]
    Quote Quote  
  9. Originally Posted by iamghost View Post
    Originally Posted by this-is-me View Post
    Tubi is partially broken. Seasons 1,2,and 5 work fine. 3,6,7 give the following error.
    Image
    [Attachment 87337 - Click to enlarge]

    Here is the command line:
    Code:
    devine dl -w s03 tubi https://tubitv.com/series/300016049/macgyver
    work on my machine...
    Image
    [Attachment 87338 - Click to enlarge]
    Thanks for testing. I can see a difference on yours vs mine. Mine says Loaded 0 Vaults. Yours says Loaded 1 vaults. Would you have any idea what that could mean? I tried a different wvd just in case, and the same error occurs. I also have tried on two computers located on two different connections, and the same error. Would you be able to share your devine yaml?
    Quote Quote  
  10. Is there any way of handling URLs that have letters with accents in them?


    For example this one from RTE:

    https://www.rte.ie/player/series/aistear-an-amhráin/10001572-00-0000?epguid=IH10001571-23-0001



    I've tried the usual convention of using UTF-8 % characters to replace the á :

    https://www.rte.ie/player/series/aistear-an-amhr%C3%A1in/10001572-00-0000?epguid=IH10001571-23-0001



    but it's still throwing an error.

    I've also tried using the likes of Tinyurl to create a URL with no accents in but that didn't work either. This is the error output I am getting:



    ┌───────────────────── Traceback (most recent call last) ──────────────────────┐
    │ c:\temp\Devine\services\RTE\__init__.py:104 in get_titles │
    │ │
    │ 101 │ │ │ r"/(?P<id>[a-zA-Z0-9_\-=?]+)/?$" │
    │ 102 │ │ ) │
    │ 103 │ │ try: │
    │ > 104 │ │ │ kind, _, title_id = (re.match(title_re, self.title).group( │
    │ 105 │ │ except Exception: │
    │ 106 │ │ │ raise ValueError("- Could not parse ID from input") │
    │ 107 │
    │ │
    │ c:\temp\Devine\services\RTE\__init__.py:104 in <genexpr> │
    │ │
    │ 101 │ │ │ r"/(?P<id>[a-zA-Z0-9_\-=?]+)/?$" │
    │ 102 │ │ ) │
    │ 103 │ │ try: │
    │ > 104 │ │ │ kind, _, title_id = (re.match(title_re, self.title).group( │
    │ 105 │ │ except Exception: │
    │ 106 │ │ │ raise ValueError("- Could not parse ID from input") │
    │ 107 │
    └───────────────────────────────────────────────── ─────────────────────────────┘
    AttributeError: 'NoneType' object has no attribute 'group'

    During handling of the above exception, another exception occurred:

    ┌───────────────────── Traceback (most recent call last) ──────────────────────┐
    │ in _run_module_as_main:198 │
    │ in _run_code:88 │
    │ │
    │ in <module>:7 │
    │ │
    │ C:\Users\ag345\AppData\Local\Programs\Python\Pytho n312\Lib\site-packages\cli │
    │ ck\core.py:1157 in __call__ │
    │ │
    │ C:\Users\ag345\AppData\Local\Programs\Python\Pytho n312\Lib\site-packages\cli │
    │ ck\core.py:1078 in main │
    │ │
    │ C:\Users\ag345\AppData\Local\Programs\Python\Pytho n312\Lib\site-packages\cli │
    │ ck\core.py:1688 in invoke │
    │ │
    │ C:\Users\ag345\AppData\Local\Programs\Python\Pytho n312\Lib\site-packages\cli │
    │ ck\core.py:1688 in invoke │
    │ │
    │ C:\Users\ag345\AppData\Local\Programs\Python\Pytho n312\Lib\site-packages\cli │
    │ ck\core.py:1657 in _process_result │
    │ │
    │ C:\Users\ag345\AppData\Local\Programs\Python\Pytho n312\Lib\site-packages\cli │
    │ ck\core.py:783 in invoke │
    │ │
    │ C:\Users\ag345\AppData\Local\Programs\Python\Pytho n312\Lib\site-packages\dev │
    │ ine\commands\dl.py:301 in result │
    │ │
    │ 298 │ │ │ │ self.log.info("Authenticated with Service") │
    │ 299 │ │ │
    │ 300 │ │ with console.status("Fetching Title Metadata...", spinner="dot │
    │ > 301 │ │ │ titles = service.get_titles() │
    │ 302 │ │ │ if not titles: │
    │ 303 │ │ │ │ self.log.error("No titles returned, nothing to downloa │
    │ 304 │ │ │ │ sys.exit(1) │
    │ │
    │ c:\temp\Devine\services\RTE\__init__.py:106 in get_titles │
    │ │
    │ 103 │ │ try: │
    │ 104 │ │ │ kind, _, title_id = (re.match(title_re, self.title).group( │
    │ 105 │ │ except Exception: │
    │ > 106 │ │ │ raise ValueError("- Could not parse ID from input") │
    │ 107 │ │ │
    │ 108 │ │ episode = title_id.split("=")[1] if "epguid" in title_id else │
    │ 109 │
    └───────────────────────────────────────────────── ─────────────────────────────┘
    ValueError: - Could not parse ID from input



    I've also tried editing the __init__.py file in the RTE services folder to try and allow the á character but that didn't seem to work either.

    Is there a way of just using the epguid to download the programme?



    Any help appreciated!


    Cheers
    Quote Quote  
  11. Originally Posted by this-is-me View Post
    Originally Posted by iamghost View Post
    Originally Posted by this-is-me View Post
    Tubi is partially broken. Seasons 1,2,and 5 work fine. 3,6,7 give the following error.
    Image
    [Attachment 87337 - Click to enlarge]

    Here is the command line:
    Code:
    devine dl -w s03 tubi https://tubitv.com/series/300016049/macgyver
    work on my machine...
    Image
    [Attachment 87338 - Click to enlarge]
    Thanks for testing. I can see a difference on yours vs mine. Mine says Loaded 0 Vaults. Yours says Loaded 1 vaults. Would you have any idea what that could mean? I tried a different wvd just in case, and the same error occurs. I also have tried on two computers located on two different connections, and the same error. Would you be able to share your devine yaml?
    I'm sorry everyone, but I think I've tried everything. I re-downloaded all the services, deleted the existing ones and replaced them. I tried a different wvd. I uninstalled and reinstalled devine using pip. I downloaded all the specific versions of the dependencies listed on https://cdm-project.com/stabbedbybrick/devine-services/src/branch/main and replaced the ones I had. I tried on two connections and three different computers. I even installed Python 3.9 like iamghost, on a fresh Windows 11, and set everything up from scratch. I still get the same error. Clearly it can work for iamghost, but something's messing mine up. Any ideas?
    Quote Quote  
  12. Member
    Join Date
    Dec 2024
    Location
    United States
    Search PM
    Originally Posted by this-is-me View Post
    Tubi is partially broken. Seasons 1,2,and 5 work fine. 3,6,7 give the following error.
    Image
    [Attachment 87337 - Click to enlarge]

    Here is the command line:
    Code:
    devine dl -w s03 tubi https://tubitv.com/series/300016049/macgyver
    okay, so im not the only one having a similar error like this when ripping stuff, thank god because im honestly getting real irritated bc idk wtf im doing wrong, it was working fine before all my stuff got wiped in march and now im getting these errors and nobody dont even know the reason why im sure i did almost everything right bc theres no way how nobody hasnt said anything about the "nonetype: object is not iterable" error but me
    Quote Quote  
  13. Originally Posted by gazza35 View Post
    Is there any way of handling URLs that have letters with accents in them?

    I've also tried editing the __init__.py file in the RTE services folder to try and allow the á character but that didn't seem to work either.
    Adding the accented character to the regex at around line 100-101 should work.

    Code:
    def get_titles(self) -> Titles_T:
            title_re = (
                r"https://www\.rte\.ie/player"
                r"/(?P<type>series|movie)"
                r"/(?P<slug>[a-zéáA-Z0-9_-]+)"
                r"/(?P<id>[a-zéáA-Z0-9_\-=?]+)/?$"
            )
    Quote Quote  
  14. Originally Posted by kev043 View Post
    Originally Posted by F1sav28 View Post
    https://www.bbc.co.uk/iplayer/episodes/b008ncn6/red-dwarf

    Try that as the link part, the rest is fine.

    It only works though when ip is named correctly though. You may find S01 will also bring in specials as they often list those as S01.

    You can use --list-titles to check how the structure looks
    Ah yes, when I list the titles using
    Code:
    devine dl --list  iP b008ncn6
    I can see all the files for all the series start with S01
    Just for future reference and just in case you didn't know, i did actually mean the command "--list-titles" as that would have summarised the structure much clearer than "--list" if that's what you used. Using "--list" will give you ALL the tracks for every episode, whilst "--list-titles" will return how the episodes themselves are structured.

    Code:
    devine dl --list-titles ip https://www.bbc.co.uk/iplayer/episodes/b008ncn6/red-dwarf
    Image
    [Attachment 87342 - Click to enlarge]
    Quote Quote  
  15. Originally Posted by gazza35 View Post
    Is there any way of handling URLs that have letters with accents in them?
    Cheers
    Whenever I see video-titles with accents, sites deal with it by leaving them out of the url as - https://www.rte.ie/player/series/aistear-an-amhrain/10001572-00-0000?epguid=IH10001571-23-0001

    Devine does appear to parse this. It did complain - There's no ['en'] Video Track - which may mean the 'url' returned a 404 or it might mean the video track is in gaelic?
    Quote Quote  
  16. Originally Posted by kev043 View Post
    I can see all the files for all the series start with S01
    Originally Posted by F1sav28 View Post
    Series numbers given by the BBC for Red Dwarf are actually Roman Numerals. Vinefeeder output below; it does manage to identify episodes in series number but cannot display them by a single series number - much like devine, but with Vinefeeder you can see which series videos are in and easily pick which videos you need.
    Image
    [Attachment 87343 - Click to enlarge]
    Last edited by phased; 9th Jun 2025 at 05:12.
    Quote Quote  
  17. Originally Posted by achilles View Post
    Originally Posted by gazza35 View Post
    Is there any way of handling URLs that have letters with accents in them?

    I've also tried editing the __init__.py file in the RTE services folder to try and allow the á character but that didn't seem to work either.
    Adding the accented character to the regex at around line 100-101 should work.

    Code:
    def get_titles(self) -> Titles_T:
            title_re = (
                r"https://www\.rte\.ie/player"
                r"/(?P<type>series|movie)"
                r"/(?P<slug>[a-zéáA-Z0-9_-]+)"
                r"/(?P<id>[a-zéáA-Z0-9_\-=?]+)/?$"
            )



    I was putting the accents in the wrong place (I had them at the end), I've just put them as you've shown and it now reads the URL so many thanks.

    I'm now getting an error saying "There's no ['en'] Video Track..."

    This particular programme is in Gaelic with English subtitles. Is there any way to override this check for an English video track?
    Quote Quote  
  18. Originally Posted by phased View Post
    Originally Posted by gazza35 View Post
    Is there any way of handling URLs that have letters with accents in them?
    Cheers
    Whenever I see video-titles with accents, sites deal with it by leaving them out of the url as - https://www.rte.ie/player/series/aistear-an-amhrain/10001572-00-0000?epguid=IH10001571-23-0001

    Devine does appear to parse this. It did complain - There's no ['en'] Video Track - which may mean the 'url' returned a 404 or it might mean the video track is in gaelic?



    Many thanks, that does indeed work but as you correctly state, it throws an error about the video track

    This particular programme is in Gaelic with English subtitles. Is there any way to override this check for an English video track?
    Quote Quote  
  19. 2nd Army Bridgeburners. WhiskeyJack's Avatar
    Join Date
    Aug 2024
    Location
    Torshavn
    Search PM
    Code:
     -l, --lang LANG_RANGE           Language wanted for Video and Audio.
    try
    Code:
     --lang ga

    Code:
     devine dl --lang ga RTE "https://www.rte.ie/player/series/aistear-an-amhrain/10001572-00-0000?epguid=IH10001571-23-0001"
    Code:
    General
    Unique ID                                : 26585630679363557901093685545354652009 (0x140034CAF000835B7C885AC57B87E969)
    Complete name                            : Aistear.An.Amhrain.S01E01.Come.Out.Ye.Black.and.Tan.1080p.RTE.WEB-DL.AAC2.0.H.264-WhiskeyJack.mkv
    Format                                   : Matroska
    Format version                           : Version 4
    File size                                : 1.03 GiB
    Duration                                 : 24 min 12 s
    Overall bit rate                         : 6 093 kb/s
    Frame rate                               : 25.000 FPS
    Movie name                               : Aistear An Amhráin S01E01 Come Out Ye Black and Tan
    Writing application                      : mkvmerge v91.0 ('Signs') 64-bit
    Writing library                          : libebml v1.4.5 + libmatroska v1.7.1
    
    Video
    ID                                       : 1
    Format                                   : AVC
    Format/Info                              : Advanced Video Codec
    Format profile                           : High@L4
    Format settings                          : CABAC / 4 Ref Frames
    Format settings, CABAC                   : Yes
    Format settings, Reference frames        : 4 frames
    Format settings, GOP                     : M=3, N=50
    Codec ID                                 : V_MPEG4/ISO/AVC
    Duration                                 : 24 min 12 s
    Bit rate                                 : 5 962 kb/s
    Width                                    : 1 920 pixels
    Height                                   : 1 080 pixels
    Display aspect ratio                     : 16:9
    Frame rate mode                          : Constant
    Frame rate                               : 25.000 FPS
    Color space                              : YUV
    Chroma subsampling                       : 4:2:0 (Type 2)
    Bit depth                                : 8 bits
    Scan type                                : Progressive
    Bits/(Pixel*Frame)                       : 0.115
    Stream size                              : 1.01 GiB (98%)
    Language                                 : Irish
    Default                                  : Yes
    Forced                                   : No
    Color range                              : Limited
    Color primaries                          : BT.709
    Transfer characteristics                 : BT.709
    Matrix coefficients                      : BT.709
    
    Audio
    ID                                       : 2
    Format                                   : AAC LC
    Format/Info                              : Advanced Audio Codec Low Complexity
    Codec ID                                 : A_AAC-2
    Duration                                 : 24 min 12 s
    Bit rate                                 : 128 kb/s
    Channel(s)                               : 2 channels
    Channel layout                           : L R
    Sampling rate                            : 48.0 kHz
    Frame rate                               : 46.875 FPS (1024 SPF)
    Compression mode                         : Lossy
    Stream size                              : 22.2 MiB (2%)
    Language                                 : Irish
    Default                                  : Yes
    Forced                                   : No
    
    Text #1
    ID                                       : 3
    Format                                   : UTF-8
    Codec ID                                 : S_TEXT/UTF8
    Codec ID/Info                            : UTF-8 Plain Text
    Duration                                 : 24 min 2 s
    Bit rate                                 : 41 b/s
    Frame rate                               : 0.120 FPS
    Count of elements                        : 173
    Stream size                              : 7.29 KiB (0%)
    Language                                 : Irish
    Default                                  : No
    Forced                                   : No
    
    Text #2
    ID                                       : 4
    Format                                   : UTF-8
    Codec ID                                 : S_TEXT/UTF8
    Codec ID/Info                            : UTF-8 Plain Text
    Duration                                 : 24 min 2 s
    Bit rate                                 : 41 b/s
    Frame rate                               : 0.120 FPS
    Count of elements                        : 173
    Stream size                              : 7.29 KiB (0%)
    Language                                 : Irish
    Default                                  : No
    Forced                                   : No
    
    Text #3
    ID                                       : 5
    Format                                   : UTF-8
    Codec ID                                 : S_TEXT/UTF8
    Codec ID/Info                            : UTF-8 Plain Text
    Duration                                 : 24 min 2 s
    Bit rate                                 : 101 b/s
    Frame rate                               : 0.274 FPS
    Count of elements                        : 395
    Stream size                              : 17.9 KiB (0%)
    Language                                 : English
    Default                                  : No
    Forced                                   : No
    
    Menu
    00:00:00.000                             : en:Chapter 01
    00:12:49.000                             : en:Chapter 02
    Last edited by WhiskeyJack; 9th Jun 2025 at 14:07.
    Quote Quote  
  20. Originally Posted by WhiskeyJack View Post
    Code:
     -l, --lang LANG_RANGE           Language wanted for Video and Audio.
    try
    Code:
     --lang ga

    Code:
     devine dl --lang ga RTE "https://www.rte.ie/player/series/aistear-an-amhrain/10001572-00-0000?epguid=IH10001571-23-0001"


    Many thanks. It worked a treat
    Quote Quote  
  21. Originally Posted by this-is-me View Post
    Originally Posted by this-is-me View Post
    Originally Posted by iamghost View Post
    Originally Posted by this-is-me View Post
    Tubi is partially broken. Seasons 1,2,and 5 work fine. 3,6,7 give the following error.
    Image
    [Attachment 87337 - Click to enlarge]

    Here is the command line:
    Code:
    devine dl -w s03 tubi https://tubitv.com/series/300016049/macgyver
    work on my machine...
    Image
    [Attachment 87338 - Click to enlarge]
    Thanks for testing. I can see a difference on yours vs mine. Mine says Loaded 0 Vaults. Yours says Loaded 1 vaults. Would you have any idea what that could mean? I tried a different wvd just in case, and the same error occurs. I also have tried on two computers located on two different connections, and the same error. Would you be able to share your devine yaml?
    I'm sorry everyone, but I think I've tried everything. I re-downloaded all the services, deleted the existing ones and replaced them. I tried a different wvd. I uninstalled and reinstalled devine using pip. I downloaded all the specific versions of the dependencies listed on https://cdm-project.com/stabbedbybrick/devine-services/src/branch/main and replaced the ones I had. I tried on two connections and three different computers. I even installed Python 3.9 like iamghost, on a fresh Windows 11, and set everything up from scratch. I still get the same error. Clearly it can work for iamghost, but something's messing mine up. Any ideas?
    In desperation, I set everything up again, with a fresh Python, fresh Windows on yet a different internet connection, downloaded everything altogether as described by https://cdm-project.com/stabbedbybrick/devine-services/src/branch/main and I get THE SAME ERROR. It's not me. This makes 4 computers and 3 internet services I have tried on. This is actually broken. I would tag @stabbedbybrick if I knew how.
    Quote Quote  
  22. Originally Posted by this-is-me View Post
    Originally Posted by this-is-me View Post
    Originally Posted by this-is-me View Post
    Originally Posted by iamghost View Post
    Originally Posted by this-is-me View Post
    Tubi is partially broken. Seasons 1,2,and 5 work fine. 3,6,7 give the following error.
    Image
    [Attachment 87337 - Click to enlarge]

    Here is the command line:
    Code:
    devine dl -w s03 tubi https://tubitv.com/series/300016049/macgyver
    work on my machine...
    Image
    [Attachment 87338 - Click to enlarge]
    Thanks for testing. I can see a difference on yours vs mine. Mine says Loaded 0 Vaults. Yours says Loaded 1 vaults. Would you have any idea what that could mean? I tried a different wvd just in case, and the same error occurs. I also have tried on two computers located on two different connections, and the same error. Would you be able to share your devine yaml?
    I'm sorry everyone, but I think I've tried everything. I re-downloaded all the services, deleted the existing ones and replaced them. I tried a different wvd. I uninstalled and reinstalled devine using pip. I downloaded all the specific versions of the dependencies listed on https://cdm-project.com/stabbedbybrick/devine-services/src/branch/main and replaced the ones I had. I tried on two connections and three different computers. I even installed Python 3.9 like iamghost, on a fresh Windows 11, and set everything up from scratch. I still get the same error. Clearly it can work for iamghost, but something's messing mine up. Any ideas?
    In desperation, I set everything up again, with a fresh Python, fresh Windows on yet a different internet connection, downloaded everything altogether as described by https://cdm-project.com/stabbedbybrick/devine-services/src/branch/main and I get THE SAME ERROR. It's not me. This makes 4 computers and 3 internet services I have tried on. This is actually broken. I would tag @stabbedbybrick if I knew how.

    https://forum.videohelp.com/threads/414154-Devine-Modular-Movie-TV-and-Music-Archival-...39#post2759911
    Quote Quote  
  23. Originally Posted by monkeymagic View Post
    Originally Posted by this-is-me View Post
    Originally Posted by this-is-me View Post
    Originally Posted by this-is-me View Post
    Originally Posted by iamghost View Post
    Originally Posted by this-is-me View Post
    tubi is partially broken. Seasons 1,2,and 5 work fine. 3,6,7 give the following error.
    Image
    [Attachment 87337 - Click to enlarge]

    here is the command line:
    Code:
    devine dl -w s03 tubi https://tubitv.com/series/300016049/macgyver
    work on my machine...
    Image
    [Attachment 87338 - Click to enlarge]
    thanks for testing. I can see a difference on yours vs mine. Mine says loaded 0 vaults. Yours says loaded 1 vaults. Would you have any idea what that could mean? I tried a different wvd just in case, and the same error occurs. I also have tried on two computers located on two different connections, and the same error. Would you be able to share your devine yaml?
    i'm sorry everyone, but i think i've tried everything. I re-downloaded all the services, deleted the existing ones and replaced them. I tried a different wvd. I uninstalled and reinstalled devine using pip. I downloaded all the specific versions of the dependencies listed on https://cdm-project.com/stabbedbybrick/devine-services/src/branch/main and replaced the ones i had. I tried on two connections and three different computers. I even installed python 3.9 like iamghost, on a fresh windows 11, and set everything up from scratch. I still get the same error. Clearly it can work for iamghost, but something's messing mine up. Any ideas?
    in desperation, i set everything up again, with a fresh python, fresh windows on yet a different internet connection, downloaded everything altogether as described by https://cdm-project.com/stabbedbybrick/devine-services/src/branch/main and i get the same error. It's not me. this makes 4 computers and 3 internet services i have tried on. This is actually broken. I would tag @stabbedbybrick if i knew how.

    https://forum.videohelp.com/threads/414154-devine-modular-movie-tv-and-music-archival-...39#post2759911
    Yes! Thank You! This solved the issue entirely.
    Quote Quote  
  24. Member
    Join Date
    Dec 2024
    Location
    United States
    Search PM
    Image
    [Attachment 87345 - Click to enlarge]


    did a re-install with devine, python 3.12 and set up everything, looking back at some threads, and other threads, and i got this error. can somebody who's as much as an expert help me out with this?

    i also need someone help me out doing a complete re-install with everything so i can get devine to work properly.
    Quote Quote  
  25. BBC iPlayer, using stabbedbybrick's services. How do I specify the 25FPS 540p video for this file? If I use -q 540 it automatically opts for the 50fps video...?
    Click image for larger version

Name:	l5v7r1.png
Views:	113
Size:	40.9 KB
ID:	87351
    Quote Quote  
  26. Originally Posted by Hessian View Post
    BBC iPlayer, using stabbedbybrick's services. How do I specify the 25FPS 540p video for this file? If I use -q 540 it automatically opts for the 50fps video...?
    Image
    [Attachment 87351 - Click to enlarge]
    You need to specify the bitrate of the 25fps stream with -vb 1604. The quality switch (-q) isn't needed in this case.
    Quote Quote  
  27. Callum
    Join Date
    Jun 2025
    Location
    United Kingdom
    Search Comp PM
    Hello, I've been using Devine for a bit and I noticed that coloured/positioned subtitles don't get downloaded correctly from Channel 4 and iPlayer?
    Is there some config I need to change or is it just like this?

    Image
    [Attachment 87361 - Click to enlarge]

    Image
    [Attachment 87362 - Click to enlarge]
    Quote Quote  
  28. 2nd Army Bridgeburners. WhiskeyJack's Avatar
    Join Date
    Aug 2024
    Location
    Torshavn
    Search PM
    Have a word with stabbedbybrick. It was mentioned before, and the respose was, most people don't like the colored subs.

    Personally, I prefer to keep subs as close to the original layout as possible. There is an issue with C4 subs and placement that removing all the coding was a fix, even though simply removing the /n entries
    No idea how to correct it with python, but bash awk with sed does the job in microseconds
    Code:
    subtitleedit /convert target.vtt subrip
    sed -i ':1; s/{[^}]*}// ; /{/ { /}/!N ; b1 }' target.srt
    Last edited by WhiskeyJack; 11th Jun 2025 at 06:48.
    Quote Quote  
  29. Hi there people, I've just been testing CBC and for me it's not downloading as it was before, I've refreshed my cookie and placed it in the DevineCookies as CBC text file, when I use this command [code]devine dl -w S22 CBC https://gem.cbc.ca/grand-designs/s22[code/] I just get this

    Image
    [Attachment 87363 - Click to enlarge]
    Last edited by kev043; 11th Jun 2025 at 07:06.
    Quote Quote  



Similar Threads

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