Recherche avancée

Médias (91)

Autres articles (112)

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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (9099)

  • Evolution #4411 (En cours) : mini-pedzouille admin_plugins IE11 (et les autres..) => SVP

    11 décembre 2019, par b b

    Le bon projet pour commencer.

    Peux-tu restreindre tes tickets à un seul bug stp ?

    Amha, ça n’est pas problématique que l’affichage ne soit pas au top sous IE11 qui est un navigateur dont le support n’est plus assuré cf https://support.microsoft.com/fr-fr/help/17454/lifecycle-faq-internet-explorer , de plus cela ne case rien fonctionnellement. Mais bon, comme ça n’est qu’un espace à ajouter, pourquoi pas, attendons d’autres avis...

  • avcodec/nvenc : fix lossless tuning logic

    18 avril 2021, par Timo Rothenpieler
    avcodec/nvenc : fix lossless tuning logic
    

    Relying on the order of the enum is bad.
    It clashes with the new presets having to sit at the end of the list, so
    that they can be properly filtered out by the options parser on builds
    with older SDKs.

    So this refactors nvenc.c to instead rely on the internal NVENC_LOSSLESS
    flag. For this, the preset mapping has to happen much earlier, so it's
    moved from nvenc_setup_encoder to nvenc_setup_device and thus runs
    before the device capability check.

    • [DH] libavcodec/nvenc.c
    • [DH] libavcodec/nvenc.h
  • Fail to set profile to high when using ffmpeg with libx264

    10 mars 2012, par user1258095

    Here is my command :

    ffmpeg -i input.avi -vcodec libx264 -vpre fast -vpre high -acodec copy output.avi

    The output :

    Input #0, avi, from 'short.avi':
     Metadata:
       encoder         : Lavf53.3.0
     Duration: 00:00:25.04, start: 0.000000, bitrate: 12705 kb/s
       Stream #0.0: Video: msmpeg4v2, yuv420p, 1920x1080, 24 tbr, 24 tbn, 24 tbc
       Stream #0.1: Audio: aac, 48000 Hz, 5.1, s16, 316 kb/s
       Metadata:
         title           : ED-CM-5.1-DVD-Final2
    File for preset 'high' not found

    However, I am able to successfully transcode files when setting the profile to baseline or main, from the man page of x264 it is clear that "high" should also be a valid argument. I also want to know where these preset files are located in the file system(I am running ubuntu 11.10) so that I can make sure what arguments I can actually use for presets and profiles at the moment. I am very frustrated by this issue and would really appreciate any input from you guys. Thanks in advance.