FlashIsDead-LongLiveToFlash

[FR] remplace les applets flash par un joli tag <audio> pour écouter les morceaux depuis le navigateur

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name      FlashIsDead-LongLiveToFlash
// @namespace https://greasyfork.org/users/4785
// @author    nil
// @version   0.7
// @grant     none
// @description    [FR] remplace les applets flash par un joli tag <audio> pour écouter les morceaux depuis le navigateur
// @include        http://www.editions-musicales-chardonnieras.fr/styles.html
// @include        http://www.editions-musicales-chardonnieras.fr/bonus.html
// @include        http://jpzico.eklablog.com/*
// ==/UserScript==

// http://www.editions-musicales-chardonnieras.fr/styles.html
(function emc_myinit() {
  function changeSWFtoAudioTag() {
    // playback
    var xpathExpression = '//object[@type = "application/x-shockwave-flash"][starts-with(@data, "dewplayer.swf?mp3=mp3-play-back/")]';
    var xpathResult = document.evaluate( xpathExpression, document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
    for (var node, i = 0; node = xpathResult.snapshotItem(i); i++) {
      var relative_url = node.getAttribute("data").substr(18);
      node.parentNode.innerHTML = "<audio controls=controls preload=none src='" + relative_url + "' type='audio/mpeg' >Your browser does not support the audio element.</audio>";
    }

    // extrait
    xpathExpression = '//object[@type = "application/x-shockwave-flash"][starts-with(@data, "dewplayer.swf?mp3=")]';
    var xpathResult = document.evaluate( xpathExpression, document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
    for (var node, i = 0; node = xpathResult.snapshotItem(i); i++) {
      var relative_url = node.getAttribute("data").substr(18);
      node.parentNode.innerHTML = "<audio controls=controls preload=none src='" + relative_url + "' type='audio/mpeg' >Your browser does not support the audio element.</audio>";
    }
  }
  
  // return if not on www.editions-musicales-chardonnieras.fr
  if ("www.editions-musicales-chardonnieras.fr" !== location.host) return;
  
  // https://developer.mozilla.org/fr/docs/Web/API/MutationObserver
  // Selectionne le noeud dont les mutations seront observées
	var result_elt = document.getElementById('result');

	// Options de l'observateur (quelles sont les mutations à observer)
	var config_obs = { attributes: true, attributeFilter: [ "class" ] };

	// Fonction callback à éxécuter quand une mutation est observée
	function callback_obs(mutationsList) {
    for(var mutation of mutationsList) {
			if (mutation.type == 'attributes' && ! /wait/.test(result_elt.className)) {
        //console.log("attr change");
        changeSWFtoAudioTag();
    	}
    }
	};

  // Créé une instance de l'observateur lié à la fonction de callback
  var observer = new MutationObserver(callback_obs);

  // Commence à observer le noeud cible pour les mutations précédemment configurées
  observer.observe(result_elt, config_obs);
})();

// http://jpzico.eklablog.com/
(function jpzico_myinit() {
  function changeSWFtoAudioTag() {
    // playback
    var xpathExpression = '//object[@type = "application/x-shockwave-flash"][@data = "/data/misc/players/player_mp3_maxi.swf"]';
    xpathExpression += '/param[@name = "flashvars"][starts-with(@value, "mp3=http")]';
    // &width=300*
    var xpathResult = document.evaluate( xpathExpression, document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
    for (var node, i = 0; node = xpathResult.snapshotItem(i); i++) {
      var url = node.getAttribute("value").substr(4);
      url = decodeURIComponent(url.substr(0, url.indexOf("&")));
      node.parentNode.parentNode.innerHTML = "<audio controls=controls preload=none src='" + url + "' type='audio/mpeg' >Your browser does not support the audio element.</audio>";
    }
  }
  
  // return if not on jpzico.eklablog.com
  if ("jpzico.eklablog.com" !== location.host) return;
  
  changeSWFtoAudioTag();
})();