
Recherche avancée
Médias (16)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (105)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (6330)
-
Find out what people are searching when coming from search engines
7 novembre 2017, par InnoCraft — PluginsAt InnoCraft, we know that SEO is an important topic for most of you. If you have not heard of this term before, SEO stands for Search Engine Optimization. It consists in having your content website visible within the search result pages without paying for ads. SEO is also often referred as “natural” or “organic” traffic.
In SEO, one of the most valuable data to analyze is the keyword used by the visitor to come to your website. Since 2011, major search engines decided to not disclose this data anymore, that’s the reason why you are seeing the “Keyword not defined” data within some of your Piwik reports, also called “not provided” :
Keyword not defined in PiwikThe solution
As your keyword data is collected by search engines, each of them provides the searched keywords within different services such as :
- Google Search Console
- Bing/Yahoo Webmaster tools
- Yandex Webmaster
Those services allow website owners to see how many times their website appeared within the SERP (Search Engine Results Page), how bots are crawling your pages, which search terms they used, and more. The drawback is, that they make take this data available only for a short period, you need to log in to all these services to get the insights you need and you cannot get aggregated overall keyword reports (over all search engines combined).
The solution that gives you all this data in Piwik
Would you like to know what the not defined search keywords in Piwik really are ? Would you like to combine keywords data from major search engines in one place ? Would you like to know how important your website is according to Google and Microsoft Bing and Yahoo ?
At InnoCraft, the company behind Piwik, we created a plugin called “Search Engine Performance Keywords”. With this plugin, you will :
- be able to keep the search terms forever
- save time by crossing data from Google and Bing search within Piwik
- get an overview of how Google and Bing are crawling your site
- monitor search rankings and click-through rates for each keyword
1 – Data ownership & data retention
Once more, it is going back to Piwik roots. As Piwik is a Free software, you own the data you collect. Once the import is successful, you will be able to keep the keywords data as long as you wish. In the case of services such as Google Search Console, they will delete the data after 90 days !! Without our plugin you will not be able to analyze precisely how your SEO is doing month by month, year by year.
2 – Save time by using a single interface
Google and Bing have no interest in gathering data coming from various search engines… we do. As a result, with our plugin you can visualize the data coming from those two sources within a single report in order to analyze your SEO in a better way.
You will not have to use spreadsheets anymore and no chance to miss some important keywords which you would maybe miss when you don’t aggregate them in a single report.3 – Crawl overview check
Both Google and Bing have a crawl “budget”. This budget needs to be optimized in order for search engine bots to consider the most relevant pages. By gathering all the data within Piwik you will have a clear view of how well your website is appreciated by search engines :
4 – Monitor search rankings
The Search Engine Keywords Performance feature allows you to monitor search rankings for a given keyword and see his evolution :
it also gives you the possibility to compare the performances of several keywords in order to see how your website is performing as a whole :
How to get started ?
The “Search Engine Keywords Performance” plugin has been developed by the InnoCraft team as a premium feature.
If you are not sure, note that InnoCraft is offering an unconditional and hassle-free 30-day money back guarantee period.
Once you have installed the plugin, follow the guide in order to have it up and running.
The installation process is not difficult in itself but takes some time as it requires to access to Google and Bing APIs.If you enjoyed this article, you may appreciate the following one about how to integrate ad services to Piwik : Make better online marketing decisions with the AOM plugin.
-
Is It possible to read and define HLS stream key by a vriable instead of stream.key file ?
27 août 2024, par Saeed EisakhaniI encrypted an MP4 video file FFMPEG. That gave me a playlist manifest file (namely stream.m3u8), a key file (namely stream.m3u8.key) and some .ts files. I used code below to play stream.m3u8 file and it worked



 
 <code class="echappe-js"><script src="https://vjs.zencdn.net/7.4.1/video.min.js"></script>



 
<script>&#xA; var player = videojs(&#x27;example-video&#x27;);&#xA; </script>




After I tried to use
input
and select file attributes and I tried code below


 
 
 <code class="echappe-js"><script src="https://vjs.zencdn.net/7.4.1/video.min.js"></script>

 

 
 
 

 
 
 

<script>&#xA; document.getElementById("input").addEventListener("change", function() {&#xA; var media = URL.createObjectURL(this.files[0]);&#xA; &#xA; var vid = document.getElementById("vid");&#xA; vid.src = media;&#xA; &#xA; var video = document.getElementById("video");&#xA; video.style.display = "block";&#xA; video.play();&#xA; &#xA; document.getElementById("demo").innerHTML = vid.src;&#xA; &#xA; var player = videojs(&#x27;video&#x27;);&#xA; //player.play();&#xA; });&#xA; </script>





The code above can read stream.m3u8 playlist file but can not read "key file" because the location of key file is define in stream.m3u8 itself.



When I browse the stream.m3u8 file and try to play, the play window shows the duration (by seconds) but tries and tries and tries to play but can not play. This shows that it can not recall key file.



I believe that if I define key file location out of manifest file, for example inside JavaScript code this problem will be solved.
HOW CAN I DEFINE KEY FILE LOCATION OUT OF PLAYLIST FILE ?


-
Evolution #3692 : Suivre les évolution de MediaJS
29 juin 2017, par - EquipementSur la version 4.2.2 de MediaElement, j’ai constaté les problèmes suivants :
Sous chrome 59, sous Firefox 52.2.0, sous IE 11, la vignette d’une vidéo au format FLV ne s’affiche pas si elle est encodée avec le CODEC FLV1 (par exemple contrib.spip.net/IMG/flv/tgv_record.flv). Le navigateur appelle bien la vignette au niveau réseau, mais le lecteur ne l’affiche pas.
En navigation au clavier, lorsque le focus est sur le gros triangle au centre de la vidéo, la touche entrée (et la barre d’espace) permet de lancer la vidéo, mais si on appuie à nouveau sur la touche entrée (ou la barre d’espace) cela ne met pas la vidéo en pause.
Si le bas de la vidéo est blanc, le contraste entre les boutons et leur fond n’est pas conforme au niveau AA (avec la skin par défaut).