Recherche avancée

Médias (1)

Mot : - Tags -/vidéo

Autres articles (100)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

  • avformat/mpegts : only clear programs which no longer exist or have a new PMT

    27 décembre 2020, par Marton Balint
    avformat/mpegts : only clear programs which no longer exist or have a new PMT
    

    Otherwise there can be a small period when the programs only contain the PMT
    pid.

    Also make sure skip_clear only affects AVProgram clear, and that pmt_pid is
    always kept as the first entry of the PID list of the programs. Also reject
    PMTs for programs on the wrong PID.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/mpegts.c
  • Running ffmpeg silently on NodeJS (Windows)

    5 janvier 2021, par Paulo Bertotti

    I'm trying to run FFMPEG as a child process on NodeJS to extract a snapshot of an mp4 video on Windows. But even spawning the process with the "silent" option, it stills opening the command prompt for a short period. Any idea of what might be happening ?

    &#xA;

    The code looks something like this :

    &#xA;

    const snapshot = spawn(&#xA;              "ffmpeg",&#xA;              [&#xA;                "-ss",&#xA;                "00:00:07",&#xA;                "-i",&#xA;                `${this.directory}\\${file.name}`,&#xA;                "-vframes",&#xA;                "1",&#xA;                "-q:v",&#xA;                "2",&#xA;                `${this.directory}\\channel${this.channelNum}_snapshot.png`,&#xA;              ],&#xA;              { silent: true }&#xA;            );&#xA;

    &#xA;

  • ffmpeg : add option stats_period

    21 décembre 2020, par Gyan Doshi
    ffmpeg : add option stats_period
    

    At present, progress stats are updated at a hardcoded interval of
    half a second. For long processes, this can lead to bloated
    logs and progress reports.

    Users can now set a custom period using option -stats_period
    Default is kept at 0.5 seconds.

    • [DH] doc/ffmpeg.texi
    • [DH] fftools/ffmpeg.c
    • [DH] fftools/ffmpeg.h
    • [DH] fftools/ffmpeg_opt.c