Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (105)

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

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (16033)

  • How to add multiple audios to a video for different duration and different start time for each audio in fluent-ffmpeg

    13 février 2021, par Javed Saifi

    I have a video(no audio) file of 20 second and 2 audio file(can be more than 2). What I want is, audio-1 start from 2 seconds and play for 5 seconds, and audio-2 start from 8 seconds and play for 3 seconds. Final out will be a 20 seconds video where audio-1 will be played from 2 to 7 seconds, and audio-2 will be played from 8 to 11 seconds.

    


    

    

    const ffmpeg = require('fluent-ffmpeg');
    
    ffmpeg("video.mp4")
            .mergeAdd("public/audio.mp3")
            .setStartTime(2)
            .duration(5)
            .mergeAdd("public/short.mp3")
            .setStartTime(8)
            .duration(3)
            .saveToFile('public/temp/output.mp4')
            .on('progress', function (progress) {
                console.log(progress.percent.toString()+'%');
            })
            .on('end', function() {
                console.log('Finished processing');
            })
            .on('error', function (err, stdout, stderr) {
                console.log('Cannot process video: ' + err.message);
            })
            .run();

    


    


    



    Above is the code I'm using and getting and output of 5 seconds video without audio. Thank you in advance.

    


  • Add multiple audios to a video for different duration and different start time for each audio in fluent-ffmpeg

    12 février 2021, par Javed Saifi

    I have a video(no audio) file of 20 second and 2 audio file(can be more than 2). What I want is, audio-1 start from 2 seconds and play for 5 seconds, and audio-2 start from 8 seconds and play for 3 seconds. Final out will be a 20 seconds video where audio-1 will be played from 2 to 7 seconds, and audio-2 will be played from 8 to 11 seconds.

    


    

    

    const ffmpeg = require('fluent-ffmpeg');
    
    ffmpeg("video.mp4")
            .mergeAdd("public/audio.mp3")
            .setStartTime(2)
            .duration(5)
            .mergeAdd("public/short.mp3")
            .setStartTime(8)
            .duration(3)
            .saveToFile('public/temp/output.mp4')
            .on('progress', function (progress) {
                console.log(progress.percent.toString()+'%');
            })
            .on('end', function() {
                console.log('Finished processing');
            })
            .on('error', function (err, stdout, stderr) {
                console.log('Cannot process video: ' + err.message);
            })
            .run();

    


    


    



    Above is the code I'm using and getting and output of 5 seconds video without audio. Thank you in advance.

    


  • movenc : Print a warning for an unhandled case of nonzero start dts with empty_moov

    11 octobre 2014, par Martin Storsjö
    movenc : Print a warning for an unhandled case of nonzero start dts with empty_moov
    

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavformat/movenc.c