Recherche avancée

Médias (91)

Autres articles (90)

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

  • avcodec/atrac9dec : Check conditions before apply_band_extension() to avoid out of...

    15 juin 2019, par Michael Niedermayer
    avcodec/atrac9dec : Check conditions before apply_band_extension() to avoid out of array read in initialization of unused variables
    

    Fixes : global-buffer-overflow
    Fixes : 15247/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_ATRAC9_fuzzer-5671602181636096

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

    • [DH] libavcodec/atrac9dec.c
  • How to convert bunch of videos into H.264 AAC ffmpeg with conditions using python ? [closed]

    21 octobre 2020, par Sathish Kumar

    I have bunch of videos on my Ubuntu server in a nested sub folder, say around 2 TB. It has all types of video formats ( mkv,flv,ts,mov,mp4...and others).

    &#xA;

    Problem : I want to transcode it into (mp4,h.264,aac). I don't want to re-encode the videos which already has (mp4,h.264,aac) it needs to be same. Just those are not in that profile should get converted into (mp4,h.264,aac) without downscaling.

    &#xA;

    How to effectively handle this / any high level idea / any github repo for this problem ?

    &#xA;

    Input folder :

    &#xA;

    Folder1&#xA;--sub_folder&#xA;---video1.mkv&#xA;---video2.ts&#xA;---video3.mp4&#xA;Folder2&#xA;---cat.mkv&#xA;---mouse.ts&#xA;---train.mp4&#xA;

    &#xA;

    Output folder :

    &#xA;

    Folder1&#xA;--sub_folder&#xA;---video1.mp4&#xA;---video2.mp4&#xA;---video3.mp4&#xA;Folder2&#xA;---cat.mp4&#xA;---mouse.mp4&#xA;---train.mp4&#xA;

    &#xA;

    The input output folder structure should follow the same. it should be automatically created.

    &#xA;

  • avcodec/omx : Check initializing mutexes/conditions

    2 septembre 2021, par Andreas Rheinhardt
    avcodec/omx : Check initializing mutexes/conditions
    

    The earlier code did not properly check these initializations :
    It only recorded whether the part of init where these initializations
    are has been reached, but it did not check whether the initializations
    were successful, although destroying them would be undefined behaviour
    if they had not been initialized successfully.
    Furthermore cleanup() always locked a mutex regardless of whether there
    was any attempt to initialize these mutexes at all.

    Reviewed-by : Martin Storsjö <martin@martin.st>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/omx.c