White Label Video Players?

Johnathan

New member
Jan 17, 2012
393
5
0
Up
I'm working on this new project and I'm trying to find a reliable video player that'll let me customize the feel, water-tag, and possibly allow me to integrate popular ad networks too.

Anyone got any solutions?

I'm not entirely against paying for one but I do have a budget.
 


Hello Johnathan,

I suggest you to use
mediaelementjs.com
it is very easy to create and design a player.

Videojs has a loop problems so use mediaelements. About watermark, you have to create a script that will convert your videos and add a watermark image or simply you can add the watermark in a program while editing the video.

To make a webm and mp4 video formats easy for your HTML5 player, you can convert your video trough server with following commands:

For mp4:

ffmpeg -y -i inputnamevideo.flv -vcodec libx264 -s 480x270 -acodec libfaac -ab 96k -ac 2 -b 544K -threads 4 -flags +loop -cmp +chroma -partitions 0 -me_method epzs -subq 1 -trellis 0 -refs 1 -coder 0 -me_range 16 -g 300 -keyint_min 25 -sc_threshold 40 -i_qfactor 0.71 -maxrate 10M -bufsize 10M -rc_eq 'blurCplx^(1-qComp)' -qcomp 0.6 -qmin 10 -qmax 51 -qdiff 4 -level 30 outputnamevideo.mp4

and for webm

ffmpeg -i inputnamevideo.flv -vcodec libvpx -r 30 -b 644k -acodec libvorbis -ab 128000 -ar 44100 -ac 2 -s 480x270 outputnamevideo.webm

Please note that you have to install FFMPEG to your server and latest codecs.

Check my test video player:

I hope these informations could help u