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)

  • Revision 901c495482 : Added extra check to rd_auto_partition_range() Added check that the returned ma

    4 septembre 2013, par Paul Wilkins

    Changed Paths :
     Modify /vp9/encoder/vp9_encodeframe.c



    Added extra check to rd_auto_partition_range()

    Added check that the returned max and minimum are
    valid in bottom and right border cases.

    Change-Id : I2d6cdc9b5f04c7d0ff512ddcf3228331e028bf9b

  • Can FFMPEG force a JPEG to be 16:9 size ? [closed]

    18 octobre 2020, par Franken

    I am creating thumbnails with FFMPEG and I using a command line like this :

    &#xA;

    ffmpeg -y -ss 00:31:05.435 -i "E:\mov\myVid.mp4" -vframes 1 -q:v 2 "C:\Users\Franken\Pictures\Temp\test.jpg"&#xA;

    &#xA;

    It works very well. Some older videos that do not have a modern dimension and even newer ones with very wide dimensions do not produce a desirable thumbnail because it is very skewed when I try to use it in a frame that is 16:9. Can I force all JPEG's produced to be 16:9 ? I realize that some of the video would get cropped in some cases. Thanks

    &#xA;

  • FFMPEG - converting interlaced 720x480 MPEG2 to scaled up progressive 1440x1080 HEVC (Nvidia available)

    6 février 2024, par PCSO SAR COMM

    I am trying to improve the video of a ripped DVD. The current file is encoded in MPEG2 interlaced and 720:480. I am trying see if it is possible, with a bit of conversion, for it to look better... possibly upscaling to near-HD if it is possible. My computer does have an Nvida (1050 Ti) card, so I was thinking that may help.

    &#xA;

    I used

    &#xA;

    ffmpeg -hwaccel cuda -i "input.mkv" -c:v hevc_nvenc -preset p7 -profile:v 1 -level 0 -tier 1 -tune 1 -vf yadif -vf "scale=1440x1080:flags=lanczos" -c:a aac -c:s srt output.mkv&#xA;&#xA;

    &#xA;

    The "-vf yadif" portion in that was intended to de-interlace, after looking at ideas on de-interlacing but the output still ends up being interlaced. The interlace artifact is quite annoying when viewed on my computer.

    &#xA;