Recherche avancée

Médias (91)

Autres articles (83)

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (6111)

  • Determine hardware acceleration support for a machine running libffmpeg via C++

    11 septembre 2023, par Space Bear

    I'm currently trying to find out how to query a Linux system to get find out if it support Hardware accelerated decoding of a specific video codec. (this is a multi codec application and this is part of choosing the best/fastest codec depending on the situation.)

    


    My first inclination is to leverage FFMpeg as we already use it, specifically ff_find_hwaccel. However this is an internal function.

    


    Second idea would be self implementation using av_hwaccel_next but this is deprecated.

    


    Is there an upto date method to query ffmpeg to determine if a codec has hardware acceleration support on the machine it's running on ?

    


  • libavcodec/cuviddec : determine amount of decoded surfaces from within cuvid parser

    1er juin 2023, par Roman Arzumanyan
    libavcodec/cuviddec : determine amount of decoded surfaces from within cuvid parser
    

    Signed-off-by : Timo Rothenpieler <timo@rothenpieler.org>

    • [DH] libavcodec/cuviddec.c
  • When ffmpeg transcodes, How to use expr to determine video resolution auto set -b:v suitable bit rate

    2 septembre 2022, par SevenFantastic

    I tried to use this code, but ffmpeg doesn't recognize this way of writing

    &#xA;

    ffmpeg -i .\test.MP4 -b:v "expr: if(gte(iw,800), 2000K, 1000K)"  -f mp4 -y output.mp4&#xA;

    &#xA;

    even replace the iw to const 1000, it doesn`t work.

    &#xA;

    ffmpeg -i .\test.MP4 -b:v "expr: if(gte(1000,800), 2000K, 1000K)"  -f mp4 -y output.mp4&#xA;

    &#xA;

    But this way of writing it works fine I'm baffled

    &#xA;

    ffmpeg -i .\test.MP4 -force_key_frames "expr: gte(t,n_forced * 15)" -f mp4 -y output.mp4&#xA;

    &#xA;