Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (97)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

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

Sur d’autres sites (8191)

  • doc/filters : correct description of overlay_vaapi

    5 août 2022, par Fei Wang
    doc/filters : correct description of overlay_vaapi
    

    Signed-off-by : Fei Wang <fei.w.wang@intel.com>
    Reviewed-by : Philip Langdale <philipl@overt.org>
    Signed-off-by : Haihao Xiang <haihao.xiang@intel.com>

    • [DH] doc/filters.texi
  • lavc/vaapi_hevc : Loose the restricts for SCC decoding

    16 février 2023, par Linjie Fu
    lavc/vaapi_hevc : Loose the restricts for SCC decoding
    

    Allow current picture as the reference picture.

    Signed-off-by : Linjie Fu <linjie.justin.fu@gmail.com>
    Signed-off-by : Fei Wang <fei.w.wang@intel.com>

    • [DH] libavcodec/vaapi_hevc.c
  • How to specify the audio path for ffmpeg and how to conduct a silence removal using ffmpeg

    15 octobre 2020, par Leo

    I wish to conduct a silence removal for wav files.

    &#xA;

    import ffmpeg&#xA;inPath = "/home/test/Speech/Wang/dataset/testsets/disgust/0_002_00_021_F002_d.wav"&#xA;outPath = "/home/test/Speech/Wang/dataset/testsets/disgust/0_002_00_021_F002_d_trimed.wav"&#xA;ffmpeg -i inPath -af silenceremove=0:0:-50dB outPath&#xA;

    &#xA;

    Error occurred.

    &#xA;

      File "", line 3&#xA;    ffmpeg -i inPath -af silenceremove=0:0:-50dB outPath&#xA;                   ^&#xA;SyntaxError: invalid syntax&#xA;

    &#xA;

    How should I assign the path ?

    &#xA;

    The question is that why we set the threshold to a negative value ?

    &#xA;