mirror of
https://gitlab.rlp.net/proj-wise2526-video2document/video2document.git
synced 2026-06-15 18:01:52 +02:00
13 lines
616 B
JavaScript
13 lines
616 B
JavaScript
module.exports = {
|
|
name:"Startup_function",
|
|
async function(){
|
|
// Put any code here that you want to be executed on startup
|
|
|
|
// We are now calling the example function from the example folder
|
|
mapFunctions.get("example").function("Startup")
|
|
|
|
// mapFunctions.get("extraction-video-to-audio").function({inputVideoPath:"./a.mp4", outputType:"wav"})
|
|
// mapFunctions.get("extraction-video-to-audio").function({inputVideoPath:"./b.mp4", outputType:"wav"})
|
|
// mapFunctions.get("extraction-video-to-audio").function({inputVideoPath:"./b.mp4", outputType:"flac"})
|
|
}
|
|
} |