Jump to content
UBot Underground

[Sell Plugin] Advanced Video


Recommended Posts

SOLVED if anyone has the same issue

 

I downloaded atomic parsley and added the folder to the libraries folder where FFMPEG folder is, then used this command 

 

plugin command("Advanced Video.dll", "video ffmpeg command", " \"C:\\Users\\Rawcus\\Desktop\\Finished Reaprr Videos\\video 1.mp4\" --artwork \"C:\\Users\\Rawcus\\Desktop\\Finished Reaprr Videos\\videothumb 1.png\"", "C:\\Users\\Rawcus\\AppData\\Roaming\\UBot Studio\\Libraries\\AtomicParsley-win32-0.9.0\\AtomicParsley.exe")

Link to post
Share on other sites
  • Replies 207
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Popular Posts

Ubotplugin.com End of Business Good day Ubot community. Over the last 9 years I invested a lot of time in developing the plugins. I hope that it was of good use for all of you. Only in the last

Method 1  1. You need a video A 10-minute black background. 2. Create a subtitle file (.srt file). 3. Use the "video subtitle" to include video and subtitling.   Sample from "infile.srt"     Method 2 

The image file and audio file path too long.

Posted Images

  • 4 weeks later...

Does the Video Metadata editor change the meta title or the meta comments?

 

 

nothing seems to change when I use it

 

 

Am trying to change either the title or add comments 

try

plugin command("Advanced Video.dll", "video metadata editor", "{$special folder("Application")}\\Output video converter.mp4", "{$special folder("Application")}\\Output video converter_M.mp4", "title=Track #5
comment=This is redbook CD audio track #5
composer=Willie Royal
artist=Willie & Lobo
album_artist=Willie & Lobo
genre=Game Soundtrack
date=1997")

 

 
 
 

 

Link to post
Share on other sites
  • 4 months later...
3.3.3.0

 

Add new command

audio record start: by name

audio record stop: by name

 

Add new sample file

audio record.ubot

Link to post
Share on other sites

Seems new record audio, stop and save 

are not waiting for each other to finish

Plugin: Advanced Video.dll
V3.3.3.0
Microsoft Windows 10 Pro  (x64)Version: 4.6.1 installed on all other Windows OS versions or later
Category: Apichai Audio Commands
Command: audio record stop
Comment: You can see 'Error Log.txt' at your desktop.

Execute:
The process cannot access the file 'C:\Users\lowridertj\Desktop\new.wav' because it is being used by another process.

---------------------------------------------

xw30I/12gM7Wm4D+7F/MZIVznRA2HIElKf1JBol481vHt14EaZ3Pt0ploUZ/zaVC4GmEgJDfBlLpA+vgC7SdNuST6t6VQOnXKaeKP+qLhv/qknd16Rtqf1SXTm0H/5o8AqMQxjd6wQ4st4ybUQyAIG7wTskt2mE2/aU4taeeybbIefD5dZl5MfgdqcYL8ZOzQ8Oh4eevQg0HwZpDuYDTW7fxBF//6x8EIrCsJHf8nZjAHyygOOpbeJHoGNeazsykgAIiu5DyTBVugBNjv9yRYZflP7GFa0T3kx4dT5ko1TudhJhpBpn5SGAG7Ug91PDIjfaScZYSlZbdU0WnEvVynwTPq9vnGOmgmFH5lmSIgXRuc+GMud/q/U5dHbv98VPJQ8Oh4eevQg1dvA0/OrFC85SZc9Gc229DJsJnRBUr6oIRphETodsgD/AX52gSNrTh3M9MFq2acrlstP/QMG1NrYOKTmoEyhnKVMiIiP2hmvo1Xqbj2NfumiICJmZIFbRrEj1WuecvcHcmCPVI8kuW5cqryLXDiZcKWHRDzxbbuG4=

Ubot code used

ui button calls this
    plugin command("Advanced Video.dll", "audio record start")

ui button calls this with a save to UI command set for file name ending in .wav
    plugin command("Advanced Video.dll", "audio record stop", #save recording to)

then the below is executed to convert to mp3
    set(#save recording to mp3,$replace(#save recording to,".wav",".mp3"),"Global")
    plugin command("Advanced Video.dll", "audio converter", #save recording to, #save recording to mp3, "")
    play sound(#save recording to mp3)


Link to post
Share on other sites

@LoWrIdErTJ - BotGuru

"audio record start" "audio record stop" command not for thread

please see error message "The process cannot access the file 'C:\Users\lowridertj\Desktop\new.wav' because it is being used by another process"

close any program use this file.

Link to post
Share on other sites

Still, doesn't wait for itself to finish saving the file before it moves on to convert the file

 

im not using any threading

that was only wrapped around a play audio file command

and removed it from being in a thread

 

Rest are just in defines and called when needed

 

but again the stop recording doesn't wait to finish saving file, before I start to convert the file so fails

 

saving direct to mp3 as possible would save a good bit of time instead of wav, or made optional 

Link to post
Share on other sites

Still, doesn't wait for itself to finish saving the file before it moves on to convert the file

 

im not using any threading

that was only wrapped around a play audio file command

and removed it from being in a thread

 

Rest are just in defines and called when needed

 

but again the stop recording doesn't wait to finish saving file, before I start to convert the file so fails

 

saving direct to mp3 as possible would save a good bit of time instead of wav, or made optional 

file lock by command "play sound"

set(#save recording to,"{$special folder("Desktop")}\\Test.wav","Global")
plugin command("Advanced Video.dll", "audio record start")
wait(5)
plugin command("Advanced Video.dll", "audio record stop", #save recording to)
set(#save recording to mp3,$replace(#save recording to,".wav",".mp3"),"Global")
if($file exists(#save recording to mp3)) {
    then {
        delete file(#save recording to mp3)
    }
    else {
    }
}
plugin command("Advanced Video.dll", "audio converter", #save recording to, #save recording to mp3, "")
Link to post
Share on other sites

I understand the lock by the play sound command.  that explains the error originally posted.

 

place in define to start recording

set(#save recording to,"{$special folder("Desktop")}\\Test.wav","Global")


plugin command("Advanced Video.dll", "audio record start")

 

Place in define to stop

plugin command("Advanced Video.dll", "audio record stop", #save recording to)

set(#save recording to mp3,$replace(#save recording to,".wav",".mp3"),"Global")

plugin command("Advanced Video.dll", "audio converter", #save recording to, #save recording to mp3, "")

 

if($file exists(#save recording to)) {

    then {
        delete file(#save recording to)
    }
    else {
    }
}

 

Place the above 2 inside defines.  As a real case of usage and call the defines from 2 buttons, 1 to start recording and 1 to stop recording

It will delete the wave file before it converts it.

 

Meaning it's not waiting for it to be saved to your location before moving on.

Link to post
Share on other sites
  • 4 weeks later...
3.3.4.0 (Warning: Your old code can not be used with the new version of the plugin.)

audio record start: add option "Audio Output Path (.wav)" and "Record Type" for PC sound/Mic/Line In

audio record stop: remove option "Audio Output Path (.wav)" (Move to command audio record start)

Add new sample file

audio record - 22-07-2018.ubot

Link to post
Share on other sites
  • 1 month later...

 

try

plugin command("Advanced Video.dll", "video metadata editor", "{$special folder("Application")}\\Output video converter.mp4", "{$special folder("Application")}\\Output video converter_M.mp4", "title=Track #5
comment=This is redbook CD audio track #5
composer=Willie Royal
artist=Willie & Lobo
album_artist=Willie & Lobo
genre=Game Soundtrack
date=1997")
 
This worked thanks Pash
 
although it ignores the line breaks in text
 
ie It just posts the first line of any text 
 
my text is 
 
"this is a test
 
of write to meta
 
comments 1234"
 
 
 
It will only post the first line
 
this is a test 
 
 
Is there anything i can do to make it work on multi lines?
 
I know you can do it with FFmpeg 
 
I read a bit here about it 
 
 
 
Thanks for your help 

 

Edited by daverawcus
  • Like 1
Link to post
Share on other sites
  • 1 month later...
  • 1 month later...
  • 7 months later...
  • 2 weeks later...

Man please fix  your website, now all licenses  freeze when you try to delete or generate them, and NO it's not a browser issue, it doesn't work for all browser including the new Brave browser

 

fix it man, it's wordpress, not really hard to fix

Link to post
Share on other sites

Man please fix  your website, now all licenses  freeze when you try to delete or generate them, and NO it's not a browser issue, it doesn't work for all browser including the new Brave browser

 

fix it man, it's wordpress, not really hard to fix

I'm sorry. This problem is caused by some machines, I don't understand why as well.

I still can't fix because I'm not an expert. PHP, JavaScript

I try update wp version.
Link to post
Share on other sites
  • 4 months later...
  • 2 months later...
3.3.5.0

video to base64: video to base64 many option "HTML Video", "JavaScript Popup", "JavaScript Video", "JSON", "XML"

Link to post
Share on other sites
  • 1 month later...
  • 1 month later...
Dear customers

Because Google Drive at this time was crazy about identifying multiple files as viruses or abuse. Even plain text files with strange words were identified as abuse.

So I moved the plugin file to OneDrive. You can download the URL from your account.

Link to post
Share on other sites
  • 3 months later...
  • PRO locked this topic
Guest
This topic is now closed to further replies.

×
×
  • Create New...