
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 (52)
-
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 (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Soumettre améliorations et plugins supplémentaires
10 avril 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)
Sur d’autres sites (7244)
-
avcodec : mbd has a range of 0..2
27 février 2013, par Michael Niedermayeravcodec : mbd has a range of 0..2
-
FFmpeg Flags for generating fixed amount of images related to video length
27 octobre 2015, par SutekhI am using this command :
ffmpeg -i file.mp4 -vf fps=1/60 -s 274x175 thumb%d.png
to extract 1 frame from video for every minute of it.
What i want to learn how to do is :
Extract a total of 10 images from video regardless of its length that are relative to distance of video.Example :
1.If video length is 15 minutes (900 seconds) it will extract one image from every 90 seconds of video.
2.If video length is 22 minutes (1320 seconds) it will extract one image from every 132 seconds of video.And one more thing , is it possible to use ffmpeg to set output quality of those images or limit maximum size(as in file size , not dimensions) for each image that is going to get outputted ?
-
tests/checkasm/svq1enc : Use proper range for input
6 mai 2024, par Andreas Rheinhardttests/checkasm/svq1enc : Use proper range for input
ssd_int8_vs_int16 is only called from encode_block()
in svq1enc.c ; it calls it in stages : At stage 0,
the int16_t array contains the difference of two
uint16_t. At each of the following stages, the
int16_t array is filled by subtracting an int8_t from
the current stage's int16_t array. The maximum stage
is five, so the int16_t are in the range
(-255 - 5 * 127)..(255 + 5 * 128).This commit modifies the checkasm test to only use
values from this range, fixing (undefined) integer overflow
in the test.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>