Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (75)

  • 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 ;

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

Sur d’autres sites (12773)

  • avcodec/ac3dec : Fix shift signedness in mask creation

    21 septembre 2018, par Michael Niedermayer
    avcodec/ac3dec : Fix shift signedness in mask creation
    

    Fixes : 9924/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_EAC3_fuzzer-5473421772193792
    Fixes : left shift of 1 by 63 places cannot be represented in type 'long long'

    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/ac3dec.c
  • av_vdpau_get_profile : mask out H.264 intra profile flag

    4 mars 2014, par Rémi Denis-Courmont
    av_vdpau_get_profile : mask out H.264 intra profile flag
    

    Signed-off-by : Janne Grunau <janne-libav@jannau.net>

    • [DBH] libavcodec/vdpau.c
  • Using ffmpeg alphamerge to mask two images before calculating similarity index [closed]

    12 août 2024, par user2814357

    I'm working on a script that removes duplicate frames from images stored on disk. I need to ignore certain irrelevant parts of the images.

    &#xA;

    The following ffmpeg command line should work, but it returns the same SSIM statistics as without mask.

    &#xA;

    ffmpeg -i 1.webp -i 2.webp -i mask.png -filter_complex \&#xA;"[0][2]alphamerge[img1]; \&#xA; [1][2]alphamerge[img2]; \&#xA; [img1]format=yuva420p[masked1]; \&#xA; [img2]format=yuva420p[masked2]; \&#xA; [masked1][masked2]ssim=stats_file=-" -f null -&#xA;

    &#xA;

    Example output :

    &#xA;

    [Parsed_ssim_4 @ 0x7fb76b70ff00] SSIM Y:0.829392 (7.680003) U:0.987882 (19.165656) V:0.993201 (21.675403) All:0.883108 (9.322165)&#xA;[out#0/null @ 0x7fb76c604700] video:0KiB audio:0KiB subtitle:0KiB other streams:0KiB global headers:0KiB muxing overhead: unknown&#xA;frame=    1 fps=0.0 q=-0.0 Lsize=N/A time=00:00:00.04 bitrate=N/A speed=0.602x    &#xA;&#xA;

    &#xA;

    Result is the same with ffmpeg -i 1.webp -i 2.webp  -lavfi ssim=stats_file=- -f null -.

    &#xA;

    [Parsed_ssim_0 @ 0x7f9c0cf06d80] SSIM Y:0.829392 (7.680003) U:0.987882 (19.165656) V:0.993201 (21.675403) All:0.883108 (9.322165)&#xA;[out#0/null @ 0x7f9c0da08e80] video:0KiB audio:0KiB subtitle:0KiB other streams:0KiB global headers:0KiB muxing overhead: unknown&#xA;

    &#xA;

    This is weird because the masked output files look as expected if I output them with :

    &#xA;

    ffmpeg -i 1.webp -i 2.webp -i mask.png -filter_complex \&#xA;"[0][2]alphamerge[img1]; \&#xA; [1][2]alphamerge[img2]; \&#xA; [img1]format=yuva420p[masked1]; \&#xA; [img2]format=yuva420p[masked2]" \&#xA;-map "[masked1]" masked_1.webp \&#xA;-map "[masked2]" masked_2.webp&#xA;

    &#xA;

    Does anyone know what the right syntax would be for getting the SSIM values from a single command using a mask ?

    &#xA;

    Side note : If I use -map "[masked1]" masked_1.jpg it outputs the original picture, not the masked one. Could there be a problem in the ffmpeg pipeline ?

    &#xA;

    Thank you very much !

    &#xA;