Set LBRY URL Slug to be regenerated each time a project is loaded and not saved between runs in case title.txt file is changed
This commit is contained in:
@@ -275,9 +275,12 @@ Loop, files, %VideoFolderDir%\*.*, F ; loop through the files in the director
|
||||
|
||||
if(FileNameWExt = "title.txt"){
|
||||
FileRead, VideoTitle, %A_LoopFileFullPath%
|
||||
|
||||
; Generate the LBRY URL Slug on each startup in case Title changes between runs
|
||||
LBRYURLSlug := VideoTitle
|
||||
LBRYURLSlug := LBRYCMDTextReplacement(LBRYURLSlug)
|
||||
|
||||
OriginalVideoTitle := VideoTitle
|
||||
; OriginalLBRYURLSlug := LBRYURLSlug
|
||||
}
|
||||
|
||||
if(FileNameWExt = "body.txt"){
|
||||
@@ -371,10 +374,9 @@ if(FileExist(VideoLinksIniFile)){
|
||||
IniRead, BitChuteURL, %VideoLinksIniFile%, URLs, BitChuteURL, %A_Space%
|
||||
|
||||
; LBRY
|
||||
IniRead, LBRYURLSlug, %VideoLinksIniFile%, Misc, LBRYURLSlug, %A_Space%
|
||||
if(LBRYURLSlug = ""){
|
||||
LBRYURLSlug := OriginalLBRYURLSlug ; video title
|
||||
}
|
||||
; removed on 2024/06/24, let's regenerate the slug each time in case the video file changes between runs
|
||||
; IniRead, LBRYURLSlug, %VideoLinksIniFile%, Misc, LBRYURLSlug, %A_Space%
|
||||
|
||||
; LBRY Video
|
||||
IniRead, LBRYVideoURL, %VideoLinksIniFile%, URLs, LBRYVideoURL, %A_Space%
|
||||
IniRead, LBRYVideoThumb, %VideoLinksIniFile%, Misc, LBRYVideoThumb, %A_Space%
|
||||
@@ -409,7 +411,7 @@ if(FileExist(VideoLinksIniFile)){
|
||||
/* if(TempVideoThumbFilepath){ ; if Video Thumbnail was saved in last run, overwrite variable path that was grabbed in the file loop above
|
||||
VideoThumbFilepath := TempVideoThumbFilepath
|
||||
}
|
||||
*/
|
||||
*/
|
||||
|
||||
|
||||
}
|
||||
@@ -705,7 +707,8 @@ LBRYURLSlug := VideoTitle
|
||||
LBRYURLSlug := LBRYCMDTextReplacement(LBRYURLSlug)
|
||||
|
||||
; Save the LBRY URL Slug to .ini file in case it's needed later
|
||||
IniWrite, %LBRYURLSlug%, %VideoLinksIniFile%, Misc, LBRYUrlSlug
|
||||
; removed on 2024/06/24, generating the URL SLugh each run going forward
|
||||
; IniWrite, %LBRYURLSlug%, %VideoLinksIniFile%, Misc, LBRYUrlSlug
|
||||
IniWrite, %VideoThumbFilepath%, %VideoLinksIniFile%, Misc, VideoThumbFilepath
|
||||
IniWrite, %PodcastNumber%, %VideoLinksIniFile%, Misc, PodcastNumber
|
||||
IniWrite, %VideoThumbFilepath%, %VideoLinksIniFile%, Misc, VideoThumbFilepath
|
||||
|
||||
Reference in New Issue
Block a user