Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (105)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (9631)

  • Revision 8d42fad9c1 : Move overlay frame speed feature setting out of mode search loop Refactor overl

    11 septembre 2014, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_rdopt.c



    Move overlay frame speed feature setting out of mode search loop

    Refactor overlay frame speed-up related function. Make it unified
    with the ref_frame_skip_mask system and Move it out of the mode
    search loop.

    Change-Id : I0dde9baf44354f6ba00b4679cba02fa6a30c7316

  • Revision 1ca1186529 : Add a strict mode for auto_min_max_partition_size feature In this new mode, the

    29 janvier 2014, par Yaowu Xu

    Changed Paths :
     Modify /vp9/encoder/vp9_encodeframe.c


     Modify /vp9/encoder/vp9_onyx_if.c


     Modify /vp9/encoder/vp9_onyx_int.h



    Add a strict mode for auto_min_max_partition_size feature

    In this new mode, the size range is strictly determined by the min
    and max partition size in neighborhood blocks.

    Niklas720 encoding time at cpu-used -5 goes from 56250ms to 50676ms,
    a 10% reduction.

    Change-Id : I316b0e2ac967ff3fad57b28d69c0ec80b7d8b34e

  • How to use only 'concat' feature of ffmpeg and disable other components in Android ?

    24 mai 2022, par Hadi

    I want to use ffmpeg library in my Android application to concatenate mp4 videos. After lots of research I choose ffmpeg-kit to work with ffmpeg. The problem is that the apk size with the library is large and I want to reduce it. As described here I have to disable unused components of ffmpeg, but I don't know what components I do need and what I don't. I started with adding these lines to ffmpeg.sh file of ffmpeg-kit but, it didn't work :

    


    --disable-everything \
--enable-avcodec \
--enable-avformat \
--enable-ffmpeg \


    


    I got the error below when executingffmpeg -f concat -safe 0 -i mp4_parts.txt -c copy output.mp4 command :

    


    Unrecognized option 'safe'


    


    I added those lines with no reason but to find out the right components that I need.

    


    So my question is that what components do I need to enable for using the concat feature of ffmpeg ? Thanks