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)

  • FFMPEG How to apply subtitles [ass] on a live video stream

    19 août 2014, par Lewisou

    I am going to develop a camera recording application.

    One of the feature is to apply subtitles while recording. Users can key in subtitles on the camera preview screen when the camera is recording.

    I know I can apply the subtitles after the record is finished by running :

    ffmpeg -i ./file.mp4 -c:v libx264 -c:a copy -vf "ass=t.ass" out.mp4

    but which takes a very long time. So it will be better to do it on the fly (while recording a video).

    Notice : the subtitle itself is also a live-stream.

    Any one help ?

  • Adding subtitles with fluent-ffmpeg

    7 mars 2016, par eZo

    I’m trying to burn in subtitles into a video. This command works perfectly from command line :
    ffmpeg -i in.mp4 -vf subtitles=sub.srt:force_style='Fontsize=20' out.mp4

    My code on server side doesn’t seem to do much (it creates test.mp4 though)

    ffmpeg('temp/subtitleVideos/qTWVbM5pkKms_pJbE8OAvH3N.mp4')
               .outputOptions(
                   '-vf subtitles=temp/subtitleVideos/qTWVbM5pkKms_pJbE8OAvH3N.srt'
               )
               .on('error', function(err) {
                   console.log('Error: ' + err.message);
               })
               .save(path + 'test.mp4');

    and I get the following error : Error: ffmpeg exited with code 1: Error opening filters!

  • Adding subtitles with fluent-ffmpeg

    26 août 2020, par eZo

    I'm trying to burn in subtitles into a video. This command works perfectly from command line :
ffmpeg -i in.mp4 -vf subtitles=sub.srt:force_style='Fontsize=20' out.mp4

    



    My code on server side doesn't seem to do much (it creates test.mp4 though)

    



    ffmpeg('temp/subtitleVideos/qTWVbM5pkKms_pJbE8OAvH3N.mp4')
            .outputOptions(
                '-vf subtitles=temp/subtitleVideos/qTWVbM5pkKms_pJbE8OAvH3N.srt'
            )
            .on('error', function(err) {
                console.log('Error: ' + err.message);
            })
            .save(path + 'test.mp4');


    



    and I get the following error : Error: ffmpeg exited with code 1: Error opening filters!