VideoHelp Forum
+ Reply to Thread
Page 28 of 28
FirstFirst ... 18 26 27 28
Results 811 to 829 of 829
Thread
  1. That is very common with Discovery+.

    Use --list to find out what languages the video is in (most likely Polish) then use -vl to download the correct language.
    Quote Quote  
  2. @cyberschlumpf:

    Just like @SaintyUK said, this is pretty common on DSCP. The problem is that once in a while, their streams will return incorrect language tags from the API/manifest. Even if the stream is in EN it'll sometimes be tagged as ESP or another language for whatever reason. And unless specified otherwise, Devine will look for EN by default. So in these cases, you'll need to "--list" the episode first to see what language it's tagged as and then specify those languages when downloading.

    It's a pain for sure, especially when getting an entire show or season, but there's not much I can about it unfortunately.
    Quote Quote  
  3. Thank you, you're right of course! I saw it indeed returned "ESP" although it was indeed EN. Used "-vl all" to just get what's there.
    Quote Quote  
  4. Member
    Join Date
    Dec 2023
    Location
    Spain
    Search Comp PM
    I'm getting the following error with a DSCP link, does anyone know of a likely cause?

    1 Video
    └── [H.264, SDR] | en | 1920x1080 @ 6666 kb/s, 25.000 FPS
    • 12:07 • Merging
    1 Audio
    └── [AAC] | en | 2.0
    • 01:28 • Merging
    1 Subtitle
    └── [VTT] | en
    • 00:01 • Merging

    ❌ Download Failed...
    An unexpected error occurred in one of the download workers.
    See the error trace above for more information.
    Quote Quote  
  5. any known issues with tubi?

    getting the following error regardless of the downloader.

    Code:
         1 Video
         └── [H.264, SDR] | en | 854x634 @ 1360 kb/s, 29.970 FPS
             ⠦ ---------------------------------------- • --:-- • FAILED
         1 Audio
         └── [AAC] | en | 2.0
             ⠦ ---------------------------------------- • --:-- • SKIPPED
         1 Subtitle
         └── [SRT] | en
             ⠦ ---------------------------------------- • --:-- • SKIPPED
    
    
         ❌ Download Failed...
            Invalid URL '823ess9o.mp4': No scheme supplied. Perhaps you meant
         https://823ess9o.mp4?
    disregard. i found an updated service that seems to work

    Originally Posted by mkjustuk View Post
    I'm getting the following error with a DSCP link, does anyone know of a likely cause?

    1 Video
    └── [H.264, SDR] | en | 1920x1080 @ 6666 kb/s, 25.000 FPS
    • 12:07 • Merging
    1 Audio
    └── [AAC] | en | 2.0
    • 01:28 • Merging
    1 Subtitle
    └── [VTT] | en
    • 00:01 • Merging

    ❌ Download Failed...
    An unexpected error occurred in one of the download workers.
    See the error trace above for more information.

    have a look at the previous page.
    https://forum.videohelp.com/threads/414154-Devine-Modular-Movie-TV-and-Music-Archival-...27#post2751101
    Last edited by grimeire; 23rd Sep 2024 at 14:35.
    Quote Quote  
  6. All right, for those that've been asking for it, I've added an experimental N_m3u8DL-RE branch to my Devine fork here:
    https://github.com/stabbedbybrick/devine/tree/n_m3u8dl_re

    Use at your own risk lol

    How to use it depends on your own setup/installation of Devine. Either way, Git should be used. So if you don't yet use that for some reason, now is the time to learn.
    Quote Quote  
  7. Legend!!!

    I know what I'm doing for the next hour or so!

    Quote Quote  
  8. Member
    Join Date
    Dec 2023
    Location
    Spain
    Search Comp PM
    I saw that, but all of my items are present and correct. All other services work fine and I download 3/4 times a week without an issue. It seems to be DSCP specific.
    Quote Quote  
  9. Member
    Join Date
    Dec 2022
    Location
    Lesotho
    Search Comp PM
    Originally Posted by stabbedbybrick View Post
    All right, for those that've been asking for it, I've added an experimental N_m3u8DL-RE branch to my Devine fork here:
    https://github.com/stabbedbybrick/devine/tree/n_m3u8dl_re
    Confirm we have to create a separate env for this?
    Quote Quote  
  10. Originally Posted by sipho View Post
    Originally Posted by stabbedbybrick View Post
    All right, for those that've been asking for it, I've added an experimental N_m3u8DL-RE branch to my Devine fork here:
    https://github.com/stabbedbybrick/devine/tree/n_m3u8dl_re
    Confirm we have to create a separate env for this?
    That is how I've gone about it. Force changed the code to use local directories to the venv - probably a far better way, but it'll do for now

    Image
    [Attachment 82444 - Click to enlarge]


    Final update for a while: @stabbedbybrick this seems superb as expected! Will keep testing and feedback!
    Last edited by SaintyUK; 24th Sep 2024 at 10:05.
    Quote Quote  
  11. WOW thanks @stabbedbybrick

    Is it too risky to install it on top of devine-dl/devine:master ? And if I didn't mind risking it, which git command should be used to merge the two?

    Code:
    pip install git+https://github.com/stabbedbybrick/devine.git@n_m3u8dl_re
    didn't work

    Thanks.
    Last edited by PunchDrunkL0ve; 24th Sep 2024 at 12:32.
    Quote Quote  
  12. Member
    Join Date
    Dec 2021
    Location
    england
    Search Comp PM
    Open cmd
    Git clone URL
    Quote Quote  
  13. Originally Posted by iamghost View Post
    Open cmd
    Git clone URL
    Thanks, but is it possible to install it on top of my current devine so I won't have to edit all the paths?
    Quote Quote  
  14. Originally Posted by sipho View Post
    Originally Posted by stabbedbybrick View Post
    All right, for those that've been asking for it, I've added an experimental N_m3u8DL-RE branch to my Devine fork here:
    https://github.com/stabbedbybrick/devine/tree/n_m3u8dl_re
    Confirm we have to create a separate env for this?
    That would be my recommendation, yes. The config file, if placed in the default location, will persist through any and all Devine environments you have. So all you'd have to do is to activate the proper venv before you run it. But it's also possible to add this fork as a new remote and pull only the n_m3u8dl_re branch into a new branch in your current Devine environment.

    Like I said earlier, how you do it depends on how you manage your environment. But since this is a "dev branch", an active upstream connection is required to pull eventual updates. So pip installation isn't possible in this case, and some working knowledge of Git is required.

    For those that don't know, here's a quick rundown of how to install Devine without using pip:
    1. Install Git and Poetry
    2. Clone the repository and install Devine in a localized environment:
      Code:
      git clone https://github.com/stabbedbybrick/devine.git
      cd devine
      poetry config virtualenvs.in-project true
      poetry install

    That's it. Now you'll have it installed and ready to go.
    Quote Quote  
  15. Is this a fork in the same way that yt-dlp is a fork of youtube-dl? youtube-dl is abandoned, and at this point, I'd say devine is almost abandoned too.

    Is the idea that this fork will continue to be developed with new features added to it? Because if so, I think it should have a different name so people don't get confused. I could see that both being called devine already causing some confusion as it is.
    Quote Quote  
  16. Originally Posted by achilles View Post
    Is this a fork in the same way that yt-dlp is a fork of youtube-dl? youtube-dl is abandoned, and at this point, I'd say devine is almost abandoned too.

    Is the idea that this fork will continue to be developed with new features added to it? Because if so, I think it should have a different name so people don't get confused. I could see that both being called devine already causing some confusion as it is.
    No, that's not my intention. It's just a straight up fork that's mostly a playground where I can test and share features. If one of these features turn out to be good, I'll probably make a pull request for it to be added to the main project. The beauty of open source code and Git/Github is that users can edit and cherry pick code for their own projects. Phoenix has been working on this since at least 2018 and it's only natural that activity dips here and there, so there's no reason to believe it's abandoned at this point.
    Quote Quote  
  17. Originally Posted by stabbedbybrick View Post

    For those that don't know, here's a quick rundown of how to install Devine without using pip:
    1. Install Git and Poetry
    2. Clone the repository and install Devine in a localized environment:
      Code:
      git clone https://github.com/stabbedbybrick/devine.git
      cd devine
      poetry config virtualenvs.in-project true
      poetry install

    That's it. Now you'll have it installed and ready to go.
    Thanks @stabbedbybrick, got it working and learnt something new along the way.

    Had to git checkout n_m3u8dl_re to pull the branch and then poetry run python3 devine worked as expected
    Quote Quote  
  18. Originally Posted by PunchDrunkL0ve View Post

    Had to git checkout n_m3u8dl_re to pull the branch and then poetry run python3 devine worked as expected
    Nice

    Don't be afraid to post bug reports. I can't catch all the potential errors by myself, so getting input from others is always helpful.
    Quote Quote  
  19. @stabbedbybrick

    I've played about with different settings and different services. All seems superb. Actually feels polished and refined, especially with the progress bar working 100% of the time!

    The ability to not use a proxy for N_m3u8DL-RE is a game changer again!
    In my opinion the 'use_proxy' setting for n_m3u8dl_re should default to false rather than true

    Thank you once again!

    Side interesting (maybe for some people) notes (not related to the fork):
    • Anyone found a solution to the subtitle files remaining in the temp directory upon completion? Could be to do with the setting under 'dl' of 'sub_format: srt'
    • Executing multiple instances of devine at the same time causes some undesirable results!
    Last edited by SaintyUK; 25th Sep 2024 at 07:27. Reason: Side notes
    Quote Quote  



Similar Threads

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