Adding text to a video and moving it to another folder can be achieved using various methods. For example, you can try using free online video editors, which offer text overlay features. But as a better solution, I’d recommend checking out https://www.movavi.com/imovie-for-windows/. They offer a range of great app options specifically designed for Windows users, allowing you to add text overlays and export the edited video to your desired folder. It's always good to have multiple options to choose from, so this could be a helpful addition to your video editing toolkit. Good luck with your video editing adventure, and I hope you find a solution that works for you!
Make Server in BAS , like Node Express Server
-
i wan to to try make server , in BAS to direct receive post and get request,
Following is my Code.const express = require('express');
var session = require('express-session');
const bodyParser = require('body-parser');
const app = express();
const port = 3000;
app.use(bodyParser.json());app.post('/next', async (req, res) => {
res.header('Access-Control-Allow-Origin', '*'); // Allow requests from any origin
res.header('Access-Control-Allow-Methods', 'GET, POST, PUT, DELETE');
res.header('Access-Control-Allow-Headers', 'Content-Type, Authorization');aiValue = req.body.ai;
prValue = req.body.pr;
[[EMAIL]] = req.body.ai;
[[PASSWORD]] = req.body.pr;await BAS_FUNCTION( "browserstart", { email : [[EMAIL]] ,password : [[PASSWORD]] })
console.log("Email = > " + aiValue );
res.send("Email : " + [[EMAIL]] + "\n"+"Password : " + [[PASSWORD]]);
});
app.listen(port, () => {
console.log(App listening on port ${port})
});I add Node module and this code write this in Node module in BAS.
i have problem when send post to , it not call functions.
please help me.Thank you
-
@saimraza786 why just not to run node js server not in BAS? set 2 endpoint url's, one to push data on server , and second to retrieve data from server to BAS only by GET request?