
Recherche avancée
Médias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Paul Westerberg - Looking Up in Heaven
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Le Tigre - Fake French
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Thievery Corporation - DC 3000
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Dan the Automator - Relaxation Spa Treatment
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Gilberto Gil - Oslodum
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (101)
-
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 -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)
Sur d’autres sites (7600)
-
build-ffmpeg.sh bad variable name
25 octobre 2016, par Alex KomboI have added the library to my project successfully but after replacing the Android media player with the
FFmpegMediaPlayer
and trying to build and run the project, I get the following error ::library:buildFFmpeg
/home/kombo/Radio Africa/Music Player/library/src/main/scripts/build-ffmpeg.sh: 4: export: Africa/Music: bad variable name
FAILED
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':library:buildFFmpeg'.
> Process 'command '/home/kombo/Radio Africa/Music Player/library/src/main/scripts/build-ffmpeg.sh'' finished with non-zero exit value 2
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
BUILD FAILED
Total time: 34.148 secsHow can I solve tackle this since removing the
build-ffmpeg.sh
file doesn’t look like an option. -
want to play m3u8 with hls.js and vue.js
21 octobre 2020, par tomo1127I'm trying to play m3u8 with hls.js and vue.js on codesandbox.


I made m3u8 useing ffmpeg like this.


ffmpeg -i movie1.mp4 -vcodec libx264 -s 1280x720 -strict experimental -acodec aac -b:a 96k -flags +loop-global_header -vbsf h264_mp4toannexb -f segment -segment_format mpegts -segment_time 10 -segment_list mav.m3u8 mav_%04d.ts



The Error from codesandbox say
** The error you provided does not contain a stack trace. **


Aslo I could play mp4 or youtube but not m3u8.


Here is my code


<template>
 <div>
 

 <p>window height: {{ height }}</p>
 </div>
</template>

<code class="echappe-js"><script>&#xA;import Hls from "hls.js";&#xA;&#xA;export default {&#xA; data() {&#xA; return {&#xA; hls: new Hls(),&#xA; height: window.innerHeight,&#xA; };&#xA; },&#xA; methods: {&#xA; playVide() {&#xA; this.height = window.innerHeight;&#xA; const video = document.getElementById("video");&#xA;&#xA; if (Hls.isSupported()) {&#xA; this.hls = new Hls();&#xA; this.hls.loadSource(&#xA; "SAMPLE.m3u8"&#xA; );&#xA; this.hls.attachMedia(video);&#xA; setTimeout(() => {&#xA; video.play();&#xA; }, 1000);&#xA; }&#xA; },&#xA; },&#xA; mounted() {&#xA; window.addEventListener("scroll", this.playVide);&#xA; },&#xA;};&#xA;</script>



I'm not sure this is happen because how I use ffmpg or how I code hls.js


-
rtsp : warning when max_delay reached
15 septembre 2015, par Eloi BAILrtsp : warning when max_delay reached
packets are queued due to packet reordering until the queue reach its
maximal size or max delay is reached.
This commit adds a warning trace when max delay is reached.Signed-off-by : Eloi BAIL <eloi.bail@savoirfairelinux.com>
Signed-off-by : Martin Storsjö <martin@martin.st>