[Quest] FFMPEG alternative?

Alex0808

BANNED
Joined
May 24, 2019
Messages
378
Reaction score
151
I have no back ground in programming.

I watched several videos but didn't get the idea.
Please tell me some free alternative to FFMPEG to watermark multiple videos in one go.
 
aoao video watermark pro. i've used this software for porn reupload. works perfect.
 
aoao video watermark pro. i've used this software for porn reupload. works perfect.
Yeah,
I searched for its crack online a lot but couldn't find
Please share this soft. With me / Or some link to its crack
 
Here is a script I wrote to watermark every video in a folder:

Code:
#grab all the mp4 files in the folder
$files = Get-ChildItem "E:\videos\queue\" -Filter *.mp4

#loop through the list of files and watermark each
for ($i=0; $i -lt $files.Count; $i++) {
    $input_name = $files[$i].name
    $output_name = "E:\videos\done\new_" + $input_name
    
    ffmpeg -i $files[$i].FullName -vf drawtext="fontfile=OpenSans-Regular.ttf :text='Visit Example.com': fontcolor=white: fontsize=24: x=(w-text_w-15): y=(h-text_h-15)" -codec:a copy $output_name
}

Requirements:
1.Powershell
2. Download and install ffmpeg from here
3.Font file. I used Open Sans, it can be downloaded from here

Set up:
copy and paste the code in a file with the .ps1 extension. eg: watermark.ps1
Change line 2 and 7 with the location of your files and where you want the results
open a PowerShell window in the folder. Can be done with CTRL+SHIFT+RIGHT CLICK, or search for it in windows search.
run the script by typing "./filename.ps1"

This script watermarks the text with fontsize 24, at the bottom right of the video.
 
All bulk editing software used ffmpeg at core 'cause it's works good.
Above shared script looks good - Try that and if you get any error, let us know.
 
All bulk editing software used ffmpeg at core 'cause it's works good.
Above shared script looks good - Try that and if you get any error, let us know.
https://imgur.com/82YXFOe
https://imgur.com/MepHcO1

Followed above steps and got this
 
Have you looked at the folder names? As it doesn't seem that. You are trying to execute a script located in another folder.
 
Have you looked at the folder names? As it doesn't seem that. You are trying to execute a script located in another folder.
Script is into the folder containing videos

Where it should be?
 
Script is into the folder containing videos

Where it should be?
1. The font file should be in the .ttf format. Unzip the archive you downloaded and place the font file in the folder.

2. Navigate to the folder in powershell by typing: "cd C:\Newfolder" and press Enter
3. Run the script by typing "./pp.ps1" NOT "pp.ps1"
 
1. The font file should be in the .ttf format. Unzip the archive you downloaded and place the font file in the folder.

2. Navigate to the folder in powershell by typing: "cd C:\Newfolder" and press Enter
3. Run the script by typing "./pp.ps1" NOT "pp.ps1"


Still https://imgur.com/a/KFERZv4
 
Because you saved pp.ps1 as a text file...

In file explorer, go the the "view" tab at the top
in the "show/hide" section...check "file name extensions"
edit pp.ps1.txt and remove the ".txt"
Also since you are using OpenSans-ExtraBold, replace OpenSans-Regular in the script file with it.
Now getting this https://imgur.com/a/GWt4rcP
 
There are graphical user interfaces for ffmpeg
github.com/amiaopensource/ffmpeg-amia-wiki/wiki/3)-Graphical-User-Interface-Applications-using-FFmpeg
 
Boy, you need to learn...a LOT. Have you placed the ffmpeg executable in the same folder with the script? Those things...can be debugged by yourself if you are smart. It doesn't need knowledge of programming or something else.

You didn't even bothered to read the error messages. It clearly says, ffmpeg not recognized, check filename, spelling, etc.

Place ffmpeg.exe in the same folder with your script. And after you get it working, the best advice I can give you is to have different folders for your script, what you process and what was processed (avoid file rewritting). You will figure out!
 
Last edited:
Next time you get an error, google it before posting here.

Find the location of ffmpeg.exe and add it to the PATH variable. You can google "add location to path windows"

Place ffmpeg.exe in the same folder with your script.

I don't think moving the exe file in the same folder works for powershell, that would only work in cmd, so he'd need a batch script for that.
 
Next time you get an error, google it before posting here.

Find the location of ffmpeg.exe and add it to the PATH variable. You can google "add location to path windows"



I don't think moving the exe file in the same folder works for powershell, that would only work in cmd, so he'd need a batch script for that.
Boy, you need to learn...a LOT. Have you placed the ffmpeg executable in the same folder with the script? Those things...can be debugged by yourself if you are smart. It doesn't need knowledge of programming or something else.

You didn't even bothered to read the error messages. It clearly says, ffmpeg not recognized, check filename, spelling, etc.

Place ffmpeg.exe in the same folder with your script. And after you get it working, the best advice I can give you is to have different folders for your script, what you process and what was processed (avoid file rewritting). You will figure out!
Successfully water marked.

Thank you
 
Here is a script I wrote to watermark every video in a folder:

Code:
#grab all the mp4 files in the folder
$files = Get-ChildItem "E:\videos\queue\" -Filter *.mp4

#loop through the list of files and watermark each
for ($i=0; $i -lt $files.Count; $i++) {
    $input_name = $files[$i].name
    $output_name = "E:\videos\done\new_" + $input_name
   
    ffmpeg -i $files[$i].FullName -vf drawtext="fontfile=OpenSans-Regular.ttf :text='Visit Example.com': fontcolor=white: fontsize=24: x=(w-text_w-15): y=(h-text_h-15)" -codec:a copy $output_name
}

Requirements:
1.Powershell
2. Download and install ffmpeg from https://ffmpeg.zeranoe.com/builds/
3.Font file. I used Open Sans, it can be downloaded from https://fonts.google.com/specimen/Open+Sans?selection.family=Open+Sans

Set up:
copy and paste the code in a file with the .ps1 extension. eg: watermark.ps1
Change line 2 and 7 with the location of your files and where you want the results
open a PowerShell window in the folder. Can be done with CTRL+SHIFT+RIGHT CLICK, or search for it in windows search.
run the script by typing "./filename.ps1"

This script watermarks the text with fontsize 24, at the bottom right of the video.
I can request code bruh?
 
Back
Top