Recherche avancée

Médias (91)

Autres articles (90)

  • 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 documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (4956)

  • FFMPEG Multiple task for converting video to image sequence

    26 septembre 2020, par Gabriel Moraes Aquino

    I need help to make multiple task of that :

    


    ffmpeg -i file.mp4 -r 0.1 output_%04d.jpg


    


    I have basically 200 video files to do that action and I want to create a single code that I can send to ffmpeg at once. I have tried with & in the end but it didn't work.

    


    please help !
Gabriel

    


  • How does chromium apk load external lib-ffmpeg ?

    18 juin 2024, par weixiong wan

    Is there a way to make chromium APks that do not contain libffmpeg and only load external libffmpeg at runtime ?

    


    I tried unpacking, unpacking, and signing the TrichromeLibrary.apk with apktool, but the trichromelibrary.apk didn't install to the board.

    


  • fluent-ffmpeg converting MKV to MP4 gives error "Conversion Failed"

    19 juillet 2019, par Jackie

    I am trying to use fluent-ffmpeg to stream a video from disk, this video is a MKV file. I am trying to transcode this video to MP4 on my NodeJS server and stream it to the client. However, I keep getting the error code 1: Conversion failed! when I try to transcode the MKV file to MP4. Does anyone know why I am getting this error ?

    My code works when I try to transcode a MP4 file to MKV (matroska), but it does not work the other way around.

    Here is the code I am using :

    app.get('/video123', function (req, res) {
     var path = 'assets/sample2.mkv';
     ffmpeg(path)
       .format('mp4')
       .on('end', function () {
         console.log('file has been converted successfully');
       })
       .on('progress', function (progress) {
         console.log('Processing: ' + progress.frames + 'frames done');
       })
       .on('error', function (err) {
         console.log('an error happened: ' + err.message);
       })
       .pipe(res, { end: true });
    });