+ Reply to Thread
Results 91 to 120 of 600
-
Noob Starter Pack. Just download every Widevine mpd! Not kidding!.
https://files.videohelp.com/u/301890/hellyes6.zip -
-
https://files.videohelp.com/u/301890/C4.py Here is an update to get Channel 4 working. I have hung back on updating this as I was asked not to share code given to me.
This release uses my own capture of channel 4 credentials via httptoolkit and a rooted phone.
Instead of a full release of UK-FTA just replace the C4.py in UK-FTA/ukfta/c4_dl/ with this version.Noob Starter Pack. Just download every Widevine mpd! Not kidding!.
https://files.videohelp.com/u/301890/hellyes6.zip -
https://files.videohelp.com/u/301890/uk-fta_13.zip I've updated the release to v13.
Changes have been made to vadapav so it uses the configuration file to find its storage requirements. Vadapav.mov is a file reposository with film and TV media. Some media is 4k and a 2160 search will find it. It probably shouldn't be in an FTA list but I use use it and it is convenient to access here.
Channel 4 updated with my spoof data.
Channel 5 now updates its own HMAC secret and AES keys. It will update the first time my5 is called and once every three days, but only when my5 is used. It shouldn't need intervention. (I only use my5 rarely but I got fed up running my5 and having it fail with out of date keys.)
The menu has been adjusted to reflect changes getting my5 HMAC secret and AES key.
NOTE: It is important to replace the total existing UK-FTA folder as there have been structural changes. Run config from the menu to set up storage and the wvd location. (Maybe copy those from the current config before installation of the new version?)
Requirements.txt has been updated and reduced. The need for get_iplayer, as a helper program, has been added to the top level README.mdNoob Starter Pack. Just download every Widevine mpd! Not kidding!.
https://files.videohelp.com/u/301890/hellyes6.zip -
Red Dwarf - the whole lot at 1080p - is on BBC iPlayer. I tried downloading last evening and the filename leaves something to be desired. The filename has a series number and an episode title. There is no way to know which sequence to view the episodes in a series.
So I've provided an option to add an index number to the beginning of a filename. I'll update the uk-fta.zip at some point but here is getBBCLinks.py to replace the existing in ukfta/bbc_dl https://files.videohelp.com/u/301890/getBBCLinks.pyNoob Starter Pack. Just download every Widevine mpd! Not kidding!.
https://files.videohelp.com/u/301890/hellyes6.zip -
When installing the requirements i'm receiving this error "ERROR: Cannot install beaupy==3.6.1 and rich==13.7.1 because these package versions have conflicting dependencies." can anyone lend a hand please?
-
Noob Starter Pack. Just download every Widevine mpd! Not kidding!.
https://files.videohelp.com/u/301890/hellyes6.zip -
Thanks so much for getting back to me so quickly, i changed the requirements.txt to do the higher version of beaupy then when running python3 menu.py im ModuleNotFounderror: No module name "beaupy".
Really sorry to be a pain, any ideas? -
I managed to fix the issue myself sorry about that, rookie error
unfortunately i'm now getting this
"AttributeError: module 'time' has no attribute 'clock_gettime'"
Any ideas on how to resolve this please? -
No idea. What system are you using? 'time' is a basic python module.
edit. Did a search - why didn't you?
https://stackoverflow.com/questions/58569361/attributeerror-module-time-has-no-attribu...-in-python-3-8
Using python 3.8? then upgradeNoob Starter Pack. Just download every Widevine mpd! Not kidding!.
https://files.videohelp.com/u/301890/hellyes6.zip -
Hi, sorry, not sure what's gone wrong, I'm trying to run v13 of the script on Windows 11.
I've modified requirements.txt to:
beaupy==3.7.2
When running py .\menu.py I get:
Code:__ ____ __ _____________ / / / / //_/___/ __/_ __/ _ | / /_/ / ,< /___/ _/ / / / __ | \____/_/|_| /_/ /_/ /_/ |_| Choose Your Search, Selector and Downloader. Which Channel? Traceback (most recent call last): File "C:\UK-FTA\menu.py", line 32, in <module> time_stamp = int(time.clock_gettime(0)) AttributeError: module 'time' has no attribute 'clock_gettime'
python --version comes back with:
Python 3.10.11
I've also found:
https://bugs.python.org/issue36895
Which says:
The function time.clock() has been removed, after having been deprecated since Python 3.3: use time.perf_counter() or time.process_time() instead, depending on your requirements, to have well-defined behavior. (Contributed by Matthias Bussonnie) -
Might be worth giving this a shot: https://stackoverflow.com/a/62520082
Or just change any occurrence of that with:
Code:time.time
-
Noob Starter Pack. Just download every Widevine mpd! Not kidding!.
https://files.videohelp.com/u/301890/hellyes6.zip -
So the whole of line 32 in menu.py can look like this:-
Code:time_stamp = int(time.time())
But there is no point changing anything if the original code works on your system. Why it was deprecated in3.8, but still works in 3.12.2 for me, is one of those great Python Mysteries that I'll no doubt ponder while dribbling down my chin, half-asleep in a chair, in an old-folks home.
I'll update this release with corrected requirements and this change later.Noob Starter Pack. Just download every Widevine mpd! Not kidding!.
https://files.videohelp.com/u/301890/hellyes6.zip -
I've been keeping my python at the specified requirement level in the readme.md So we can go to 3.12.2?
(Windows based)
Also confirmed working with the above change, except for My5 which then throws the error:
module 'time' has no attribute 'clock_gettime' -
Noob Starter Pack. Just download every Widevine mpd! Not kidding!.
https://files.videohelp.com/u/301890/hellyes6.zip -
-
https://files.videohelp.com/u/301890/uk-fta_13.1.zip
very minor update with above corrections.Noob Starter Pack. Just download every Widevine mpd! Not kidding!.
https://files.videohelp.com/u/301890/hellyes6.zip -
Noob Starter Pack. Just download every Widevine mpd! Not kidding!.
https://files.videohelp.com/u/301890/hellyes6.zip -
I can confirm that the menu now works.
However BBC gives:
Code:Search word(s)? Red Dwarf [info] getting data for b008ncn6 Traceback (most recent call last): File "C:\UK-FTA\ukfta\bbc_dl\getBBCLinks.py", line 318, in <module> main(pid) File "C:\UK-FTA\ukfta\bbc_dl\getBBCLinks.py", line 193, in main allseries = populatetable(pid) File "C:\UK-FTA\ukfta\bbc_dl\getBBCLinks.py", line 103, in populatetable moreresults = subprocess.run(command, capture_output=True, \ File "C:\Users\Jake\AppData\Local\Programs\Python\Python310\lib\subprocess.py", line 503, in run with Popen(*popenargs, **kwargs) as process: File "C:\Users\Jake\AppData\Local\Programs\Python\Python310\lib\subprocess.py", line 971, in __init__ self._execute_child(args, executable, preexec_fn, close_fds, File "C:\Users\Jake\AppData\Local\Programs\Python\Python310\lib\subprocess.py", line 1456, in _execute_child hp, ht, pid, tid = _winapi.CreateProcess(executable, args, FileNotFoundError: [WinError 2] The system cannot find the file specified
-
Noob Starter Pack. Just download every Widevine mpd! Not kidding!.
https://files.videohelp.com/u/301890/hellyes6.zip -
Excuse me whilst I ./facepalm wasn't correctly in path. Very sorry..
No, wait, even with it in path:
Code:Search word(s)? Red Dwarf [info] getting data for b008ncn6 Traceback (most recent call last): File "C:\UK-FTA\ukfta\bbc_dl\getBBCLinks.py", line 318, in <module> main(pid) File "C:\UK-FTA\ukfta\bbc_dl\getBBCLinks.py", line 193, in main allseries = populatetable(pid) File "C:\UK-FTA\ukfta\bbc_dl\getBBCLinks.py", line 103, in populatetable moreresults = subprocess.run(command, capture_output=True, \ File "C:\Users\Jake\AppData\Local\Programs\Python\Python310\lib\subprocess.py", line 503, in run with Popen(*popenargs, **kwargs) as process: File "C:\Users\Jake\AppData\Local\Programs\Python\Python310\lib\subprocess.py", line 971, in __init__ self._execute_child(args, executable, preexec_fn, close_fds, File "C:\Users\Jake\AppData\Local\Programs\Python\Python310\lib\subprocess.py", line 1456, in _execute_child hp, ht, pid, tid = _winapi.CreateProcess(executable, args, FileNotFoundError: [WinError 2] The system cannot find the file specified PS C:\UK-FTA> get_iplayer get_iplayer 3.35.0-MSWin32-x64 Copyright (C) 2008-2010 Phil Lewis, 2010- get_iplayer contributors This program comes with ABSOLUTELY NO WARRANTY; for details use --warranty. This is free software, and you are welcome to redistribute it under certain conditions; use --conditions for details.
Last edited by Akirainblack; 6th Mar 2024 at 08:44.
-
Have you tried running get_iplayer? It has complex needs that should be satisfied on installation but just do a search and get it to download something on its own.
Code:get_iplayer --pid-recursive --pid b008ncn6
Noob Starter Pack. Just download every Widevine mpd! Not kidding!.
https://files.videohelp.com/u/301890/hellyes6.zip -
Ran your EXACT command and got:
Code:Red Dwarf: Special - The Promised Land, BBC Two, p0fq3s31 INFO: 72 total programmes WARNING: A UK TV licence is required to access BBC iPlayer TV content legally INFO: Processing tv: 'Red Dwarf: I - The End (b008nddx)' INFO: Downloading tv: 'Red Dwarf: I - 01. The End (b008nddx) [technical]' 46.7% of ~1239.75 MB @ 415.3 Mb/s ETA: 00:00:12 (hlshd1/bi) [audio+video] INFO: Cleaning up C:\Program Files\get_iplayer\get_iplayer.pl (got signal INT)
-
-
Originally Posted by white_snake;2726771 Windows is stupid af and looks for .exe's only.
[CODENoob Starter Pack. Just download every Widevine mpd! Not kidding!.
https://files.videohelp.com/u/301890/hellyes6.zip
Similar Threads
-
Hot air on the tape.
By Litaiff in forum Capturing and VCRReplies: 2Last Post: 24th Jan 2023, 12:43 -
4K Video Downloader free or money?
By Jomapil1 in forum Video Streaming DownloadingReplies: 8Last Post: 29th Sep 2020, 10:33 -
Simplest and quickest free video downloader ?
By arcadianne in forum Newbie / General discussionsReplies: 28Last Post: 27th Feb 2019, 20:29 -
Using TV downloader
By frankopstaele in forum Newbie / General discussionsReplies: 0Last Post: 2nd Feb 2019, 18:44 -
Downloading Ustream Off-Air / No Videos?
By lemonmellow in forum Video Streaming DownloadingReplies: 1Last Post: 25th Oct 2018, 10:42