This repository has been archived by the owner on Apr 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Finalize functionality for 7mmtv scrape
- Loading branch information
Showing
7 changed files
with
93 additions
and
271 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
$FilePath = ((Get-Content -Path (Join-Path -Path $PSScriptRoot -ChildPath 'settings_sort_jav.ini')) -match '^7mm-files-path').Split('=')[1] | ||
$Videos = Get-ChildItem -Path $FilePath | Where-Object {$_.Extension -like ".mp4" ` | ||
-or $_.Extension -like ".mkv"` | ||
-or $_.Extension -like ".wmv"` | ||
-or $_.Extension -like '.avi'` | ||
-or $_.Extension -like '.flv'} | ||
$Count = 1 | ||
$Total = $Videos.Count | ||
foreach ($Video in $Videos) { | ||
$VideoId = ($Video.BaseName).ToUpper() | ||
$GoogleScrape = Invoke-WebRequest -Uri "https://www.google.com/search?q=site:7mmtv.tv+$VideoId" | ||
#$GoogleScrape = Invoke-WebRequest -Uri https://duckduckgo.com/?q=site%3A7mmtv.tv+$VideoID/ | ||
$7mmLink = (((((($GoogleScrape.Links.href -match '7mmtv.tv/../amateurjav_content')) -replace '7mmtv.tv/..', '7mmtv.tv/ja') -replace '\/url\?q=', '') -split "&")[0]) | ||
if ($7mmLink -notmatch $VideoId) { | ||
$7mmLink = (((((($GoogleScrape.Links.href -match '7mmtv.tv/../uncensored_content')) -replace '7mmtv.tv/..', '7mmtv.tv/ja') -replace '\/url\?q=', '') -split "&")[0]) | ||
if (($7mmLink -replace "%2520", " ") -notmatch $VideoId -or $null -like $7mmLink -or $7mmLink -like '') { | ||
"$VideoId not found on 7mmtv. Skipping..." | ||
} | ||
} | ||
else { | ||
New-Item -ItemType Directory -Path (Join-Path -Path $Video.DirectoryName -ChildPath $VideoId) | ||
Move-Item -Path $Video.FullName -Destination (Join-Path -Path (Join-Path -Path $Video.DirectoryName -ChildPath $VideoId) -Childpath $Video.Name) | ||
$NfoPath = (Join-Path -Path (Join-Path -Path $Video.DirectoryName -ChildPath $VideoId) -Childpath "$VideoId.txt") | ||
$7mmScrape = Invoke-WebRequest -Uri $7mmLink | ||
$Cover = ($7mmScrape.images | Where-Object {$null -ne $_.title -and $_.title.length -gt 1} | Select-Object src) | ||
Invoke-WebRequest $Cover.src -OutFile (Join-Path -Path (Join-Path -Path $Video.DirectoryName -ChildPath $VideoId) -Childpath "$VideoId.jpg") | ||
$ScrapedTitle = ((($7mmScrape.Content -split "<title>")[1]) -split " -")[0] | ||
$Studio = ((((($7mmScrape.Content -split "<li class='posts-message'><a target=`"_top`"")[1]) -split ".html'>")[1]) -split "<\/a>")[0] | ||
if ($Studio -like "----") { | ||
$Studio = ((((($7mmScrape.Content -split "<li class='posts-message'><a target=`"_top`" href='https:\/\/7mmtv.tv\/ja\/amateurjav_makersr")[1]) -split ".html'>")[1]) -split "<\/a>")[0] | ||
} | ||
$ReleaseDate = ((($7mmScrape.Content -split "<li class='posts-message'>")[2]) -split "<\/li>")[0] | ||
#$ReleaseDate = ((((($7mmScrape.Content -split "配信開始日:<\/li>")[1]) -split ">")[1]) -split "<")[0] | ||
$ReleaseYear = ($ReleaseDate.Split('-'))[0] | ||
$Genres = $7mmScrape.Links | Where-Object { $_.outerHTML -match '_category\/' } | ||
$GenreObject = @() | ||
foreach ($Genre in $Genres) { | ||
$GenreObject += (((($Genre -split "_category\/\d{1,6}\/")[1]) -split "\/")[0]) | ||
} | ||
$Actors = $7mmScrape.Links.href | Where-Object {$_ -like "*avperformer*"} | ||
$ActorObject = @() | ||
foreach ($Actor in $Actors) { | ||
$ActorObject += ((($Actor -split "\d{1,6}\/")[1]) -split "\/")[0] | ||
} | ||
|
||
Write-Host "Link is: $7mmLink" | ||
Write-Host "Title is: $ScrapedTitle" | ||
Write-Host "Studio is: $Studio" | ||
Write-Host "Genres is: $GenreObject" | ||
Write-Host "Actor is: $ActorObject" | ||
Write-Host "Release date: $ReleaseDate" | ||
Write-Host "Release year: $ReleaseYear" | ||
|
||
# Write metadata to file | ||
Set-Content -LiteralPath $NfoPath -Value '<?xml version="1.0" encoding="UTF-8" standalone="yes"?>' | ||
Add-Content -LiteralPath $NfoPath -Value '<movie>' | ||
Add-Content -LiteralPath $NfoPath -Value " <title>$ScrapedTitle</title>" | ||
Add-Content -LiteralPath $NfoPath -Value " <year>$ReleaseYear</year>" | ||
Add-Content -LiteralPath $NfoPath -Value " <releasedate>$ReleaseDate</releasedate>" | ||
Add-Content -LiteralPath $NfoPath -Value " <studio>$Studio</studio>" | ||
foreach ($Genre in $GenreObject) { | ||
Add-Content -LiteralPath $NfoPath -Value " <genre>$Genre</genre>" | ||
} | ||
foreach ($Actor in $ActorObject) { | ||
$Content = @( | ||
" <actor>" | ||
" <name>$Actor</name>" | ||
" </actor>" | ||
) | ||
Add-Content -LiteralPath $NfoPath -Value $Content | ||
} | ||
# End file | ||
Add-Content -LiteralPath $NfoPath -Value '</movie>' | ||
$Content = Get-Content $NfoPath | ||
$NfoFile = Join-Path -Path (Join-Path -Path $Video.DirectoryName -ChildPath $VideoId) -Childpath "$VideoId.nfo" | ||
$Content | Out-File -FilePath $NfoFile -Encoding utf8 | ||
Remove-Item -Path $NfoPath | ||
Write-Output "($Count of $Total) $VideoId .nfo processed..." | ||
# Wait 10 seconds between files | ||
Start-Sleep -Seconds 10 | ||
$Count++ | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.