
Recherche avancée
Médias (3)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (38)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
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 (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (4782)
-
Switch to Matomo for WordPress from Google Analytics
-
Anomalie #3418 : Les tables des plugins ne s’installent pas
19 avril 2015, par Franck DalotSPIP 3.1.0-alpha [21978]
J’ai également fait des tests en modifiant .ovhconfig
J’ai fait des copies d’écran de ce qui me semble changeant dans "configure command"php 5.3 (test1)
= ok (mais j’ai dû me reprendre à plusieurs reprise pour avoir la liste de tous les plugs compatibles)
app.engine=phpcgi
app.engine.version=5.3
http.firewall=none
environment=developmentphp 5.3 (test2)
= Bizarrement, cela à quand même fonctionné une fois, mais après, impossible d’avoir les tables d’agenda
app.engine=php
app.engine.version=5.3
http.firewall=none
environment=developmentphp 5.4 (test3)
= ok
app.engine=php
app.engine.version=5.4
http.firewall=none
environment=developmentphp 5.4 (test4)
= ok
app.engine=phpcgi
app.engine.version=5.4
http.firewall=none
environment=developmentphp 5.6 (test5)
= Les tables d’agenda ne s’installent pas
app.engine=php
app.engine.version=5.6
http.firewall=none
environment=developmentphp 5.6 (test6)
= ok
app.engine=phpcgi
app.engine.version=5.6
http.firewall=none
environment=development -
Programmatically capturing video with the FFmpeg libaries (not the libav fork) with variable frame rate in c++
13 avril 2015, par BenI am working on a simulator in c++ and OpenGL and I wanted to add some video capture capabilities (cross platform would be a requirement here). I decided to work with FFmpeg since I can directly put my rendered frames into a video. So far so good, but in a 3D rendering engine you are usually far from having a constant frame rate and I think that it is not a good idea to go constant there. Therefore I am trying to figure out how to capture a variable frame rate video with FFmpeg or how to get from my variable frame rate of the simulator to a constant frame rate for the video in FFmpeg. Can anybody help me out here ? How are videos usually captured in variable frame rate environments ?