
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 (59)
-
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 ;
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)
Sur d’autres sites (5946)
-
clappr - how to increase request timeout - currently only 10 seconds
24 mars 2016, par momoHow can I increase the clappr hls request timeout ? Currently it is 10 seconds which is too little for me.
In hls.js there is a setting for increasing this, in clappr i can’t find one.
The reason if you need to know is that the request comes in and then I connect with ffmpeg and for hls, if the segment time is 10s that’s what you need to wait initially.
Also, is this the forum for clappr ?
-
Anomalie #4233 (En cours) : [core & plugin todo] : code HTML généré non valide :
18 novembre 2018, par b bIci on cause des bugs du core, donc il serait certainement plus approprié de signaler le bug dans le forum de la doc du plugin sur contrib ou sur la liste spip-zone avant d’ouvrir un ticket ;)
Amha, on peut fermer le ticket, et on verra s’il faut l’ouvrir de nouveau après confirmation que c’est bien un bug du core.
-
What are the correct conversion steps to generate a video from PDF with ffmpeg and mp4box
25 juin 2020, par Michael RallI need to convert a PDF-Document to a DASH-compatible stream. Every page of the PDF should be displayed for one second. Quality should be rather good, so that text and line graphics can still be read clearly. Additionally I want to be able to seek every page, so keyframes(?) should be (exactly) every second.


Im using poppler-tools to extract the pdf-pages as png's -> works


Im using ffmpeg to convert the single images to an x264 encoded mp4 video -> works (but maybe problematic)


string.Format("-r 1 -i \"{0}.page_%d.png\" -r 24 -vcodec libx264 -pix_fmt yuv420p {0}.output.mp4", basePath)



Im using MP4Box to convert that video to dash -> works (but needs improvement)


string.Format("-dash 1000 -frag 1000 -rap -segment-name {1}_dash_$RepresentationID$_$Number$ -url-template {0}.output.mp4 -out \"{0}.{2}\"", basePath, tempDataId, STREAM_MANIFEST_FILE_POSTFIX)



Now I have 2 Problems/Questions


- 

- Are the settings for framerate, quality, outputformat correct for the goals I want to achieve
- When displaying the resulting DASH-Stream in the Demo-Player from https://github.com/Dash-Industry-Forum/dash.js/wiki it plays the stream, but as soon as I try to seek the player starts loading forever. Setting the position to start and let it play again works. The network tab in my browser-debugger shows that the player tries to load the segments and gets them successfully.






I guess its a problem with keyframes, fragments or similar. Can somebody correct my conversion steps ?


kind regards