Recherche avancée

Médias (91)

Autres articles (40)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

  • Le plugin : Gestion de la mutualisation

    2 mars 2010, par

    Le plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
    Installation basique
    On installe les fichiers de SPIP sur le serveur.
    On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
    On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
    < ?php (...)

Sur d’autres sites (3536)

  • FFMPEG : Ignore conversion is settings are the same

    12 juillet 2019, par Chieron

    I transcoded some videos, unfortunately I have to go back and transcode the audio to get the sample rates the same. Is there any way to have ffmpeg skip the video transcoding if the settings are the same(basically if the same codec and similar quality...)

    I’m using the exact same command line in all cases except I have now added -ar 44100 to get the sample rates the same(which I was not doing before)

    The reason I have to do this is that mkvtoolnix does not allow merging of files that have different audio sample rates for some reason.

  • Handbreak ffmpeg encode vs decode speed (x265)

    10 février 2023, par Demian

    I'm encoding videos in x265 to save same storage (Gopro, DJI, etc.). This is working well for me with Handbreak and I got some good CRF values for my use cases.

    &#xA;

    My question is about the encoding preset. The slower it is the better Qualitiy per Bitrate you get, but the encoding time increases.

    &#xA;

    But how the decoding time. Does it also consume more CPU power to watch (decode) a video which was created with a slow prestet then a fast preset ?

    &#xA;

    Thank you !

    &#xA;

  • Using ffmpeg without hardware acceleration (C++)

    13 février 2018, par MadMarky

    I’m working on an application (c++/Linux) that uses the ffmpeg 3.4 libraries to do video encoding. Since version 3.3 hardware acceleration is enabled by default if the platform supports it. The graphics card in my dev system has hardware acceleration support, but the tool also has to run on older systems that do not.
    How can i configure ffmpeg to disable hardware acceleration for video encoding ? There is a ton of info about enabling, but i just cant find how to disable it.

    ps.
    There already is a similar question : How to turn off ffmpeg hardware acceleration but its a year old and unfortunately still unanswered.