Recherche avancée

Médias (0)

Mot : - Tags -/utilisateurs

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (58)

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

  • avcodec/aacdec : Fix pulse position checks in decode_pulses()

    3 février 2014, par Michael Niedermayer
    avcodec/aacdec : Fix pulse position checks in decode_pulses()
    

    Fixes out of array read
    Fixes : asan_static-oob_1efed25_1887_cov_2013541199_HeyYa_RA10_AAC_192K_30s.rm
    Found-by : Mateusz "j00ru" Jurczyk and Gynvael Coldwind
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/aacdec.c
  • avformat/mxfdec : Fix file position addition

    1er février 2021, par Michael Niedermayer
    avformat/mxfdec : Fix file position addition
    

    Fixes : signed integer overflow : 9223372036854775805 + 4 cannot be represented in type 'long'
    Fixes : 29927/clusterfuzz-testcase-minimized-ffmpeg_dem_MXF_fuzzer-5579985228267520

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/mxfdec.c
  • How to control inserting position when inserting video frames to pure audio file with ffmpeg

    6 mai 2014, par teddy

    Inserting video frames into pure audio flv file(may call it audio.flv) can make it seekable.I do this with ffmpeg using the following command :

    /usr/bin/ffmpeg -y -loop 1 -i /root/testimage.jpg -i /file/audio.flv -s 2x2 -t 90 -r 1 -g 0 -acodec copy /tmp/out.flv 2>&amp;1

    The number 90 in command is specify the file duration.this can work well except one thing : The output files for several executions of the previous command is not same. After i analysed the file’s with flvparser i found that the position of the first video tag of these files were not same.

    1. For the first situation, the first video tag is the third tag, which is following script tag
    2. For the second situation, the first video tag is the fifth tag, there are three audio tags between it and script tag.
    3. For the third situation, the first video tag is the sixth tag.

    I just got these three situations for my test. But other video tags are in the same position of tag-index in output file. I have no idea why is just the first video tag has different position. I want all video tag will be at same tag-indexes. Could anyone give me some advise ? Thanks !