
Recherche avancée
Médias (2)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (56)
-
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...) -
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 (6577)
-
Is there a way to ask ffmpeg to provide the list of performed actions ?
14 juin 2021, par oleksantIn the scope of different operations done by the FFmpeg (i.e. transcoding) number of actions can be performed. Is there a way to retrieve some sort of an action list.


Smth, like the following :


{
 "Operation": "Resample",
 "DataType": "Audio",
 "From": "16Khz",
 "To": "48Khz"
 },
 {
 "Operation": "Scale",
 "DataType": "Video",
 "From": "1024x768 (4:3)",
 "To": "1920x1080 (16:9)"
 }



I have searched through FFmpeg commands but could not find anything useful.


Thank you


-
pngdsp x86 : use unaligned access
2 décembre 2014, par Christophe Gisquetpngdsp x86 : use unaligned access
For test images manually generated to contain only up prediction,
timing results :
8380x3032 255x185
before : 138635 1992
after : 139232 1996Actually jumping to the proper version depending on the alignment :
8380x3032 : 138767A 0.5% speed improvement for gigantic images is not worth the code
duplication.Fixes ticket #4148
Signed-off-by : Christophe Gisquet <christophe.gisquet@gmail.com>
Tested-by : Benoit Fouet <benoit.fouet@free.fr>
Signed-off-by : Michael Niedermayer <michaelni@gmx.at> -
aacps : invert the order of parameters of ipdopd_reset()
17 décembre 2014, par Vittorio Giovaraaacps : invert the order of parameters of ipdopd_reset()
This is the order that the caller uses in the rest of the file. The
same operation is applied to both parameters, so this change is only
done for consistency, it doesn’t change the actual behaviour.Bug-Id : CID 732285 / CID 732286