
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (48)
-
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
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 -
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 (9421)
-
FFmpeg av_hwdevice_ctx_create returns ENOMEM
4 mars 2021, par lnogueirI am trying to perform h264 video encoding on a GPU using the ffmpeg's vaapi library.


I have been following this example from ffmpeg Github repo.


It fails for me here :


AVBufferRef* vaapi_encoder;
int err = av_hwdevice_ctx_create(&vaapi_encoder, AV_HWDEVICE_TYPE_VAAPI,
 NULL, NULL, 0);



This returns -12, which maps to
ENOMEM
(out of memory) error, but that doesn't make sense to me because I have plenty of memory.

For reference, this is my output after running 'vainfo' :


libva info: VA-API version 1.7.0
libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so
libva info: Found init function __vaDriverInit_1_7
libva info: va_openDriver() returns 0
vainfo: VA-API version: 1.7 (libva 2.6.0)
vainfo: Driver version: Intel iHD driver for Intel(R) Gen Graphics - 20.1.1 ()
vainfo: Supported profile and entrypoints
 VAProfileMPEG2Simple : VAEntrypointVLD
 VAProfileMPEG2Main : VAEntrypointVLD
 VAProfileH264Main : VAEntrypointVLD
 VAProfileH264Main : VAEntrypointEncSliceLP
 VAProfileH264High : VAEntrypointVLD
 VAProfileH264High : VAEntrypointEncSliceLP
 VAProfileJPEGBaseline : VAEntrypointVLD
 VAProfileJPEGBaseline : VAEntrypointEncPicture
 VAProfileH264ConstrainedBaseline: VAEntrypointVLD
 VAProfileH264ConstrainedBaseline: VAEntrypointEncSliceLP
 VAProfileVP8Version0_3 : VAEntrypointVLD
 VAProfileHEVCMain : VAEntrypointVLD
 VAProfileHEVCMain10 : VAEntrypointVLD
 VAProfileVP9Profile0 : VAEntrypointVLD
 VAProfileVP9Profile2 : VAEntrypointVLD



Thanks !


-
libavfilter - reconfigure filter graph using avfilter_graph_parse_ptr returns -22
16 juillet 2021, par RahulI am using
transcode.c
sample from ffmpeg examples and it is working as expected. It usesavfilter_graph_parse_ptr
to setup filter graph and it works fine.

However, I need change filter graph dynamically and there
avfilter_graph_parse_ptr
fails. It returns -22. I am not certain if it is a valid operation to do (reconfigure) ? If it is possible, does it require more thanavfilter_graph_parse_ptr
andavfilter_graph_parse_ptr
? libavfilter documentation doesn't say anything about reconfigure or reset existing graph.

I can create a new graph but I am avoiding it since it is affecting the existing buffers.


Thank you for your insight.


-
tools/trasher : Check fseek returns
22 février 2015, par Michael Niedermayer