Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (103)

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

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

  • FFMpeg high CPU Utilization

    19 novembre 2017, par David Ko

    I am trying a trancoding system based on ffmpeg and Quadro P4000 gpu using h264_nvenc. Bud I have also a very high cpu usage while I start a transcoding. on 4 sd streams I have 80+ % cpu usage on 4core I5 with 3,5 GHz. GPU usage based on nvidia-smi is around 3%. What is wrong ?
    The system is running on Ubuntu 16.0.3.

    I tried upgrade to newest video driver, also tried use other ffmpeg based solutions with the same result.

    Any idea ?
    Thank you
    Dave

  • aacenc_is : rename variable

    21 décembre 2015, par Rostislav Pehlivanov
    aacenc_is : rename variable
    

    ’erf’ is far from the best name for a variable and is not very
    descriptive since the actual variable points to the comparitively best
    IS phase. Therefore rename it to ’best’.

    Signed-off-by : Rostislav Pehlivanov <atomnuker@gmail.com>

    • [DH] libavcodec/aacenc_is.c
  • ffmpeg to calculate audio/visual difference between compressed and non-compressed video

    14 juin 2019, par Asymetr

    I’m trying to calculate the audio + visual difference between a harshly compressed video file and one that hasn’t been.
    I’m using pipes because ultimately I wish this to take src from a camera stream.

    I’ve managed to get the video results that I’m looking for, but I’m struggling with the audio.
    I’ve added a line to invert the phase of the compressed audio, so that when they add up in the blend they should almost cancel each other out, but that doesn’t happen.

    ffmpeg -i input.avi -f avi -c:v libxvid -qscale:v 30 -c:a wmav1 - | \
    ffmpeg -i - -f avi -af "aeval='-val(0)':c=same" - | \
    ffmpeg -i input.avi -i - -filter_complex "blend=all_mode=difference" -c:v libx264 -crf 18 -f avi - | \
    ffplay -

    I can still hear all the audio, when what I should be hearing are solely compression artifacts. thx