VideoHelp Forum


Try StreamFab Downloader and download from Netflix, Amazon, Youtube! Or Try DVDFab and copy Blu-rays! or rip iTunes movies!


Try StreamFab Downloader and download streaming video from Youtube, Netflix, Amazon! Download free trial.


+ Reply to Thread
Page 6 of 6
FirstFirst ... 4 5 6
Results 151 to 164 of 164
Thread
  1. Originally Posted by EatB4Bath View Post
    But in my case (in the real world), it returns only [<Response [403]>]
    Code:
    print(response.text)
    Quote Quote  
  2. I have this error I'm trying to iron out from the script

    v 4.4
    #
    # A_n_g_e_l_a 26:07:2023
    #
    '''
    This program is a generic boltdns.net downloader.


    'rm' is not recognized as an internal or external command,
    operable program or batch file.
    Invalid parameter(s)
    RESET { SESSION }

    Im also looking at changing the download directory from output to downloads in one directory higher than the WKS-Keys dir ive tried \downloads puts it in the rout of my hard disk im on Windows if that makes much difference

    Thanks for looking and a great tutorial
    Quote Quote  
  3. Member
    Join Date
    Feb 2022
    Location
    Search the forum first!
    Search PM
    Originally Posted by PSXman_uk View Post
    '''
    This program is a generic boltdns.net downloader.


    'rm' is not recognized as an internal or external command,
    operable program or batch file.
    Invalid parameter(s)
    I wrote those scripts in the hope that people might use them as a starting point on a journey to learn to code. It now seems I was very naive. No matter.

    The line in question has a linux command which fails on Windows. I didn't realise that when the script was written and these days would write the code such that it works on both window and linux.

    To answer your question 'rm' stands for remove and calling it in linux deletes files. The Windows command if I recall is 'del' so hopefully a substitution of del for rm will correct your issue. Secondly reset doesn't exist in Windows, it appears, so just delete that line - it only blanks and refreshes the terminal window. These are the last three lines of code:-
    Code:
        os.system("rm -f ./output/*.m4a  ./output/*.srt ./output/*.mp4 ./output/*.ts") 
    os.system("reset") # N_m3u8DL-RE sometimes leaves terminal unable to print text
    exit(0)
    I've updated the file for you https://files.videohelp.com/u/301890/boltgeneric.py
    Last edited by A_n_g_e_l_a; 22nd Feb 2024 at 05:54.
    Noob Starter Pack. Just download everything DRM.
    https://files.videohelp.com/u/301890/hellyes2.zip
    Quote Quote  
  4. Thank you i am trying to learn but am finding it a bit hard seeing as the last time i coded was on an Amiga and at my age you lose a few grey cells thank you very much for looking at it for me I appreciate it.
    Quote Quote  
  5. Member
    Join Date
    Feb 2022
    Location
    Search the forum first!
    Search PM
    Originally Posted by PSXman_uk View Post
    Thank you i am trying to learn but am finding it a bit hard seeing as the last time i coded was on an Amiga and at my age you lose a few grey cells thank you very much for looking at it for me I appreciate it.
    You give up too easily! I'm late 70's and first coded in BASIC on a BBC Micro. I started python two years ago. The brain is like a gymnasium; the more you exercise in it the better it is for you.
    Noob Starter Pack. Just download everything DRM.
    https://files.videohelp.com/u/301890/hellyes2.zip
    Quote Quote  
  6. @A_n_g_e_l_a food for thought I'll take that on board and carry on thanks again
    Quote Quote  
  7. Search, Learn, Download! Karoolus's Avatar
    Join Date
    Oct 2022
    Location
    Belgium
    Search Comp PM
    Originally Posted by PSXman_uk View Post
    Thank you i am trying to learn but am finding it a bit hard seeing as the last time i coded was on an Amiga and at my age you lose a few grey cells thank you very much for looking at it for me I appreciate it.
    You could always run the script from inside WSL
    Quote Quote  
  8. The script still work? I'm getting this error after paste curcl as posix

    Traceback (most recent call last):
    File "D:\vdocypher\angel.py", line 369, in <module>
    key_results = get_key(pssh, lic_url)
    ^^^^^^^^^^^^^^^^^^^^^^
    File "D:\vdocypher\angel.py", line 188, in get_key
    raise e
    File "D:\vdocypher\angel.py", line 186, in get_key
    license_response.raise_for_status()
    File "C:\Python312\Lib\site-packages\httpx\_models.py", line 761, in raise_for_status
    raise HTTPStatusError(message, request=request, response=self)
    httpx.HTTPStatusError: Client error '400 Bad Request' for url 'https://license.vdocipher.com/auth'
    For more information check: https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/400
    Quote Quote  
  9. Member
    Join Date
    Feb 2022
    Location
    Search the forum first!
    Search PM
    Originally Posted by Ademir View Post
    The script still work? I'm getting this error after paste curcl as posix

    Traceback (most recent call last):
    File "D:\vdocypher\angel.py", line 369, in <module>
    key_results = get_key(pssh, lic_url)
    ^^^^^^^^^^^^^^^^^^^^^^
    File "D:\vdocypher\angel.py", line 188, in get_key
    raise e
    File "D:\vdocypher\angel.py", line 186, in get_key
    license_response.raise_for_status()
    File "C:\Python312\Lib\site-packages\httpx\_models.py", line 761, in raise_for_status
    raise HTTPStatusError(message, request=request, response=self)
    httpx.HTTPStatusError: Client error '400 Bad Request' for url 'https://license.vdocipher.com/auth'
    For more information check: https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/400
    Yes it does but recent changes to Chrome Browser means it only works for Firefox Browser. And if you keep attempting vdocipher, without getting a 200 OK response, you will get your CDM revoked.
    Noob Starter Pack. Just download everything DRM.
    https://files.videohelp.com/u/301890/hellyes2.zip
    Quote Quote  
  10. Originally Posted by A_n_g_e_l_a View Post
    Originally Posted by Ademir View Post
    The script still work? I'm getting this error after paste curcl as posix

    Traceback (most recent call last):
    File "D:\vdocypher\angel.py", line 369, in <module>
    key_results = get_key(pssh, lic_url)
    ^^^^^^^^^^^^^^^^^^^^^^
    File "D:\vdocypher\angel.py", line 188, in get_key
    raise e
    File "D:\vdocypher\angel.py", line 186, in get_key
    license_response.raise_for_status()
    File "C:\Python312\Lib\site-packages\httpx\_models.py", line 761, in raise_for_status
    raise HTTPStatusError(message, request=request, response=self)
    httpx.HTTPStatusError: Client error '400 Bad Request' for url 'https://license.vdocipher.com/auth'
    For more information check: https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/400
    Yes it does but recent changes to Chrome Browser means it only works for Firefox Browser. And if you keep attempting vdocipher, without getting a 200 OK response, you will get your CDM revoked.
    That's a problem cause i am actually using firefox
    Quote Quote  
  11. Member
    Join Date
    Feb 2022
    Location
    Search the forum first!
    Search PM
    You've checked with an easy site to make sure everything is installed ok?
    Noob Starter Pack. Just download everything DRM.
    https://files.videohelp.com/u/301890/hellyes2.zip
    Quote Quote  
  12. Originally Posted by A_n_g_e_l_a View Post
    You've checked with an easy site to make sure everything is installed ok?
    Yes, I tried with some easy sites and work perfectly. Maybe the script need to change some detail and I have no idea which
    Image Attached Thumbnails Click image for larger version

Name:	s.jpg
Views:	22
Size:	233.9 KB
ID:	80381  

    Quote Quote  
  13. Hello guys, just a question- I have downloaded some .mp4 video files from the Microsoft Store. Is it possible to remove the DRM from those .mp4 files from Microsoft Store? These files can only be played on the "Movies & TV" app in Windows. So is there any chance to remove DRM, or is there nothing that can be done with these specific files?
    Last edited by JustSomeMotion; 5th Jul 2024 at 07:32.
    Quote Quote  



Similar Threads

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