
Recherche avancée
Autres articles (108)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (15965)
-
Anomalie #2875 : Problème dans Edition > Rubriques
12 mars 2013, par - EquipementBonjour, Le problème se produit sous SPIP 3.0.5 avec le plugin CIRR et il ne se produisait pas avec le plugin CIRR sous SPIP 2.1. Le plugin CIRR surcharge, via CIAUTORISER, la fonction d’autorisation de voir une rubrique, afin qu’un administrateur restreint ne puisse voir que ses rubriques. (...)
-
Anomalie #4224 (Fermé) : Datepicker et mediabox d’edition de documents
15 novembre 2018, par George KandalaftLe datepicker n’affiche pas le calendrier en avant plan dans la mediabox de modification des documents. Ca vient du z-index dans /prive/themes/spip/forms.css :
#ui-datepicker-div z-index : 1001 !important ;Il faut au moins un z-index de 10000 pour que le calendrier apparaisse.
-
Did not locate the video track for seeking
5 novembre 2018, par Bruce YoungI using android MediaPlayer to play some audios.It’s works 100% fine with the method seekTo() in some format like m4a(ffmpeg show the media info below) :
normal is the audio file nameBut when I use other format like matroska,webm,the seekTo()method always fail !(ffmpeg show the media info below)
seekbad is the audio file name
Okay,when the seekTo() fail the android studio console show some logs like this :
11-05 11:07:00.815 763-22357/? E/MatroskaExtractor: Did not locate the video track for seeking
Than I google the logs and find out the sourcecode in google git :
https://android.googlesource.com/platform/frameworks/av/+/304ef91624e12661e7e35c2c0c235da84a73e9c0/media/libstagefright/matroska/MatroskaExtractor.cppIn MatroskaExtractor.cpp some code like this :
// Always *search* based on the video track, but finalize based on mTrackNum
if (!pTP) {
ALOGE("Did not locate the video track for seeking");
return;
}I do not know why my media file ’Did not locate the video track for seeking’,Does anybody know it,Thanks a lot !