added double check to Bitchute tag input
This commit is contained in:
@@ -267,6 +267,12 @@ Loop, files, %VideoFolderDir%\*.*, F ; loop through the files in the director
|
|||||||
OriginalVideoDescription := VideoDescription
|
OriginalVideoDescription := VideoDescription
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(FileNameWExt = "summary.txt"){
|
||||||
|
FileRead, VideoSummary, %A_LoopFileFullPath%
|
||||||
|
; DescriptionCharCount := StrLen(VideoDescription)
|
||||||
|
OriginalVideoSummary := VideoSummary
|
||||||
|
}
|
||||||
|
|
||||||
if(FileNameWExt = "keywords.txt"){
|
if(FileNameWExt = "keywords.txt"){
|
||||||
FileRead, VideoTags, %A_LoopFileFullPath%
|
FileRead, VideoTags, %A_LoopFileFullPath%
|
||||||
FileRead, PodcastTags, %A_LoopFileFullPath%
|
FileRead, PodcastTags, %A_LoopFileFullPath%
|
||||||
@@ -777,7 +783,7 @@ IniWrite, %VideoThumbFilepath%, %VideoLinksIniFile%, Misc, VideoThumbFilepath
|
|||||||
|
|
||||||
|
|
||||||
; Log Basic info to the errorlogging file
|
; Log Basic info to the errorlogging file
|
||||||
Message = %ScriptName% v%ScriptVersion%: Starting Upload `nFor: **%VideoTitle%**`nTo: %PostedWebsites%
|
Message = Starting Upload with %ScriptName% v%ScriptVersion%:`nFor: **%VideoTitle%**`nTo: %PostedWebsites%
|
||||||
SaveOrPostProgress(Message:=Message,PostType:="Tooltip,ErrorLoggingTextFile,DiscordErrorLogging")
|
SaveOrPostProgress(Message:=Message,PostType:="Tooltip,ErrorLoggingTextFile,DiscordErrorLogging")
|
||||||
|
|
||||||
Message := "VideoTitle: " VideoTitle
|
Message := "VideoTitle: " VideoTitle
|
||||||
@@ -801,6 +807,7 @@ SaveOrPostProgress(Message:=Message,PostType:=",ErrorLoggingTextFile")
|
|||||||
; Convert Video Title and Description into javascript formatting for sending to pages through js instead of plain selenium
|
; Convert Video Title and Description into javascript formatting for sending to pages through js instead of plain selenium
|
||||||
JSVideoTitle := FormatTextToJSText(VideoTitle)
|
JSVideoTitle := FormatTextToJSText(VideoTitle)
|
||||||
JSVideoDescription := FormatTextToJSText(VideoDescription)
|
JSVideoDescription := FormatTextToJSText(VideoDescription)
|
||||||
|
JSVideoSummary := FormatTextToJSText(VideoSummary)
|
||||||
|
|
||||||
; -------------------------------/Log Info To Text-------------------------------
|
; -------------------------------/Log Info To Text-------------------------------
|
||||||
|
|
||||||
|
|||||||
@@ -124,11 +124,15 @@ Loop, 10 { ; Attempt to input video description a couple of times
|
|||||||
Message = Inputting Tags
|
Message = Inputting Tags
|
||||||
SaveOrPostProgress(Message:=Message,PostType:="Tooltip,ErrorLoggingTextFile,DiscordErrorLogging")
|
SaveOrPostProgress(Message:=Message,PostType:="Tooltip,ErrorLoggingTextFile,DiscordErrorLogging")
|
||||||
|
|
||||||
; Convert tags into #hasthtags
|
; Get first 3 tags from Video Tags array
|
||||||
Loop, 3 {
|
Loop, 3 {
|
||||||
BitchuteTags .= VideoTagsArray[A_Index] . " "
|
BitchuteTags .= ArrayOfVideoTags[A_Index] . " "
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Message = Inputting Tags: %BitchuteTags%
|
||||||
|
SaveOrPostProgress(Message:=Message,PostType:="Tooltip,ErrorLoggingTextFile,ErrorSummaryVar,DiscordErrorLogging")
|
||||||
|
|
||||||
|
|
||||||
; input Search Terms (Tags)
|
; input Search Terms (Tags)
|
||||||
Xpath = //input[@placeholder='Search Terms']
|
Xpath = //input[@placeholder='Search Terms']
|
||||||
Status := Selenium_LoopToSendValueToXpath(Xpath:=Xpath,NumOfLoops:=2,SleepLength:=1000,StringTextContent:=BitchuteTags)
|
Status := Selenium_LoopToSendValueToXpath(Xpath:=Xpath,NumOfLoops:=2,SleepLength:=1000,StringTextContent:=BitchuteTags)
|
||||||
@@ -137,6 +141,13 @@ Message = Failed to input search terms (tags)
|
|||||||
SaveOrPostProgress(Message:=Message,PostType:="Tooltip,ErrorLoggingTextFile,DiscordErrorLogging")
|
SaveOrPostProgress(Message:=Message,PostType:="Tooltip,ErrorLoggingTextFile,DiscordErrorLogging")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
js = return document.querySelector("#hashtags").value;
|
||||||
|
try CurrentHashTagValue := driver.executeScript(JS) ;Execute Javascript
|
||||||
|
if(CurrentHashTagValue = ""){
|
||||||
|
Message = Tags that got input into page: %CurrentHashTagValue%
|
||||||
|
SaveOrPostProgress(Message:=Message,PostType:="Tooltip,ErrorLoggingTextFile,DiscordErrorLogging")
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
; Upload Thumbnail
|
; Upload Thumbnail
|
||||||
Message = Attaching Thumbnail
|
Message = Attaching Thumbnail
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
[Video-Uploader]
|
[Video-Uploader]
|
||||||
Version=3.32
|
Version=3.33
|
||||||
Name=Freedomain Video Uploader
|
Name=Freedomain Video Uploader
|
||||||
|
|||||||
Reference in New Issue
Block a user