Recherche avancée

Médias (0)

Mot : - Tags -/content

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

Autres articles (104)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    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 (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (10516)

  • Media Type Unrecognized with FFMPEG file generated

    2 août 2016, par pirmax

    I have an upload problem with the Twitter API.
    The problem is caused by codecs I think.

    I use FFMPEG to concatenate an audio file and an image, so to build a 30-second video to a file not exceeding in the 1MB.

    Here is the code that allows me to build this file and then upload the video via the Twitter API :

       var convert = function(image, audio, output) {
       var proc = ffmpeg(image)
       .loop(30)
       .addInput(audio)
       .format('mp4')
       .videoBitrate('1024k')
       .videoCodec('mpeg4')
       .size('640x640')
       .audioBitrate('128k')
       .audioChannels(2)
       .audioCodec('libfaac')
       .on('end', function() {
           console.log(output);
           fs.readFile(output, function(err, base64data) {
               client.post('media/upload', { media: base64data }, function (error, media, response) {
                   console.log(media);
               });
           });
       })
       .on('error', function(err) {
           console.log('an error happened: ' + err.message);
       })
       .save(output);
    };

    Each upload, I get the following message : unrecognized media type

    { request: '/1.1/media/upload.json',
     error: 'media type unrecognized.' }

    Could you help me please ? Thanks !

  • Set GOP length for HEVC-Encoding in ffmpeg

    18 juin 2018, par nm82

    I want to encode an xxx.y4m file to hevc and set the GOP-length to a particular value, open and closed gop.

    To encode I’m using :

    ...>ffmpeg -i xxx.y4m -c copy xxx.hevc

    this gives me the hevc-encoded file, now I want to set a particular gop-length

    ...>ffmpeg -i xxx.y4m -c:v libx265 -keyint=1 -open-gop=1 -c copy xxx.hevc

    is not working because "option not found"

    kind regards

  • AVOptions : do not range check flag options.

    26 octobre 2013, par Anton Khirnov
    AVOptions : do not range check flag options.
    

    It does not make sense in the vast majority of use cases, no currently
    defined AV_OPT_TYPE_FLAGS options in Libav set the range to anything
    nontrivial, and many of those get it wrong (the "correct" range is
    INT_MIN to INT_MAX so that the builtin constant "all" works).

    • [DBH] libavutil/opt.c