Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (68)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-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

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (10705)

  • Merge commit ’cdd2d73d315ecaf19ff49e64c91923275f1bda68’

    29 juillet 2013, par Michael Niedermayer
    Merge commit ’cdd2d73d315ecaf19ff49e64c91923275f1bda68’
    

    * commit ’cdd2d73d315ecaf19ff49e64c91923275f1bda68’ :
    hls : Don’t check discard flags until the parent demuxer’s streams actually exist
    hls : Copy the time base from the chained demuxer

    Conflicts :
    libavformat/hls.c

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

    • [DH] libavformat/hls.c
  • What does the left_block_options array represent in the fill_decode_neighbors function of FFmpeg?

    28 décembre 2024, par mike xu

    I am studying the source code of FFmpeg, specifically the fill_decode_neighbors function. I am trying to understand how the decoding process works, especially the usage of the left_block_options array.&#xA;Here is the relevant code snippet :

    &#xA;

    static const uint8_t left_block_options[4][32] = {&#xA;        { 0, 1, 2, 3, 7, 10, 8, 11, 3 &#x2B; 0 * 4, 3 &#x2B; 1 * 4, 3 &#x2B; 2 * 4, 3 &#x2B; 3 * 4, 1 &#x2B; 4 * 4, 1 &#x2B; 8 * 4, 1 &#x2B; 5 * 4, 1 &#x2B; 9 * 4 },&#xA;        { 2, 2, 3, 3, 8, 11, 8, 11, 3 &#x2B; 2 * 4, 3 &#x2B; 2 * 4, 3 &#x2B; 3 * 4, 3 &#x2B; 3 * 4, 1 &#x2B; 5 * 4, 1 &#x2B; 9 * 4, 1 &#x2B; 5 * 4, 1 &#x2B; 9 * 4 },&#xA;        { 0, 0, 1, 1, 7, 10, 7, 10, 3 &#x2B; 0 * 4, 3 &#x2B; 0 * 4, 3 &#x2B; 1 * 4, 3 &#x2B; 1 * 4, 1 &#x2B; 4 * 4, 1 &#x2B; 8 * 4, 1 &#x2B; 4 * 4, 1 &#x2B; 8 * 4 },&#xA;        { 0, 2, 0, 2, 7, 10, 7, 10, 3 &#x2B; 0 * 4, 3 &#x2B; 2 * 4, 3 &#x2B; 0 * 4, 3 &#x2B; 2 * 4, 1 &#x2B; 4 * 4, 1 &#x2B; 8 * 4, 1 &#x2B; 4 * 4, 1 &#x2B; 8 * 4 }&#xA;    };&#xA;

    &#xA;

    While I understand that this array plays a role in determining neighboring blocks for decoding, I am unclear about :

    &#xA;

    The specific meaning of the array values.&#xA;How this array interacts with the decoding process, especially in relation to intra-prediction or block positioning.&#xA;Instead of a detailed explanation, I would greatly appreciate :

    &#xA;

    Any keywords I can look up to understand this topic better (e.g., terms from the H.264 standard or FFmpeg documentation).&#xA;Links to related documentation, articles, or sections in the H.264 specification.&#xA;Suggestions on where I might find similar examples or detailed discussions about intra-block neighbor handling in FFmpeg.&#xA;Thank you for any resources or pointers you can provide !

    &#xA;

  • Naming convention to create/merge multiple video files

    25 octobre 2015, par Anay Bose

    I am trying to concat a few .mp4 files. I first create intermediate .mpg clips, and then merge them together with ’cat’ command ; then convert it to .mp4 files

    for example,

    ffmpeg -i input1.mp4 -qscale:v 1 intermediate1.mpg
    ffmpeg -i input2.mp4 -qscale:v 1 intermediate2.mpg

    // Now merge them together

    cat intermediate1.mpg intermediate2.mpg > intermediate_all.mpg
    ffmpeg -i intermediate_all.mpg -qscale:v 2 output.mp4

    Now, I would like to merge all .mpg files within a directory
    the following command works if I have max 9 .mpg files

    cat folder/*.mpg > intermediate_all.mpg

    But, if I got more then 9 .mpg files, the movie sequence breakes, meaning no. 10 clip shows up after no. 1 clip which I do not want. Is there any naming convention that I can follow with ffmpeg. In imagemagick, I can easily use the following syntax and it works, but in ffmpeg it is not working.

    cat folder/%d.mpg or cat folder/%d.mpg[0-10]