Recherche avancée

Médias (1)

Mot : - Tags -/3GS

Autres articles (68)

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

  • 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

Sur d’autres sites (12753)

  • avformat/matroskaenc : Fix memleak upon failure

    16 octobre 2019, par Andreas Rheinhardt
    avformat/matroskaenc : Fix memleak upon failure
    

    The Matroska muxer up until now leaked memory in two scenarios :

    1. If an error happened during writing the trailer, as
    mkv_write_trailer() returned early without cleaning up.
    2. If mkv_write_header() indicated success despite an error in the
    underlying AVIOContext. In this case avformat_write_header() returned
    the IO error and according to the API the caller is not allowed to call
    av_write_trailer(), so that no cleanup happened for the allocations made
    in mkv_write_header().

    This has been fixed by using a dedicated deinit function.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/matroskaenc.c
  • Filter complex with split source and multiple overlays : Can my code be simplified ?

    29 juin 2024, par Patrick Hennessey

    I've created a complex split filter that splits a single 1372 x 1372 input source into multiple uniquely shaped and cropped slices (s1, s2, etc), and overlays them on a padded background plate into a single output. It also applies a 20fps target framerate on the last overlay step.

    &#xA;

    It works exactly how I want, but I'm wondering if this code is inefficient or redundant in any way :

    &#xA;

    ffmpeg -i test.mp4 -filter_complex "[0:v]split=5[s1][s2][s3][s4][s5];&#xA;[s1]scale=377:377,crop=360:360:2:2,pad=1920:1080:1560:720[bg];&#xA;[s2]crop=1372:1068:0:0[s2];[bg][s2]overlay=0:0[bg];&#xA;[s3]crop=460:308:0:1064[s3];[bg][s3]overlay=1372:0[bg];&#xA;[s4]crop=460:308:456:1064[s4];[bg][s4]overlay=1372:308[bg];&#xA;[s5]crop=460:308:912:1064[s5];[bg][s5]overlay=1372:616,fps=20" output.mp4&#xA;

    &#xA;

    Is there a more elegant way to achieve the same result ?

    &#xA;

  • Converting stereo file to mono but preserving peak and RMS loudness

    14 juin 2020, par user319249

    I am converting stereo audio files to mono using ffmpeg.

    &#xA;&#xA;

    ffmpeg -i $1 -ac 1 -ab 192k mono_$1&#xA;

    &#xA;&#xA;

    However, after conversion, the RMS and peak loudness levels are not the same.

    &#xA;&#xA;

    Tests-iMac:auditions test$ ./rms.sh mono_test.mp3 &#xA; mean_volume: -20.1 dB&#xA; max_volume: -0.2 dB&#xA; Peak level dB: -0.150201&#xA; RMS level dB: -20.138039&#xA; RMS peak dB: -10.650649&#xA; RMS trough dB: -94.923318&#xA; Flat factor: 0.000000&#xA; Peak count: 2.000000&#xA; Bit depth: 32/32&#xA; Number of samples: 5800320&#xA; Number of NaNs: 0.000000&#xA; Number of Infs: 0.000000&#xA; Number of denormals: 0.000000&#xA;Tests-iMac:auditions test$ ./rms.sh test.mp3 &#xA; mean_volume: -22.9 dB&#xA; max_volume: -2.9 dB&#xA; Peak level dB: -2.896314&#xA; RMS level dB: -22.883812&#xA; RMS peak dB: -13.397327&#xA; RMS trough dB: -95.943631&#xA; Flat factor: 0.000000&#xA; Peak count: 2.000000&#xA; Bit depth: 32/32&#xA; Number of samples: 5800320&#xA; Number of NaNs: 0.000000&#xA; Number of Infs: 0.000000&#xA; Number of denormals: 0.000000&#xA;

    &#xA;&#xA;

    The first ouput is the mono file which is technically louder than the stereo file, listed second. How can I preserve the peak and RMS values while also converting to mono ? I have no issue scripting in order to obtain the stereo loudness values to pass to the mono conversion process.

    &#xA;&#xA;

    Thanks !

    &#xA;