Recherche avancée

Médias (0)

Mot : - Tags -/configuration

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

Autres articles (104)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

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

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

Sur d’autres sites (6669)

  • lavc/opusdsp : simplify R-V V postfilter

    16 décembre 2023, par Rémi Denis-Courmont
    lavc/opusdsp : simplify R-V V postfilter
    

    This skips the round-trip to scalar register for the sliding 'x'
    coefficients, improving performance by about 5%. The trick here is that
    the vector slide-up instruction preserves elements in destination vector
    until the slide offset.

    The switch from vfslide1up.vf to vslideup.vi also allows the elimination
    of data dependencies on consecutive slides. Since the specifications
    recommend sticking to power of two offsets, we could slide as follows :

    vslideup.vi v8, v0, 2
    vslideup.vi v4, v0, 1
    vslideup.vi v12, v8, 1
    vslideup.vi v16, v8, 2

    However in the device under test, this seems to make performance slightly
    worse, so this is left for (in)validation with future better hardware.

    • [DH] libavcodec/riscv/opusdsp_rvv.S
  • Converting a H.264-Stream with node.js using fluent-ffmpeg

    10 novembre 2014, par Andreas Lackner

    I want to convert a H.264 stream (provided by a foscam via RTSP) into a ogg-stream (via HTTP) using node.js and ffmpeg.
    So far I tried it with VLC, wich works fine. But VLC needs too much CPU power.

    I’ve tried the following :

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

    http.createServer(function (req, res) {
       var command = ffmpeg();
       command.input('rtsp://user:password@foscam.example.com:88/videoMain');
       command.inputFormat('rtsp');
       command.videoCodec('libtheora');
       command.audioCodec('libvorbis');
       command.toFormat('ogg');

       console.log('New Request');
       res.writeHead('200', {
           'Content-Type' : 'video/ogg',
           'Connection' : 'keep-alive',
           "Accept-Ranges" : "bytes"
       });
       command.on('error', function(err, stdout, stderr) {
             console.log("error:"+err);
             console.log('ffmpeg stdout: ' + stdout);
             console.log('ffmpeg stderr: ' + stderr);
           });
       command.output(res);
    }).listen(8080, 'localhost');

    If I try to open the stream with VLC, I don’t get any response.
    Does anybody know what’s wrong ?

  • Thread count option in FFmpeg for FASTEST conversion to h264 ?

    9 février, par S B

    I need to maximize speed while converting videos using FFmpeg to h264

    



      

    • Any input format of source videos
    • 


    • User's machine can have any number of cores
    • 


    • Power and memory consumption are non-issues
    • 


    



    Of course, there are a whole bunch of options that can be tweaked but this question is particularly about choosing the best -thread <count></count> option. I am trying to find an ideal thread count as a function of

    &#xA;&#xA;

      &#xA;
    • no. of cores
    • &#xA;

    • input video format
    • &#xA;

    • h264-friendly values maybe ?
    • &#xA;

    • anything else missed above ?
    • &#xA;

    &#xA;&#xA;

    I am aware the default -thread 0 follows one-thread-per-core approach which is supposed to be optimal. But I am not sure if this is time or space-optimized. Also, on certain testcases, I've seen more threads (say 4 threads on my dual core test machine) finishes quicker than the default.

    &#xA;&#xA;

    Any other direction, say configure options w.r.t. threads, worth pursuing ?

    &#xA;