Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (19)

  • Qualité du média après traitement

    21 juin 2013, par

    Le bon réglage du logiciel qui traite les média est important pour un équilibre entre les partis ( bande passante de l’hébergeur, qualité du média pour le rédacteur et le visiteur, accessibilité pour le visiteur ). Comment régler la qualité de son média ?
    Plus la qualité du média est importante, plus la bande passante sera utilisée. Le visiteur avec une connexion internet à petit débit devra attendre plus longtemps. Inversement plus, la qualité du média est pauvre et donc le média devient dégradé voire (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (5008)

  • Unable to use ffprobe in fluent-ffmpeg

    21 octobre 2019, par GJ.

    I was intended to use ffprobe function to extract video information and here is my code :

    var FFmpeg = require('fluent-ffmpeg');
    //...
    var convert_using_ffmpeg = function (source, target) {

       var tempfile = path.join(config.tmproot, path.basename(target));

       new FFmpeg({ source: source })
           .withVideoCodec('libx264')
           .withVideoBitrate('512')
           .withAudioQuality(5)
           .withAudioCodec('libmp3lame')
           .withSize('360x288')
           //.ffprobe(function(err,data) {
           //  console.dir(data);
           //})
           .toFormat('flv')
           .on('error', function (err) {
               console.log('An error occurred: ' + err.message);
           })
           .saveToFile(tempfile, function () {
               fs.rename(tempfile, target);
           });
    };

    The compiler simply said Object #<ffmpegcommand> has no method 'ffprobe</ffmpegcommand> when I execute the program. The fluent-ffmpeg API says I should add FFMPEG_PATH and FFPROBE_PATH environment variable before executing, but the fact is I could execute ffmpeg directly in command line even if it does not exist in PATH environment variable, and the node.js program runs successfully without evoking the ffprobe function. Plus the API also says ffprobe comes together with most distribution of ffmpeg, if so, how can I add ffprobe to the environment variable separately ?

    I’m using fluent-ffmpeg 1.7.0 currently.

  • Unable to use ffprobe in fluent-ffmpeg

    24 novembre 2014, par Risk Junk

    I was intended to use ffprobe function to extract video information and here is my code :

    var FFmpeg = require('fluent-ffmpeg');
    //...
    var convert_using_ffmpeg = function (source, target) {

       var tempfile = path.join(config.tmproot, path.basename(target));

       new FFmpeg({ source: source })
           .withVideoCodec('libx264')
           .withVideoBitrate('512')
           .withAudioQuality(5)
           .withAudioCodec('libmp3lame')
           .withSize('360x288')
           //.ffprobe(function(err,data) {
           //  console.dir(data);
           //})
           .toFormat('flv')
           .on('error', function (err) {
               console.log('An error occurred: ' + err.message);
           })
           .saveToFile(tempfile, function () {
               fs.rename(tempfile, target);
           });
    };

    The compiler simply said Object #<ffmpegcommand> has no method 'ffprobe</ffmpegcommand> when I execute the program. The fluent-ffmpeg API says I should add FFMPEG_PATH and FFPROBE_PATH environment variable before executing, but the fact is I could execute ffmpeg directly in command line even if it does not exist in PATH environment variable, and the node.js program runs successfully without evoking the ffprobe function. Plus the API also says ffprobe comes together with most distribution of ffmpeg, if so, how can I add ffprobe to the environment variable separately ?

    I’m using fluent-ffmpeg 1.7.0 currently.

  • How to bold a font in ffmpeg ?

    28 février 2023, par Peter.k

    I have an issue which I don't fully understand. I use font to merge subtitles in video which is installed in my laptop and everything works fine with this code :

    &#xA;

    -vf "subtitles=tt101.srt:force_style=&#x27;FontName=Lucida Console,Style=Bold,FontSize=15,PrimaryColour=&amp;H00111188,OutlineColour=&amp;HFFFFFFFF,BorderStyle=4,BackColour=&amp;H44FFFFFF,Outline=5,Shadow=0,MarginV=10&#x27;"&#xA;

    &#xA;

    But later I found this font isn't really bold but regular. I checked in my system and indeed, there's no bold version installed, so this Style=Bold fragment is ignored (as I think it is). But how the hell, while using this very font in some other programs like Word, Excel, Photoshop, PotPlayer, etc, I am able to bold this font anyway ? Why ffmpeg doesn't make it ? Does these programs use something else than Windows show in the Font catalog ?

    &#xA;