Recherche avancée

Médias (91)

Autres articles (84)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (4848)

  • Simpler code sample first.

    17 septembre 2012, par Scott Schiller

    m demo/template/index.html m demo/template/template.css Simpler code sample first.

  • Node fluent-ffmpeg stream output error code 1

    6 avril 2016, par Harangue

    Following the documentation exactly, I’m attempting to use a stream to write a video conversion to file.

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

    var outStream = fs.createWriteStream('C:/Users/Jack/Videos/test.mp4');

    new FFmpeg({ source: 'C:/Users/Jack/Videos/video.mp4' })
       .withVideoCodec('libx264')
       .withAudioCodec('libmp3lame')
       .withSize('320x240')
       .on('error', function(err) {
           console.log('An error occurred: ' + err.message);
       })
       .on('end', function() {
           console.log('Processing finished !');
       })
       .writeToStream(outStream, { end: true });

    This conversion works perfectly when I use .saveToFile(), but returns

    An error occurred : ffmpeg exited with code 1

    When I run this code. I’m on Windows 8.1 64 bit using a 64 bit ffmpeg build from here.

  • Parsing the ffmpeg code for a small change

    4 janvier 2015, par Prashanth

    Referring to the post
    "Is there a way to filter out I/B/P frames in an MPEG Video stream and access the macroblock information ?".
    User has specified the following command

    ffprobe -show_frames -pretty File.mpg | grep 'pict_type' > pict_type.txt

    which writes the frame type to a text file.
    Am trying to extract the different frame types into respective folder i.e., I frames in a folder named "Iframes" and so on... How can I change the above command to achieve this ?