
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (96)
-
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 (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
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 (8124)
-
FFMPEG - Chaining commands for time lapse, size, and h.264 recursively through a directory
11 novembre 2015, par jasonjasonfriedWorking on converting videos over a directory structure. Currently I tried this :
for i in *.mov; do
ffmpeg -i "$i" -filter:v "setpts=0.1*PTS" -an -c:v libx264 -preset slow -crf 20 -c:a libvo_aacenc -b:a 128k "${i/-lapse.mov}"
doneDidn’t get to the resizing but already realize this won’t work this way.
Trying to make it work in this order : Timelapse video, convert size to X x Y, and make sure quality is decent.Haven’t worked too much with FFMPEG so any help is appreciated.
thanks.
-
Difference between MPEG-TS and RTP for H.264 (.mp4) video streaming ?
6 avril 2022, par CandySo I am trying to stream a H.264 (.mp4) video over ETHERNET using the ffmpeg tool. I have read a little about transport of H.264 video over ethernet and have learnt that there are two methods ; mpeg-ts and RTP (both over UDP). I have been able to stream the .mp4 video through both methods in ffmpeg (over localhost) and haven't noticed any difference in quality or latency as such. What is the difference in concept and efficiency between the two protocols for transportation of video ? Or am I mixing two different concepts ? Any help is appreciated !


-
Anomalie #3566 : Restaurer une révision ne restaure pas toujours tous les champs modifiés
10 octobre 2016, par marcimat ☺☮☯♫Je confirme que ça remarche (et parfaitement avec la nouvelle fonction) en remettant l’appel à auteur_associer() après le pipeline post_edition.
Le problème se situe donc bien à ce niveau. Il va falloir trouver comment permettre de dire à Révisions de lever le flag plus tôt que post_insertion… avant donc le passage à pre_insertion_liens ;ou réussir à lui faire lever ce flag dans pre_insertion_liens en transmettant un paramètre indiquant que c’est le premier lien ici (mais ça ferait passer ce paramètre de auteur_associer() jusqu’au pipeline dans un grand nombre de fonction. Pas idéal non plus.
Un pipeline trig_insertion() juste après l’obtention de l’identifiant ? …