Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (49)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

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

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

  • libavformat/avformat.h : Move docs inside of #if

    30 juin 2017, par Max Weber
    libavformat/avformat.h : Move docs inside of #if
    

    Otherwise AVTimebaseSource gets av_apply_bitstream_filters' documentation in doxygen.

    Signed-off-by : Max Weber <mii7303@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/avformat.h
  • How to convert gif file into canvas and download it as gif file ? [closed]

    10 février 2021, par Bokhanov Stepan

    I want to put text on the gif file.&#xA;So I converted gif file into canvas.

    &#xA;

    I want to know way to download as gif file.&#xA;I want to use ffmpeg.

    &#xA;

  • FFmpeg with node.js. Transcode a file to another format

    19 juin 2014, par user2757842

    Have a bit of a problem with this, I have an .avi file in which I would like to transcode into a .flv file using FFmpeg, here is what I have so far :

    var ffmpeg = require('fluent-ffmpeg');

    //make sure you set the correct path to your video file
    var proc = new ffmpeg({ source: 'C:/Users/Jay/Documents/movie/drop.avi', nolog: true })

    //Set the path to where FFmpeg is installed
    .setFfmpegPath("C:\Users\Jay\Documents\FFMPEG")

    //set the size
    .withSize('50%')

    // set fps
    .withFps(24)

    // set output format to force
    .toFormat('flv')

    // setup event handlers
    .on('end', function() {
       console.log('file has been converted successfully');
    })
    .on('error', function(err) {
       console.log('an error happened: ' + err.message);
    })
    // save to file &lt;-- the new file I want -->
    .saveToFile('C:/Users/Jay/Documents/movie/drop.flv');

    It seems straightforward enough and I can do it through the FFmpeg command line, but I am trying to get it working within a node.js app, here is the error it is returning :

    C:\Users\Jay\workspace\FFMPEGtest\test.js:17
    .withSize('50%')
    ^
    TypeError: Cannot call method 'withSize' of undefined
       at Object.<anonymous> (C:\Users\Jay\workspace\FFMPEGtest\test.js:17:2)
       at Module._compile (module.js:456:26)
       at Object.Module._extensions..js (module.js:474:10)
       at Module.load (module.js:356:32)
       at Function.Module._load (module.js:312:12)
       at Function.Module.runMain (module.js:497:10)
       at startup (node.js:119:16)
       at node.js:906:3
    </anonymous>

    It throws the same error for each built in FFmpeg function (.toFormat, .withFPS etc)

    If anyone has a solution to this, I’d greatly appreciate it