Recherche avancée

Médias (91)

Autres articles (48)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

  • avcodec/jpeg2000dec : Use 32x32->64bit for 9/7i dequantization

    24 juin 2015, par Michael Niedermayer
    avcodec/jpeg2000dec : Use 32x32->64bit for 9/7i dequantization
    

    Like the 5/3 case this is needed to avoid overflows and similarly for 16bpp
    output pure 32bit operations are insufficient if high quality is wanted

    Note, this code-path is only used in bitexact mode, so this should not
    affect the speed of any real use-case

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

    • [DH] libavcodec/jpeg2000dec.c
  • I can't understand how to use ffmpeg in javascript (if it's even possible)

    28 juin, par Laimonas Rupeika

    Straight to the problem, I want to use ffmpeg in my javascript project for video editing. So I found cdn : <code class="echappe-js">&lt;script src=&quot;https://cdn.jsdelivr.net/npm/@salomvary/ffmpeg.js-umd@3.1.9001/ffmpeg-mp4.min.js&quot;&gt;&lt;/script&gt; which references to "https://github.com/Kagami/ffmpeg.js", which is ffmpeg port to javascript as I understand ?&#xA;I don't get any errors on import, but if I try loading ffmpeg :

    &#xA;

    // Initialize FFmpeg after the GAPI client is loaded&#xA;  const ffmpeg = createFFmpeg({ log: true });&#xA;&#xA;  // // Load the FFmpeg library&#xA;  await ffmpeg.load();&#xA;

    &#xA;

    I get error : Uncaught (in promise) ReferenceError: createFFmpeg is not defined at initializeGapiClient (index:89:18) and it also messes my whole project. So if possible, how can I use ffmpeg in pure javascript, not Node.js. Should I download ffmpeg library files and then include them in project, I'm totally lost at this.

    &#xA;

  • spdifenc : support ac3 core+eac3 dependent streams

    3 avril 2018, par Hendrik Leppkes
    spdifenc : support ac3 core+eac3 dependent streams
    

    Such streams are found on Blu-ray, and identified as EAC3 type in
    avformat, while the bitstream of the core stream is actually a pure AC3
    frame.

    Adjust the parsing accordingly, since AC3 frames always hold 6 blocks
    and the numblkscod syntax element is not present.

    • [DH] libavformat/spdifenc.c