Hello,
I want to build my own Intro video so any one suggest me some script or web site that provide this free feature but not include his brand name.
Thank You.
Hello,
I want to build my own Intro video so any one suggest me some script or web site that provide this free feature but not include his brand name.
Thank You.
A practical, watermark‑free approach is to self‑host the video assets and either use the native HTML5 <video> element or a lightweight open‑source player that is hosted locally. As pointed out, an embeddable player is one option, and ’s suggestion to look for open‑source players is on target—hosting the player files yourself prevents external services from inserting branding.
A minimal, robust pattern (HTML5) for an intro that works across browsers and supports accessibility:
<video controls playsinline muted poster="intro-poster.jpg" width="640">
<source src="intro.mp4" type="video/mp4">
<source src="intro.webm" type="video/webm">
<track kind="captions" srclang="en" src="intro.vtt" label="English">
Your browser does not support the video tag.
</video> Notes: muted is required for most browsers to allow autoplay; poster gives a fallback image; provide both MP4 (H.264/AAC) and WebM for compatibility; include captions for accessibility.
Recommended workflow and quick commands (encoding with ffmpeg):
ffmpeg -i source.mov -c:v libx264 -crf 23 -preset medium -c:a aac -b:a 128k intro.mp4
ffmpeg -i source.mov -c:v libvpx-vp9 -b:v 0 -crf 30 -c:a libopus intro.webm Practical tips and traps to avoid: keep intros short (3–8s) and muted or provide a clear skip control; optimize bitrate to keep file size low; ensure the server sends correct MIME types (video/mp4, video/webm) and supports range requests; watch for cross‑origin restrictions if files are on a different domain. If a zero‑setup hosted service is tempting, verify whether its free tier adds branding—self‑hosting or hosting an open‑source player locally is the only reliable way to guarantee no third‑party logo appears.
Jump to Post— cereal 1,524Try video.js: http://www.videojs.com/ it is open source.
You can use what cereal suggested, http://www.videojs.com or just try googling it. There are many free open sourced html, php, javascript, etc... players that you can embed into your website.
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.