Hi
I am designing my first musicians website and need to find out what media player or players I can install on the website so that visitors can hear the musician's music and also vidoes. Long Tail video's JW payers seem like a solution but I don't anything about these. Has anyone any suggestions :)

geoff

Dani AI

Generated

This thread shows the classic 2009 split between plugin-era solutions and simple embeds. Thanks to useful pointers from , and , the original options are visible — but the web moved on: browser plugins (Flash, NPAPI players) have been retired and native HTML5 media is the reliable, long‑term path. (adobe.com)

Practical workflow (capture → encode → publish): keep your original files, then produce web‑friendly versions—an MP4 (H.264 video + AAC audio) for widest compatibility, plus a WebM/Opus (or newer codecs) as a modern fallback. Use a batch tool like FFmpeg for conversions; example commands:

ffmpeg -i input.mov -c:v libx264 -crf 23 -preset medium -c:a aac -b:a 128k output.mp4

ffmpeg -i input.mov -c:v libvpx-vp9 -b:v 0 -crf 30 -c:a libopus output.webm

These formats and containers are covered in browser media guides and FFmpeg docs. (developer.mozilla.org)

Embedding and UX: prefer a simple HTML5 player with multiple <source> fallbacks and a <track> for captions/transcripts; include playsinline for mobile, preload="metadata" and poster images, and avoid autoplaying sound (modern browsers block or restrict autoplay). Provide a transcript/download link and visible controls so users always have a clear way to start playback. Example markup:

<video controls playsinline preload="metadata" poster="thumb.jpg">
  <source src="video.mp4" type="video/mp4">
  <source src="video.webm" type="video/webm">
  <track kind="captions" src="captions_en.vtt" srclang="en" label="English">
  <!-- fallback link -->
  Your browser does not support the video tag.
</video>

Autoplay rules and caption requirements affect behavior and accessibility; add synchronized captions to meet accessibility guidance. (developer.mozilla.org)

Hosting choices depend on goals: use YouTube/Vimeo to save bandwidth and get reliable mobile playback, or self‑host behind a CDN (and a signed‑URL/paygate) for sales/control. For a first musician site (as later tried), embedding hosted videos and adding a simple PayPal/buy button or a music storefront is often the fastest, lowest‑risk route. (developer.mozilla.org)

Recommended Answers

All 9 Replies

w3schools -

Thanks Peter :)

If you can I would convert the videos to .flv format. If you are stick with .mov, .wmv, or .avi formats then use the embed code for Quicktime or WMP (Windows Media Player).

If you can I would convert the videos to .flv format. If you are stick with .mov, .wmv, or .avi formats then use the embed code for Quicktime or WMP (Windows Media Player).

Thanks Reliable,
I have the videos in .mov and the audio in .wav format. I should be able to convert the video to .flv format as I can afford to buy additional software if necessary. The .mov recordings do look good in the Quicktime player. And are created by my digital camera but I could shoot new location video in digital and then convert it, if that would be better.

When it comes to multimedia presentation Flash is the often the best choice. If you converted your movie to .flv, and either embedded that in a flash movie or streamed it into your flash player and embedded that in your website that would probably work best for you. If you don't already have Flash I would not spend the money if this is one time shot. Just get the embed code for Quicktime since your video is in .mov and put it on your website. If however, you are going to make constant use of it, Flash is a wise investment.

When it comes to multimedia presentation Flash is the often the best choice. If you converted your movie to .flv, and either embedded that in a flash movie or streamed it into your flash player and embedded that in your website that would probably work best for you. If you don't already have Flash I would not spend the money if this is one time shot. Just get the embed code for Quicktime since your video is in .mov and put it on your website. If however, you are going to make constant use of it, Flash is a wise investment.

Thanks Reliable that's very useful information. :)

mov is OK, you don't need to convert it to other format. As for me, I use Moyea Web Player, which also supports mov playing on website. It is a good flash video player creator. You can try it.

mov is OK, you don't need to convert it to other format. As for me, I use Moyea Web Player, which also supports mov playing on website. It is a good flash video player creator. You can try it.

Thanks for that advice dream party. I have bought Adobe CS3 Design Premium which has the Flash program for just over 250GBP. So I'll just have to learn how to use it :)

Geoff

Thanks Bastek

Interesting product rather expensive though. At present I haven't progressed to learning to use Flash but I am uploading video to youtube and embedding on my websites.

I have yet to come to grips with understanding what I get from buying one of the products on offer. I also bought an HTML template that enables video and aural recordings to be played and bought via a Paypal account. This might be the solution for me.

Geoff

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.