Recherche avancée

Médias (91)

Autres articles (39)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

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

Sur d’autres sites (7127)

  • doc/scaler, swscale/options : use proper capitalization

    10 octobre 2015, par Ganesh Ajjanagadde
    doc/scaler, swscale/options : use proper capitalization
    

    Proper names should be capitalized in all user facing API as far as
    possible. The option names themselves have not been changed since :
    1. We consistently keep option names in lower case.
    2. Changing them would break existing scripts.

    The converse is also true : improper names should not be capitalized
    generally.

    Signed-off-by : Ganesh Ajjanagadde <gajjanagadde@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] doc/scaler.texi
    • [DH] libswscale/options.c
  • avcodec/jpeg2000dwt : Fix value of F_LFTG_X and I_LFTG_X

    21 juin 2015, par Michael Niedermayer
    avcodec/jpeg2000dwt : Fix value of F_LFTG_X and I_LFTG_X
    

    Even if the jpeg2000 spec uses a wrong value this does not
    make mathematics work this way, also this has been corrected in the 2004
    version AFAIK

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

    • [DH] libavcodec/jpeg2000dwt.c
    • [DH] tests/ref/fate/j2k-dwt
    • [DH] tests/ref/fate/jpeg2000-dcinema
    • [DH] tests/ref/vsynth/vsynth1-jpeg2000-97
    • [DH] tests/ref/vsynth/vsynth2-jpeg2000-97
    • [DH] tests/ref/vsynth/vsynth3-jpeg2000-97
    • [DH] tests/ref/vsynth/vsynth_lena-jpeg2000-97
  • How do I stream using ffmpeg ?

    21 juillet 2023, par WhiteWolfDev

    I am trying to build an application that streams a video file (.mkv) to the browser, using the Elixir programming language. It works using .mp4, since browsers only support the WebM container format. My goal is to convert the .mkv file to .mp4, on the fly, while streaming. I'm not sure if its even possible since I couldn't find anything on the internet. Is it possible to have an offset from which the conversion should begin, like if I skipped to the middle of the video ?

    &#xA;

    Also it's not required to be consistently streaming. It can be delivered in small batches/chunks. As of now I'm using ffmpeg, but I'm open to suggestions.

    &#xA;