Can any one let me know what script is this? Just want to get the same script or similar one for live video TV website.

http://www.baani.net/

Dani AI

Generated

A short, practical checklist to determine what that streaming site is actually running. posted the URL and a few people guessed possibilities — noted custom work, mentioned a Joomla-like template system, pointed to script marketplaces, and suggested phpMelody — but guessing is noisy. The steps below are safe, non-invasive ways to confirm whether the site uses a CMS, a packaged video script, or a custom build.

Open the page source (Ctrl+U) and search for obvious markers: a meta generator tag, “powered by” comments, or filesystem strings such as wp-content, templates/, components/ or com_ (these often indicate WordPress/Joomla). Use Developer Tools → Elements/Network and inspect script tags and loaded assets for player libraries (look for filenames containing jwplayer, flowplayer, videojs, or other player names) and for media manifests (.m3u8, .mpd) or .swf/.flv (older Flash/RTMP setups). Those signs tell you the streaming method and whether a known player or a bespoke player is in use.

Basic server/header checks are quick and non-intrusive. For example:

curl -I https://example.com | egrep -i 'server|x-powered-by|set-cookie'

and inspect /robots.txt or any readable README files for clues. Do not attempt login pages, brute forcing, or intrusive scans; stick to public pages and headers.

If those checks show clear CMS clues or vendor strings, that supports the guesses already in the thread. If they’re absent, the site is probably custom or heavily modified. For building a similar site it’s usually safer to replicate the visible features (player type, HLS/DASH, responsive layout) with a maintained player + CMS stack rather than trying to clone an unknown codebase. These steps will reliably tell which path is most likely.

Recommended Answers

All 4 Replies

What script it is? most likely custom built and not a open source cms.

compare with the video scripts on hotscripts.

The Template system looks similar to that of Joomla!, but many scripts have copied their template system, so I can't be sure.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.