Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (39)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (7090)

  • Screencasting with hardware-accelerated gnome-3 [closed]

    30 octobre 2012, par Jeroen

    I am running Ubuntu 12.04 with gnome 3 shell, and I would like to create a screencast. I have tried using recordMyDesktop, Kazam Screencaster, and ffmpeg but all suffer from the same problem, which I think has to do with hardware acceleration in Gnome 3. The recorded videos all get very glitchy with blue space for all operations that use some sort of effect. Here is an example recording : http://www.stat.ucla.edu/ jeroen/files/screencast.mkv.

    The only method that does not seem to suffer from this, is the (largely undocumented) CTRL+SHIFT+R shortcut in gnome 3 that will start a recording. However, this feature is very buggy otherwise and often crashes when I enable audio input.

    My machine has a GeForce GT 120 with Apple LED Cinema monitor. I am using the proprietary nvidia drivers that ship with Ubuntu 12.04. Is there any way I can record the video as it appears on my screen ? I know I can avoid the problem by switching to gnome2 or unity 2d or anything that does not use effects, but I would prefer to make the recordings in my regular gnome 3 environment.

  • "Invalid data found when processing input" no matter the FFMPEG configuration

    25 mars 2017, par Jamie Bonnett

    I’ve been stumped on this for a while now, no matter the configuration if use in NodeJS I always get the same error "Error : ffmpeg exited with code 1".

    Here’s my code :

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

    var server = http.createServer(function(req, res) {

       var seektime = 100;
       var pathToMovie = __dirname + '/src/video.mp4';
       var stat = fs.statSync(pathToMovie);
       res.writeHead(200, {
           'Content-Type': 'video/mp4',
           'Content-Length': stat.size
       });

       var proc = new ffmpeg(pathToMovie)
       .seekInput(seektime)
       .withVideoBitrate(1024)
       .withVideoCodec('libx264')
       .withAspect('16:9')
       .withFps(24)
       .toFormat('mp4');

       var ffstream = proc.pipe(res, {end:true});
       ffstream.on('data', function(chunk) {
           console.log('ffmpeg just wrote ' + chunk.length + ' bytes');
       });

    });
    server.listen(8000);

    I have no idea what to do now. Any ideas ?

    Thanks,
    Jamie

  • Evolution #2842 (Nouveau) : API objet_get_rubrique

    5 septembre 2012, par jluc -

    Un debuging du plugin autorite a mis en évidence le besoin et le manque d’une API sur les "rubriques contenant" d’un objet de type quelconque. Voici un début de code // yeah function objet_get_rubrique ($objet, $id_objet) switch ($objet) case ’article’ : case ’rubrique’ : case ’breve’ : return (...)