
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (98)
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Changer le statut par défaut des nouveaux inscrits
26 décembre 2015, parPar défaut, lors de leur inscription, les nouveaux utilisateurs ont le statut de visiteur. Ils disposent de certains droits mais ne peuvent pas forcément publier leurs contenus eux-même etc...
Il est possible de changer ce statut par défaut. en "rédacteur".
Pour ce faire, un administrateur webmestre du site doit aller dans l’espace privé de SPIP en ajoutant ecrire/ à l’url de son site.
Une fois dans l’espace privé, il lui faut suivre les menus configuration > Interactivité et activer (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (10167)
-
Revision ecbca31a1d : Fix comments and color format Replaced "color space" with "color format" in com
9 janvier 2015, par Yaowu XuChanged Paths :
Modify /vp9/decoder/vp9_decodeframe.c
Modify /vp9/encoder/vp9_encoder.c
Modify /vp9/vp9_cx_iface.c
Fix comments and color formatReplaced "color space" with "color format" in comments where color
sampling format is concerned, so to differentiate from the concept
defined in COLOR_SPACE.Change-Id : I8c935034c166b24307a99352dab1686531276bb8
-
What does the "struct AVCodec *codec" in "struct AVCodecContext" represent ?
7 mai 2019, par jsp99I am using FFMpeg libraries in C/C++ to develop a media player .
This source uses the following code to find the decoder of a video stream in a file :pCodec=avcodec_find_decoder(pCodecCtx->codec_id);
,where pCodecCtx is the pointer to the Codec Context of the video stream and pCodec is a pointer to AVCodec which was initialised to NULL .
If we have to explicitly find the decoder , then what is the
struct AVCodec *codec
found instruct AVCodecContext
? This is defined here . Can someone please help me understand it’s use . -
What does the "struct AVCodec *codec" in "struct AVCodecContext" represent ?
7 juin 2013, par AppyI am using FFMpeg libraries in C/C++ to develop a media player .
This source uses the following code to find the decoder of a video stream in a file :pCodec=avcodec_find_decoder(pCodecCtx->codec_id);
,where pCodecCtx is the pointer to the Codec Context of the video stream and pCodec is a pointer to AVCodec which was initialised to NULL .
If we have to explicitly find the decoder , then what is the
struct AVCodec *codec
found instruct AVCodecContext
? This is defined here . Can someone please help me understand it's use .