
Recherche avancée
Médias (3)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (54)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
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 (4286)
-
h264 : move initialising the explicit pred weight table for MBAFF
15 avril 2016, par Anton Khirnovh264 : move initialising the explicit pred weight table for MBAFF
Currently it’s done in the code that initialises the ref list for
MBAFF, which is not a logical place for it. Move it to the function that
parses the pred table from the bitstream, which is analogous to what is
done for the implicit weight table as well. -
lavc/aarch64 : add pred functions for 10-bit
19 août 2021, par Mikhail Nitenkolavc/aarch64 : add pred functions for 10-bit
Benchmarks : A53 A72
pred8x8_dc_10_c : 64.2 49.5
pred8x8_dc_10_neon : 62.0 53.7
pred8x8_dc_128_10_c : 26.0 14.0
pred8x8_dc_128_10_neon : 30.7 17.5
pred8x8_horizontal_10_c : 60.0 27.7
pred8x8_horizontal_10_neon : 38.0 34.0
pred8x8_left_dc_10_c : 42.5 27.5
pred8x8_left_dc_10_neon : 51.0 41.2
pred8x8_mad_cow_dc_0l0_10_c : 55.7 37.2
pred8x8_mad_cow_dc_0l0_10_neon : 50.2 35.2
pred8x8_mad_cow_dc_0lt_10_c : 89.2 67.0
pred8x8_mad_cow_dc_0lt_10_neon : 52.2 46.7
pred8x8_mad_cow_dc_l0t_10_c : 74.7 51.0
pred8x8_mad_cow_dc_l0t_10_neon : 50.5 45.2
pred8x8_mad_cow_dc_l00_10_c : 58.0 38.0
pred8x8_mad_cow_dc_l00_10_neon : 42.5 37.5
pred8x8_plane_10_c : 354.0 288.7
pred8x8_plane_10_neon : 141.0 101.2
pred8x8_top_dc_10_c : 44.5 30.5
pred8x8_top_dc_10_neon : 40.0 31.0
pred8x8_vertical_10_c : 27.5 14.5
pred8x8_vertical_10_neon : 21.0 17.5
pred16x16_plane_10_c : 1242.0 1070.5
pred16x16_plane_10_neon : 324.0 196.7Signed-off-by : Mikhail Nitenko <mnitenko@gmail.com>
Signed-off-by : Martin Storsjö <martin@martin.st> -
h264 : limit allowed pred modes in ff_h264_check_intra_pred_mode() to 3
28 novembre 2013, par Anton Khirnovh264 : limit allowed pred modes in ff_h264_check_intra_pred_mode() to 3
Higher modes are not allowed for 16x16/chroma, which is what this
function is used for. Otherwise this function would return 0 (vertical
prediction) for invalid higher modes, which could result in invalid
reads.Found-by : Mateusz "j00ru" Jurczyk and Gynvael Coldwind
CC:libav-stable@libav.org