Recherche avancée

Médias (0)

Mot : - Tags -/utilisateurs

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (95)

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (5528)

  • Merge commit ’e0046bc9c96150fa06146ace9093f06857dd7b23’

    23 mars 2015, par Michael Niedermayer
    Merge commit ’e0046bc9c96150fa06146ace9093f06857dd7b23’
    

    * commit ’e0046bc9c96150fa06146ace9093f06857dd7b23’ :
    movenc : Write the make and model metadata keys for mov style files

    Conflicts :
    libavformat/movenc.c

    Merged-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/movenc.c
  • Decode frame sequence exception while NVIDIA GPU is used for H265 video decoding acceleration [closed]

    17 août 2023, par uproar

    We are using NVIDIA GPUs (model : GTX1050TI) to accelerate H.265 video decoding and rendering, and DXVA2 hardware acceleration is used. The version of FFmpeg is 4.2.2.&#xA;If the video is played for a long time, there will be frame skipping forward (that is, the video frame of the first few seconds will appear when it is played in normal order), and it will always exist after it appears, and it will not heal itself.&#xA;Has anyone been in the same situation or can anyone help ?

    &#xA;

    We checked the rendering and playback timing of each frame and found that no forward jump occurred. Therefore, the data decoded by the GPU may be incorrect.&#xA;We also used AMD GPUs for comparison tests, but this is not the case with AMD GPUs.

    &#xA;

  • Calculate VMAF score while encoding a video with FFmpeg

    31 octobre 2024, par user8071576

    I have an ffmpeg version built with VMAF library. I can use it to calculate the VMAF scores of a distorted video against a reference video using commands like this :

    &#xA;

    ffmpeg -i distorted.mp4 -i original.mp4 -filter_complex "[0:v]scale=640:480:flags=bicubic[main];[main][1:v]libvmaf=model_path=model/vmaf_v0.6.1.json:log_path=log.json" -f null -&#xA;

    &#xA;

    Now, I remember there was a way to get VMAF scores while performing regular ffmpeg encoding. How can I do that at the same time ?

    &#xA;

    I want to encode a video like this, while also calulate the VMAF of the output file :

    &#xA;

    ffmpeg -i original.mp4 -crf 27 -s 640x480 out.mp4&#xA;

    &#xA;