mirror of
https://github.com/vinefeeder/TwinVine.git
synced 2026-07-15 18:10:04 +02:00
cookies help
This commit is contained in:
@@ -131,6 +131,25 @@ try {
|
|||||||
Select-Object -First 1 |
|
Select-Object -First 1 |
|
||||||
ForEach-Object { Copy-Item -Force $_.FullName (Join-Path $BinDir "N_m3u8DL-RE.exe") }
|
ForEach-Object { Copy-Item -Force $_.FullName (Join-Path $BinDir "N_m3u8DL-RE.exe") }
|
||||||
|
|
||||||
|
'''# -----------------------------
|
||||||
|
# Install Git for Windows (64-bit)
|
||||||
|
# -----------------------------
|
||||||
|
$gitInstaller = Join-Path $WorkDir "Git-2.52.0-64-bit.exe"
|
||||||
|
Download-File `
|
||||||
|
"https://github.com/git-for-windows/git/releases/download/v2.52.0.windows.1/Git-2.52.0-64-bit.exe" `
|
||||||
|
$gitInstaller
|
||||||
|
|
||||||
|
# Silent install (NSIS): /S = silent
|
||||||
|
Start-Process -FilePath $gitInstaller -ArgumentList "/S" -Wait
|
||||||
|
|
||||||
|
# Add the typical Git cmd folder to MACHINE PATH if present
|
||||||
|
$gitDefaultPath = "C:\Program Files\Git\cmd"
|
||||||
|
if (Test-Path $gitDefaultPath) {
|
||||||
|
Add-ToMachinePath $gitDefaultPath
|
||||||
|
} else {
|
||||||
|
Write-Host "Git installed, but default path not found: $gitDefaultPath (maybe different install location)"
|
||||||
|
}'''
|
||||||
|
|
||||||
# -----------------------------
|
# -----------------------------
|
||||||
# Install Shaka Packager (Windows x64)
|
# Install Shaka Packager (Windows x64)
|
||||||
# -----------------------------
|
# -----------------------------
|
||||||
|
|||||||
@@ -136,6 +136,14 @@ Finally, cd to TwinVine and run each command in order,
|
|||||||
|
|
||||||
That's it; uv run vinefeeder to get started!
|
That's it; uv run vinefeeder to get started!
|
||||||
|
|
||||||
|
**Locations**
|
||||||
|
|
||||||
|
As configured your files will be downloaded to TwinVine/packages/envied/src/downloads/
|
||||||
|
The envied.yaml can be edited for the download location - use a full path, on windows with forward slashes C:/Users/Downloads and Linux /home/user/Downloads, for example.
|
||||||
|
Cookies: As configured the Cookies folder is in packages/envied/src/. Each cookie file - type .txt should be names exactly as the service eg DNSP.txt and you personal login cookie placed inside.
|
||||||
|
WVDs: A CDM - called device.wvd is located at TwinVine/WVDs
|
||||||
|
Vaults: No local vaults are configured but a remote vault is used for caching and fetching. Often times you will see DRMLab s the source of the license key -saving unnecessary requests to a license server.
|
||||||
|
|
||||||
**Linux**
|
**Linux**
|
||||||
|
|
||||||
Linux systems are known to screen freeze after envied has finished a download.
|
Linux systems are known to screen freeze after envied has finished a download.
|
||||||
|
|||||||
@@ -0,0 +1,3 @@
|
|||||||
|
Add you cookies files to this folder.
|
||||||
|
|
||||||
|
Name each file to match the service eg DNSP.txt
|
||||||
@@ -1,3 +1,3 @@
|
|||||||
BATCH_DOWNLOAD: true
|
BATCH_DOWNLOAD: false
|
||||||
TERMINAL: gnome-terminal
|
TERMINAL: gnome-terminal
|
||||||
TERMINAL_RESET: true
|
TERMINAL_RESET: true
|
||||||
|
|||||||
Reference in New Issue
Block a user