What am I doing wrong ?
Made in Chelsea S27E08 ──────────────────────────
Retrying (Retry(total=14, connect=None, read=None, redirect=None,
status=None)) after connection broken by 'SSLError(SSLEOFError(8,
'[SSL: UNEXPECTED_EOF_WHILE_READING] EOF occurred in violation of
protocol (_ssl.c:1000)'))': /vod/stream/76541-008
Retrying (Retry(total=13, connect=None, read=None, redirect=None,
status=None)) after connection broken by 'SSLError(SSLEOFError(8,
'[SSL: UNEXPECTED_EOF_WHILE_READING] EOF occurred in violation of
protocol (_ssl.c:1000)'))': /vod/stream/76541-008
Retrying (Retry(total=12, connect=None, read=None, redirect=None,
status=None)) after connection broken by 'SSLError(SSLEOFError(8,
'[SSL: UNEXPECTED_EOF_WHILE_READING] EOF occurred in violation of
protocol (_ssl.c:1000)'))': /vod/stream/76541-008
Retrying (Retry(total=11, connect=None, read=None, redirect=None,
status=None)) after connection broken by 'SSLError(SSLEOFError(8,
'[SSL: UNEXPECTED_EOF_WHILE_READING] EOF occurred in violation of
protocol (_ssl.c:1000)'))': /vod/stream/76541-008
Retrying (Retry(total=10, connect=None, read=None, redirect=None,
status=None)) after connection broken by 'SSLError(SSLEOFError(8,
'[SSL: UNEXPECTED_EOF_WHILE_READING] EOF occurred in violation of
protocol (_ssl.c:1000)'))': /vod/stream/76541-008
Retrying (Retry(total=9, connect=None, read=None, redirect=None,
status=None)) after connection broken by 'SSLError(SSLEOFError(8,
'[SSL: UNEXPECTED_EOF_WHILE_READING] EOF occurred in violation of
protocol (_ssl.c:1000)'))': /vod/stream/76541-008
1 Video
└── [H.264, SDR] | en | 1024x576 @ 1505 kb/s, 25.000 FPS
⠹ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ --:-- FAILED
1 Audio
└── [AAC] | en | 2.0 | 133 kb/s
⠸ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ --:-- SKIPPED
2 Subtitles
├── [VTT] | en
│ ⠸ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ --:-- SKIPPED
└── [VTT] | en | SDH
⠸ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ --:-- SKIPPED
5 Chapters
├── 00:00:00.000 | Chapter 01
├── 00:13:52.600 | Chapter 02
├── 00:22:33.480 | Chapter 03
├── 00:33:33.480 | Chapter 04
└── 00:46:42.240 | Credits
❌ Download Failed...
An unexpected error occurred in one of the download workers.
See the error trace above for more information.
+ Reply to Thread
Results 331 to 360 of 1699
-
-
-
-
-
I have been playing with the "devine cfg" and noticed that some new options are available:
##headers (dict)
# https://github.com/devine-dl/devine/blob/master/CONFIG.md#headers-dict
so I am trying:
Please note, if you have a "NOTES" in your "devine.yaml" these maybe be deleted using the below CFG commands
Known Issues:
- Config changes remove all comments of the changed files, which may hold critical data. (#14)
Code:devine cfg headers.Accept-Language "en-US,en;q=0.8"
Code:devine cfg headers.User-Agent "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.75 Safari/537.36"
(the comma after KHTML and the spaces forces the User agent to be split ... in the YAML config)
Code:headers: Accept-Language: en-US,en;q=0.8 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.75 Safari/537.36
I thought a, heureka moment as brackets and "Comma" would perhaps help to create entry for the iPlayer in services
that requires "services.iP cert $home\wvd\bbciplayer.pem" but that is more than just a KEY/VALUE ...
Code:services: iP: cert: C:\Users\user\wvd\bbciplayer.pem
as the CFG command only accepts [KEY] [VALUE]
Code:devine cfg [OPTIONS] [KEY] [VALUE]
##services (dict)
# https://github.com/devine-dl/devine/blob/master/CONFIG.md#services-dict
Code:devine cfg [OPTIONS] [KEY] [VALUE]
Code:devine cfg services.iP, "cert: $home\wvd\bbciplayer.pem"
Code:devine cfg services.iP cert:$home\wvd\bbciplayer.pem
Here is so far what works:
Code:devine env info
Code:devine cfg --list
Code:devine wvd add $home\wvd\generic_4464_l3.wvd
#Check the Help
Code:devine cfg -?
##directories (dict)
# https://github.com/devine-dl/devine/blob/master/CONFIG.md#directories-dict
Code:devine cfg directories.services $home\git\stabbedbybrick-333\devine-services\services\
##cdm (dict)
# https://github.com/devine-dl/devine/blob/master/CONFIG.md#cdm-dict
Code:devine cfg cdm.default generic_4464_l3
Code:devine cfg cdm.AMZN chromecdm_903_l3
Code:devine cfg cdm.NF nexus_6_l1
#ADVANCE (Will need editing)
Code:devine cfg cdm.DSNP john_sd,chromecdm_903_l3 #NEEDS a] EXTRA LINE b] SPACE Between ": and CDM name "john_sd :chromecdm_903_l3"
Code:devine cfg cdm.DSNP "(jane_uhd, nexus_5_l1)" #NEEDS a] EXTRA LINE b] SPACE Between ": and CDM name "jane_uhd: nexus_5_l1"
##credentials (dict[str, str|list|dict])
# https://github.com/devine-dl/devine/blob/master/CONFIG.md#credentials-dictstr-strlistdict
Code:devine cfg credentials.ALL4 email:password = YourEmail:PasswordSetWhenRegisteredOnALL4Website
Code:devine cfg credentials.DSNP email:password = YourEmail:PasswordSetWhenRegisteredOnDSNPWebsite
##downloader (str)
# https://github.com/devine-dl/devine/blob/master/CONFIG.md#downloader-str
#SET aria2 as a Downloader
Code:devine cfg downloader aria2c
##curl_impersonate (dict)
# https://github.com/devine-dl/devine/blob/master/CONFIG.md#curl_impersonate-dict
#SET curl_impersonate as a Downloader
Code:devine cfg --unset downloader
Code:devine cfg downloader curl_impersonate
##aria2c (dict)
# https://github.com/devine-dl/devine/blob/master/CONFIG.md#aria2c-dict
Code:devine cfg aria2c.max_concurrent_downloads 2
Code:devine cfg aria2c.file_allocation prealloc
##headers (dict)
# https://github.com/devine-dl/devine/blob/master/CONFIG.md#headers-dict
Code:devine cfg headers.Accept-Language "en-US,en;q=0.8"
Code:devine cfg headers.User-Agent "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.75 Safari/537.36"
##dl (dict)
# https://github.com/devine-dl/devine/blob/master/CONFIG.md#dl-dict
#Change the output subtitle format from the default (original format) to SRT:
Code:devine cfg dl.sub_format srt
Code:devine cfg dl.lang en
Code:devine cfg dl.downloads 4
Code:devine cfg dl.workers 16
##proxy_providers (dict)
# https://github.com/devine-dl/devine/blob/master/CONFIG.md#proxy_providers-dict
Code:devine cfg proxy_providers.basic de
Code:devine cfg proxy_providers.nordvpn de
##basic (dict[str, str|list])
devine cfg
us:
- "http://john%40email.tldassword123@proxy-us.domain.tld:8080"
- "http://jane%40email.tldassword456@proxy-us.domain2.tld:8080"
de: "https://127.0.0.1:8080"
##nordvpn (dict)
# https://github.com/devine-dl/devine/blob/master/CONFIG.md#nordvpn-dict
username: zxqsR7C5CyGwmGb6KSvk8qsZ # example of the login format
password: wXVHmht22hhRKUEQ32PQVjCZ
servers:
- us: 12 # force US server #12 for US proxies
----------------------------
#ADVANCE (Will need editing)
----------------------------
##services (dict)
# https://github.com/devine-dl/devine/blob/master/CONFIG.md#services-dict
Code:devine cfg services.iP cert:$home\wvd\bbciplayer.pem
Code:services: iP: cert: C:\Users\user\wvd\bbciplayer.pem
# https://github.com/devine-dl/devine/blob/master/CONFIG.md#key_vaults-listdict
# 3 types of Vaults are in the Core codebase: API, SQLite and MySQL
Code:devine cfg key_vaults.type SQLite
Code:devine cfg key_vaults.name Local-Vault
Code:devine cfg key_vaults.path $home\\wvd\key_store.db
Code:devine cfg key_vaults.path c:\Users\user\wvd\key_store.db
Code:key_vaults: - type: SQLite name: Local-vault path: c:\Users\user\wvd\key_store.db
# https://github.com/devine-dl/devine/blob/master/CONFIG.md#remote_cdm-listdict
Code:devine cfg remote_cdm.name "CDM_Project_API" devine cfg remote_cdm.device_type ANDROID devine cfg remote_cdm.system_id 4464 devine cfg remote_cdm.security_level 3 devine cfg remote_cdm.host "https://cdrm-project.com/devine" devine cfg remote_cdm.secret "CDRM-Project" devine cfg remote_cdm.device_name "CDM"
and it should be edited like this:
Code:remote_cdm: - name: CDM_Project_API device_type: ANDROID system_id: 4464 security_level: 3 host: https://cdrm-project.com/devine secret: CDRM-Project device_name: CDM
Code:devine cfg --list
-
I'm slowly getting closer ,Any suggestions ,Folks, I found the video and audio files hiding in my temp folder , but they were "seperate" files , I'm not bothered about subtitles because i really dont need them
Service: ALL4 ───────────────────────────────
Service is Geoblocked in your region, getting a Proxy to gb
Got Proxy from Hola
+ Using cached Tokens...
Authenticated with Service
───────────────────────── Series: Made in Chelsea ──────────────────────────
27 Seasons, 306 Episodes
────────────────────────── Made in Chelsea S27E08 ──────────────────────────
Cached 1 Key to 1/1 Vaults
[Widevine]: I0531 02:39:54.788472 10448 demuxer.cc:94]
Demuxer::Run() on file 'C:\Users\palmer\AppData\Local\Temp
\devine\Video_3c927909.mp4'. I0531 02:39:54.788666 10448
demuxer.cc:160] Initialize Demuxer for file 'C:\Users\palm
er\AppData\Local\Temp\devine\Video_3c927909.mp4'. I0531
02:40:10.235217 10448 single_segment_segmenter.cc:111]
Update media header (moov) and rewrite the file to 'C:\Use
rs\palmer\AppData\Local\Temp\devine\Video_3c927909 _decrypt
ed.mp4'. I0531 02:40:11.995620 10448 mp4_muxer.cc:193]
MP4 file 'C:\Users\palmer\AppData\Local\Temp\devine\Video_
3c927909_decrypted.mp4' finalized.
[Widevine]: I0531 02:40:23.284648 1956 demuxer.cc:94]
Demuxer::Run() on file 'C:\Users\palmer\AppData\Local\Temp
\devine\Audio_3212e5ed.mp4'. I0531 02:40:23.284825 1956
demuxer.cc:160] Initialize Demuxer for file 'C:\Users\palm
er\AppData\Local\Temp\devine\Audio_3212e5ed.mp4'. I0531
02:40:24.962173 1956 single_segment_segmenter.cc:111]
Update media header (moov) and rewrite the file to 'C:\Use
rs\palmer\AppData\Local\Temp\devine\Audio_3212e5ed _decrypt
ed.mp4'. I0531 02:40:25.103258 1956 mp4_muxer.cc:193]
MP4 file 'C:\Users\palmer\AppData\Local\Temp\devine\Audio_
3212e5ed_decrypted.mp4' finalized.
1 Video
└── [H.264, SDR] | en | 1024x576 @ 1505 kb/s, 25.000 FPS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 02:24 Downloaded
1 Audio
└── [AAC] | en | 2.0 | 133 kb/s
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 02:36 Downloaded
2 Subtitles
├── [VTT] | en
│ ⠹ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ --:-- -
└── [VTT] | en | SDH
⠹ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ --:-- FAILED
5 Chapters
├── 00:00:00.000 | Chapter 01
├── 00:13:52.600 | Chapter 02
├── 00:22:33.480 | Chapter 03
├── 00:33:33.480 | Chapter 04
└── 00:46:42.240 | Credits
Widevine(AAAASnBzc2gAAAAA7e+LqXnWSs6jyCfc1R0h7QAAA CoIARIQ8v+ZPKwvpeKQj
uNfqZ0oaxoIcmJtY2g0dHYiCDEwMTQzODAwMgA=)
└── f2ff993cac2fa5e2908ee35fa99d286b:d95f42b8049802880 3c316c58492ce0b*
❌ Download Failed...
An unexpected error occurred in one of the download workers.
See the error trace above for more information.Last edited by mickmars; 30th May 2024 at 23:01.
-
https://buzzheavier.com/f/GO5YODFn8AA= Made in Chelsea S27E08
Noob Starter Pack. Just download every Widevine mpd! Not kidding!.
https://files.videohelp.com/u/301890/hellyes6.zip -
-
-
Hi All,
thank you so much for the help and responses
Is there a code, that i could put in, using Powershell/Terminal that can stop trying to download any subtitles of all types, on everything as default ? -
Code:
@Echo off Echo for Programs / Movies without Subtitles set /p name=Please enter the Service name ie ALL4 set name=%name% set /p program=Please Enter the Program Name or Entity ie married-at-first-sight-australia set program=%program% echo The Service is set to %name% echo The Program or Entity is set to %program% pause devine dl -V -A %name% %program% pause
-
-
Yes, this will prompt you for your desired channel (ALL4, BBC etc.), and then asks you for the program you want, it then parses out your responses, and puts them into that devine command at the bottom, which excludes subtitles (as it only has -A and -V, so audio and video respectively).
Last edited by keep_it_breezy; 31st May 2024 at 12:00. Reason: spelling
-
When I use Devine, I open up a powershell window and paste in the devine script.
Is there a way to make a customised powershell shortcut with the Devine commands already in there? -
While I get it, DOUBLE CLICK is shorter then
WinKey+x +i ........ and then Ctrl+C | Ctrl+V
But,
how about creating a TXT file called WhatEverYouWant-v3.3.3.TXT
and save the important commands in it on Desktop?
At the top you have the command to go to Devine DIR
and Enable VENV
and under the notes for specific services, notes how to download
your custom commands etc...?
Simple Ctrl+C/Ctrl+V and you set to go,
no need to remember the syntax, look up your WhatEverYouWant.TXT
Code:nano $home\Desktop\DevineNotes-v3.3.3.txt
Code:code $home\Desktop\DevineNotes-v3.3.3.txt
Code:notepad $home\Desktop\DevineNotes-v3.3.3.txt
Code:#Devine #DIR ################### cd $home\git\devine-333-pip\; .\env\Scripts\activate; devine -v; # Upgrade SERVICES git -C $home\git\stabbedbybrick-333\devine-services\ pull code notepad $home\AppData\Local\devine\devine.yaml devine cfg --list #iPlayer devine dl iP -? devine dl --list-titles iP m0013cl7 devine dl --list -v H.265 -w s01e01 iP m0013cl7 devine dl -q 432 -r HLG --no-folder -w s01e1 iP m0013cl7 #ITV devine dl itv -? #ALL4 devine dl all4 -? #My5 devine dl my5 -? devine search my5 "fred rose" devine dl --list-titles my5 the-clues-that-caught-the-killer-fred-rose-west devine dl --list my5 the-clues-that-caught-the-killer-fred-rose-west devine dl --no-proxy --no-folder --sub-format SRT -q 180 my5 the-clues-that-caught-the-killer-fred-rose-west #CTV devine dl ctv -? #TUBI devine dl tubi -? #ROKU devine dl tub -?
Then when searching for specific service or whatever
Press Ctrl+F type what you searching for (or if it is ITV then #itv) and
you will get straight to info on ITV ...... -
if your devine is in its own environment all you need to do is put the cmd files in the directory and when your in powershell just type dvdl for example then it would come up with enter service and then enter url shows you the command its going to do then pauses press enter and it downloads if your using the cmd files i gave you.
-
[Attachment 79553 - Click to enlarge]
Any linux people tell me why the itv service fails with workers ive checked what I think are all the dependencies -
Aria2c tries to do multiple threaded downloads via workers, it seems that sometimes services disagree with this, and that's what causes the error. The way I've found to consistently fix this is to use requests / curl_impersonate as your downloader, or turn down the number of worker using --workers (i believe).
-
-
-
Trying to download something from ITV and i keep getting
KeyError: 'seriesType'
However using the exact same commands on different ITV shows works absolutely fine
any suggestions ? -
devine dl -V -A --list itv https://www.itv.com/watch/the-only-way-is-essex/1a9310/1a9310a0412
-
That link goes to the episode for Sunday 2nd June 2024 at 9PM BST..... It's not been shown yet..
-
-
devine dl itv https://www.itv.com/watch/the-only-way-is-essex/1a9310/1a9310a0411 one from last week wont dl either you get the same error message not that I want to dl it
-
-
Checking and other series work fine so I think it is indeed a TOWIE thing...
-
-
Similar Threads
-
How do I completely remove the music and sound effects from a movie?
By cns00 in forum EditingReplies: 1Last Post: 15th Jan 2024, 12:11 -
Which software can remove music from show but keep character dialogue?
By Mohamed61020 in forum AudioReplies: 6Last Post: 2nd Jul 2023, 21:32 -
Software for simple music videos?
By dewiclements in forum Software PlayingReplies: 3Last Post: 26th Jul 2022, 01:21 -
H.264 for archival and editing - no go?
By malling in forum Capturing and VCRReplies: 8Last Post: 19th Aug 2019, 23:51 -
Movie music too loud but dialogue too quiet fix needed
By hokkom in forum AudioReplies: 121Last Post: 4th May 2019, 08:51