watermark for each photo and videos on website
Hi Guys,
Is there any app that can add watermark of website name and username like una @username.
If not then can anyone create this ..
thanks and regards,
travis k
-
- · MyZoid
- ·
travis k this is just for photos watermark pro >> https://una.io/page/view-product?id=217 <<
-
-
-
- · MyZoid
- ·
travis k MSolutions May be able to help MSolutions id make it an add on for the watermark pro
Edit: or make a 2nd app for video watermarking and make a package deal with both in it for a cheaper price than buying both separate
just a few ideas
MyZoid.
-
- · frdji70
- ·
easy watermark for videos
/inc/classe/BxDolTransconderVideo.php
replace "protect function applyFilter ($sFile, $aParams, array (
for
protected function applyFilter_Mp4 ($sFile, $aParams) { return $this->_convertVideo($sFile, $sFile, '.mp4', $aParams, array ( 'strict' => 'experimental', 'vcodec' => 'libx264', 's' => $this->_getOptionSizeForVideo ($sFile, $aParams), 'b:v' => isset($aParams['video_bitrate']) ? $aParams['video_bitrate'] . 'k' : '512k', 'movflags' => '+faststart', 'acodec' => 'aac', 'ar' => '44100', 'b:a' => isset($aParams['audio_bitrate']) ? $aParams['audio_bitrate'] . 'k' : '128k', 'pix_fmt' => 'yuv420p', 'vf' => "drawtext=text='votrewatermark':fontcolor=white:fontsize=24:x=w-tw-10:y=h-th-10" )); }For webm
protected function applyFilter_Webm ($sFile, $aParams) { return $this->_convertVideo($sFile, $sFile, '.webm', $aParams, array ( 's' => $this->_getOptionSizeForVideo ($sFile, $aParams), 'b:v' => isset($aParams['video_bitrate']) ? $aParams['video_bitrate'] . 'k' : '512k', 'acodec' => 'libvorbis', 'ar' => '44100', 'b:a' => isset($aParams['audio_bitrate']) ? $aParams['audio_bitrate'] . 'k' : '128k', 'pix_fmt' => 'yuv420p', 'vf' => "drawtext=text='votrewatermark':fontcolor=white:fontsize=24:x=w-tw-10:y=h-th-10" )); }this is to include your site name on the video encoding. Replace your watermark with the desired text