XFileSharing Pro - Video Watermark
Video Watermark
Is there a way to add a video watermark like in xvideosharing?
Re: Video Watermark
You can do this in two ways (as far as I know):rhyle0827 wrote:Is there a way to add a video watermark like in xvideosharing?
1 - Get a paid license for Flowplayer or JWPlayer and include a watermark through the player (the video itself doesn't get a watermark, but your player and the embeds do show it).
2 - Modify the ffmpeg code so that a watermark gets added during the encoding process.
In /cgi-bin/enc.pl, find:
Code: Select all
my @rr = `ffmpeg -i $file -y -acodec libfaac -ab $video_sound_kbps -ac 2 -s $size -vcodec libx264 -vpre normal -g 60 -crf $c->{m_e_vid_quality} -threads 0 $c->{upload_dir}/$dx/$code.mp4`;
According to this website you only need to add in a few extra commands.