Recherche avancée

Médias (91)

Autres articles (29)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

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

  • ffmpeg leaves audio gap when concatening videos

    6 juillet 2016, par Rafael

    I am trying to cut a video in 2 parts then reassembling with ffmpeg but the final output has a small audio glitch right where the segments meet. I am using the following command to split the video 1.mp4 in 2 parts :

    ffmpeg -i 1.mp4 -ss 00:00:00 -t 00:00:02 -async 1 1-1.mp4

    and

    ffmpeg -i 1.mp4 -ss 00:00:02 -t 00:00:02 -async 1 1-2.mp4

    Once I have the 2 parts I am concatening them back together with :

    ffmpeg -f concat -i files.txt -c copy output.mp4

    files.txt is correctly listing both files. Can anyone point me to where the problem might be ?

    Thanks

  • Merge commit ’35c858066840352d6d43385bbc728467c5150974’

    26 juin 2016, par Hendrik Leppkes
    Merge commit ’35c858066840352d6d43385bbc728467c5150974’
    

    * commit ’35c858066840352d6d43385bbc728467c5150974’ :
    avconv : stop using AVStream.codec

    Not merged, as ffmpeg.c is not migrated to codecpar yet, and this commit
    only changes minor parts of AVStream.codec usage, which should get applied
    after ffmpeg.c is using codecpar.

    Merged-by : Hendrik Leppkes <h.leppkes@gmail.com>

  • How to join pieces of images into one with using FFmpeg API ?

    23 juin 2016, par Arya GM

    I have parts of one image like

    • 0x0_img1.jpg
    • 100x200_img1.jpg
    • 300x0_img1.jpg
    • 360x420_img1.jpg
    • 1080x720_img1.jpg

    I just want to know how to merge these into a single image.

    Image name has quadrants details (0x0 , 100x200... etc,.), which are the start position of the parts to the orginal image

    Now how do I merge these parts of images using the FFMPEG c lib