Recherche avancée

Médias (91)

Autres articles (5)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP 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 (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (3522)

  • tools/trasher : Check fseek returns

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

    Fixes CID733726

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] tools/trasher.c
  • libavfilter - reconfigure filter graph using avfilter_graph_parse_ptr returns -22

    16 juillet 2021, par Rahul

    I am using transcode.c sample from ffmpeg examples and it is working as expected. It uses avfilter_graph_parse_ptr to setup filter graph and it works fine.

    &#xA;

    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 than avfilter_graph_parse_ptr and avfilter_graph_parse_ptr ? libavfilter documentation doesn't say anything about reconfigure or reset existing graph.

    &#xA;

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

    &#xA;

    Thank you for your insight.

    &#xA;

  • FFmpeg av_hwdevice_ctx_create returns ENOMEM

    4 mars 2021, par lnogueir

    I am trying to perform h264 video encoding on a GPU using the ffmpeg's vaapi library.

    &#xA;

    I have been following this example from ffmpeg Github repo.

    &#xA;

    It fails for me here :

    &#xA;

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

    &#xA;

    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.

    &#xA;

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

    &#xA;

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

    &#xA;

    Thanks !

    &#xA;