Find out if your music will be turned down by YouTube, Spotify, TIDAL, Apple Music and more. Discover your music's Loudness Penalty score, for free.
Your file will not be uploaded, stored or shared, meaning this process is secure and anonymous.
We all hate sudden changes in loudness - they're the #1 source of user complaints.
To avoid this and save us from being "blasted" unexpectedly, online streaming services measure loudness, and turn down music recorded at higher levels. We call this reduction the "Loudness Penalty" - the higher the level your music is mastered at, the bigger the penalty could be. But all the streaming services achieve this in different ways, and give different values, which makes it really hard to know how big the Loudness Penalty will be for your music...
Until now.
Simply select any WAV, MP3 or AAC file above, and within seconds we'll provide you with an accurate measurement of the Loudness Penalty for your music on many of the most popular music streaming services, and allow you to preview how it will sound for easy comparison with your favorite reference material.
Your file will not be uploaded, meaning this process is secure and anonymous.
Do you have any questions? Get in touch.
Get a detailed report for this file, plus a short series on optimizing for streaming.
Analyze another filevar player = videojs('my-video', { html5: { hls: { overrideNative: true } } }); Use code with caution. javascript
To resolve this, you need to update how you access the streaming technology object and how you configure your player options. 1. Update Programmatic Access var player = videojs('my-video', { html5: { hls:
var player = videojs('my-video', { html5: { vhs: { overrideNative: true } } }); Use code with caution. Why the Change Happened Update Configuration Options VHS is bundled by default
var player = videojs('my-video'); player.ready(function() { // Use .vhs instead var vhs = player.tech().vhs; if (vhs) { console.log(vhs.playlists.master); } }); Use code with caution. 2. Update Configuration Options if (vhs) { console.log(vhs.playlists.master)
VHS is bundled by default in Video.js 7 and 8 , offering improved cross-browser compatibility and features like low-latency HLS . Potential "Undefined" Issues
If your JavaScript code manually accesses the HLS object to change quality levels, tracks, or metadata, change hls to vhs . javascript
Since Video.js 7, the player uses a unified engine called (Video.js HTTP Streaming) to handle both HLS and DASH streams. This change ensures a more consistent API regardless of the streaming protocol being used. How to Fix the Deprecation Warning