
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 (105)
-
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. -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (11876)
-
Creating video from images with FFmpeg4Android
22 janvier 2014, par DanMI am using this http://androidwarzone.blogspot.in/2011/12/ffmpeg4android.html for implementing what I need.
My code for Creating video from images is :
for (int i = 1; i < 60; i++)
{
commandStr = "ffmpeg -y -r 1/5 -i /sdcard/TApp/Media/"+i+".jpg /sdcard/TApp/Media/out.mp4";
setCommand(commandStr);
runTranscoing();
}And I`m not getting the right result. Why is that ?
-
Revision cb8659981d : Allow arf just before kfs or end of sequence. This will hurt metrics in some ca
11 décembre 2013, par Paul WilkinsChanged Paths :
Modify /vp9/encoder/vp9_firstpass.c
Allow arf just before kfs or end of sequence.This will hurt metrics in some cases (particularly for static
clips at low data rates where there is extra overhead, but it
helps smooth transitions around forced key frames between
stitched kf sections.Change-Id : I7e1026ae0de6c77bba863061e115136d7f283cc0
-
understanding usage of H264 video codec parameters in ffmpeg
7 décembre 2013, par John QualisI am new to PJSIP.
I want to understand which parameters does ffmpeg encoder use from "ffmpeg_codec_desc" parameters in "ffmpeg_vid_codesc.c" in pjmedia ? Suppose we change "ffmpeg_codec_desc" parameters for H264 as follows : for eg. change the resolution from 352, 288 to 576, 432 and change the frame rate from 15 to 20 but keep max and avg bit rates to 128000.Which H264 parameters does ffmpeg use to produce a H264 stream ? And what is the relationship between resolution, frame rate and bit rate ?
Any input is much appreciated