Recherche avancée

Médias (0)

Mot : - Tags -/alertes

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

Autres articles (52)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

Sur d’autres sites (8770)

  • Pipe between two child processes in Node.js ?

    4 mai 2014, par Joey Morani

    I’m trying to capture video using FFmpeg with Node.js, and send it to a browser via websockets for playing using the MediaSource API. What I have so far works in Firefox but doesn’t decode properly in Chrome. Apparently, from reading this question I need to use the sample_muxer program to ensure each ’cluster’ starts with a keyframe.

    Here’s the code I’m using :

    var ffmpeg = child_process.spawn("ffmpeg",[
       "-y",
       "-r", "30",

       "-f","dshow",          
       "-i","video=FFsource:audio=Stereo Mix (Realtek High Definition Audio)",

       "-vcodec", "libvpx",
       "-acodec", "libvorbis",

       "-threads", "0",

       "-b:v", "3300k",
       "-keyint_min", "150",
       "-g", "150",

       "-f", "webm",

       "-" // Output to STDOUT
    ]);

    ffmpeg.stdout.on('data', function(data) {
       //socket.send(data); // Just sending the FFmpeg clusters works with Firefox's
                            // implementation of the MediaSource API. No joy with Chrome.

       // - - - This is the part that doesn't work - - -
       var muxer = child_process.spawn("sample_muxer",[
           "-i", data, // This isn't correct...

           "-o", "-" // Output to STDOUT
       ]);

       muxer.stdout.on('data', function(muxdata) {
           socket.send(muxdata); // Send the cluster
       });
    });

    ffmpeg.stderr.on('data', function (data) {
       console.log("" + data); // Output to console
    });

    Obviously I’m not piping it correctly and I’m unsure how I would while also including the arguments. Appreciate any help getting this working. Thanks !

  • Remove support for building for mingw32ce (Windows CE)

    30 août 2017, par Martin Storsjö
    Remove support for building for mingw32ce (Windows CE)
    

    The toolchain for this target is unmaintained since many years.

    While it has been continuously build tested on fate, it hasn’t
    actually been tested at runtime since many, many years (and back
    then, only a few codecs in libavcodec were tested).

    So far, keeping support for it has been mostly effortless, but
    the compiler does seem to have issues with dllimported data symbols,
    ending up as internal compiler errors in some cases. Instead of
    jumping through further hoops to work around that, just remove the
    target.

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

    • [DBH] configure
    • [DBH] libavformat/os_support.h
    • [DBH] libavutil/file_open.c
    • [DBH] libavutil/wchar_filename.h
    • [DBH] tools/qt-faststart.c
  • Only show prompt if there is more than one screen.

    30 décembre 2019, par blueimp
    Only show prompt if there is more than one screen.
    

    Use the default screen when no index is entered.