Recherche avancée

Médias (91)

Autres articles (49)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • 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

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

Sur d’autres sites (12756)

  • Revision 3567 : Une erreur sur le login, on ne le recache pas et on focus sur le password ...

    11 juin 2010, par kent1 — Log

    Une erreur sur le login, on ne le recache pas et on focus sur le password On joue avec slideUp et slideDown plutôt que toggle pour éviter des effets désagréables sur safari et Chrome

  • Add subtitles starting at a specific timestamp using Ffmpeg-Python

    21 août 2023, par grilo13

    I want to add a .srt file (subtitles) to a .mp4 video. How can I add the subtitles at a specific timestamp ?

    


    As an example, my .mp4 video starts the talking part at 00:00:25, so thats there where I want to have the subtitles appearing with the audio.

    


    I have this at the moment to add the subtitles in the video (and it works) :

    


    video_clip = ffmpeg.input("background_video.mp4")
video_clip.filter("subtitles", f"Subtitles/{post_id}/sub.srt",
                                           fontsdir="fonts/Roboto-Black.ttf",
force_style="Alignment=10,FontName=Roboto-Regular,FontSize=12")
                            


    


    Thanks in advance.

    


    What I have above adds the subtitles in the beginning of the video (instead of in the 25th second)

    


  • Generating a short preview of a .webm movie

    8 octobre 2019, par urbciech

    I would like to improve my website so I would like to replace the existing .jpg thumbnails with a live preview like in youtube.After hovering over the movie, a short video showing what’s going on in the movie is shown. Do you have any idea or tip on how I can achieve this effect with ffmpeg ?