|
|
|
@ -584,8 +584,8 @@ Gui, Add, Edit, yp+0 x+%Marginspace% w%PodcastNumberEditWidth% h%EditBoxHeight%
|
|
|
|
|
|
|
|
|
|
; LBRY URL
|
|
|
|
|
Gui, Font, Bold
|
|
|
|
|
Gui, Add, Text, x%Marginspace%,Video Tags
|
|
|
|
|
Gui, Add, Text,x%ColumnOneHalfWidthXPos% yp+0,Podcast Tags
|
|
|
|
|
Gui, Add, Text, x%Marginspace%,Video Tags (Comma Seperated)
|
|
|
|
|
Gui, Add, Text,x%ColumnOneHalfWidthXPos% yp+0,Podcast Tags (Comma Seperated)
|
|
|
|
|
|
|
|
|
|
Gui, Font, Normal
|
|
|
|
|
Gui, Add, Edit, x%Marginspace% Y+5 w%EditBoxHalfWidths% h%EditBoxHeight% gUpdateVars vVideoTags, %VideoTags%
|
|
|
|
@ -1159,33 +1159,44 @@ JSVideoDescription := FormatTextToJSText(VideoDescription)
|
|
|
|
|
|
|
|
|
|
; -------------------------------/Log Info To Text-------------------------------
|
|
|
|
|
|
|
|
|
|
; @todo: note: it would be better to replace accented chars w/ their pure latin equivalents but that seems a bit
|
|
|
|
|
; beyond the scope of this change. here's a link talking about how to do that tho
|
|
|
|
|
; https://www.autohotkey.com/boards/viewtopic.php?t=61626
|
|
|
|
|
|
|
|
|
|
; This should go somewhere appropriate
|
|
|
|
|
; fwiw this function comes straight from the docs: https://www.autohotkey.com/docs/v2/Functions.htm#Variadic
|
|
|
|
|
Join(sep, params*) {
|
|
|
|
|
For index, param in params
|
|
|
|
|
str .= param . sep
|
|
|
|
|
return SubStr(str, 1, -StrLen(sep))
|
|
|
|
|
}
|
|
|
|
|
; Create an array out of the keywords to be used in different places
|
|
|
|
|
VideoTagsArray := []
|
|
|
|
|
PodcastTagsArray := []
|
|
|
|
|
|
|
|
|
|
; VIDEO Tags
|
|
|
|
|
For index, val in StrSplit(VideoTags, ",") {
|
|
|
|
|
; for each element in the split videotags array, trim leading & trailing spaces
|
|
|
|
|
val := Trim(val)
|
|
|
|
|
|
|
|
|
|
; Create an array out of the keywords to be used in different places
|
|
|
|
|
KeywordsArray := Array()
|
|
|
|
|
For idx, val in StrSplit(VideoTags, ",") {
|
|
|
|
|
; and remove any chars that are not a letter, number, or space (i = case-insensitive)
|
|
|
|
|
val := RegexReplace(val, "i)[^a-z0-9 ]", "")
|
|
|
|
|
VideoTagsArray.InsertAt(index, val)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
; PODCAST Tags
|
|
|
|
|
For index, val in StrSplit(PodcastTags, ",") {
|
|
|
|
|
; for each element in the split videotags array, trim leading & trailing spaces
|
|
|
|
|
val := Trim(val)
|
|
|
|
|
|
|
|
|
|
; and remove any chars that are not a letter, number, or space (i = case-insensitive)
|
|
|
|
|
; note: it would be better to replace accented chars w/ their pure latin equivalents but that seems a bit
|
|
|
|
|
; beyond the scope of this change. here's a link talking about how to do that tho
|
|
|
|
|
; https://www.autohotkey.com/boards/viewtopic.php?t=61626
|
|
|
|
|
val := RegexReplace(val, "i)[^a-z0-9 ]", "")
|
|
|
|
|
KeywordsArray.InsertAt(idx, val)
|
|
|
|
|
PodcastTagsArray.InsertAt(index, val)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
; update VideoTags with sanitized keywords list
|
|
|
|
|
VideoTags := Join(",", KeywordsArray*)
|
|
|
|
|
VideoTags := Join(",", VideoTagsArray*)
|
|
|
|
|
|
|
|
|
|
; update PodcastTags with sanitized keywords list
|
|
|
|
|
PodcastTags := Join(",", PodcastTagsArray*)
|
|
|
|
|
|
|
|
|
|
; Call each sub one by one, if errors occur then an upload will be stopped and the next upload will then proceed
|
|
|
|
|
|
|
|
|
|
; Call each submodule one by one
|
|
|
|
|
; if errors occur then an upload for that site will be stopped and the next upload will then proceed
|
|
|
|
|
|
|
|
|
|
if(Telegram)
|
|
|
|
|
gosub, TelegramVideoUpload
|
|
|
|
|