GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Webmaster Q & Fuckin' A (https://gfy.com/forumdisplay.php?f=27)
-   -   Xvideos watermark and ffmpeg (https://gfy.com/showthread.php?t=1128871)

Ruen 12-17-2013 04:46 AM

Xvideos watermark and ffmpeg
 
Is it possible to get this effect using FFMPEG?

arena18 12-18-2013 02:34 AM

http://stackoverflow.com/questions/1...t-command-work

Ruen 12-18-2013 06:59 AM

Thank you arena

Ruen 03-13-2014 11:55 AM

We tried as per the instructions there but it makes ffmpeg error out.

JetBlack 03-13-2014 12:05 PM

Have you considered an encoding SAAS?

arena18 03-13-2014 12:09 PM

Quote:

Originally Posted by Ruen (Post 20014200)
We tried as per the instructions there but it makes ffmpeg error out.

Can you post error log and ffmpeg command you tried?

Ruen 04-10-2014 03:06 PM

We got it to work but were unable to change the font, and were unable to change what time the watermark shows up in the video.


Current code:

Code:

/usr/local/bin/ffmpeg -i "test.wmv" -acodec libfaac -keyint_min 20 -r 20 -vcodec libx264 -crf 25 -b 1000k -bt 1000k -y -bf 16 -threads 0 -vf drawtext="fontfile=includes/captchaFont.ttf:text='website':fontsize=15:fontcolor=white:x=w-30*t:y=10" "test.mp4"

eodiv 04-10-2014 03:08 PM

That scrolling watermark makes my blood boil every time I see it. Don't do it, man!

TFCash 04-11-2014 02:55 PM

Quote:

Originally Posted by eodiv (Post 20045513)
That scrolling watermark makes my blood boil every time I see it. Don't do it, man!

They do it to keep people from ripping the videos and blurring out the watermark. I mean really if your going to be viewing free porn videos, you should have too put up with the scolling watermark :1orglaugh

karolinaboy 04-14-2014 04:17 PM

Quote:

Originally Posted by hardcorehosting (Post 20046928)
They do it to keep people from ripping the videos and blurring out the watermark. I mean really if your going to be viewing free porn videos, you should have too put up with the scolling watermark :1orglaugh

I can vouch for that. Do it anyway.

arena18 04-14-2014 08:45 PM

Quote:

Originally Posted by Ruen (Post 20045511)
We got it to work but were unable to change the font, and were unable to change what time the watermark shows up in the video.


Current code:

Code:

/usr/local/bin/ffmpeg -i "test.wmv" -acodec libfaac -keyint_min 20 -r 20 -vcodec libx264 -crf 25 -b 1000k -bt 1000k -y -bf 16 -threads 0 -vf drawtext="fontfile=includes/captchaFont.ttf:text='website':fontsize=15:fontcolor=white:x=w-30*t:y=10" "test.mp4"

The drawtext video filter has timeline editing support. This can evaluate an expression and allows you to provide the time(s) of when the filter should be enabled.

This example will enable the filter from 20 seconds to 2 minutes
Code:

ffmpeg -i input_file.mp4 -vf "drawtext=enable='between(t,20,2*60)':fontfile=/usr/share/fonts/truetype/impact.ttf: text='Mywebsite.com Test'" -acodec copy output.mp4
The audio was stream copied in this example

Note: for font try absolute path


All times are GMT -7. The time now is 09:52 PM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc