Recherche avancée

Médias (0)

Mot : - Tags -/protocoles

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

Autres articles (72)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (4591)

  • combine raw video and audio buffer and play using named pipes by ffplay

    28 juillet 2023, par user8616480

    I have one video buffer and one audio buffer, I want to combine these buffers and play using ffplay as a combined entity, currently I am using this command , which obliviously doesn't work...

    


    ffplay -f rawvideo -pixel_format bgr24 -video_size 1280x720 -vf "transpose=2,transpose=2" -i \.\pipe\VirtualVideoPipe -f s32le -channels 2 -sample_rate 44100 -i \.\pipe\VirtualAudioPipe


    


    error massage says ...

    


    Argument '\.\pipe\VirtualAudioPipe' provided as input filename, but '\.\pipe\VirtualVideoPipe' was already specified.


    


    what should be the command for combining two named pipe video and audio sources and play as one.

    


    kindly help ...

    


  • MP4 made in FFMPEG cannot play / be opened

    29 juin 2021, par Anters Bear

    I am trying to make a video by combining a sequence of PNG images. It seems to be working fine except, the outputted MP4 cannot actually be opened / play with Quicktime. So basically it's not working. I can't figure out what the issue is or how to even go about debugging this because I don't get an error or anything. Below is my code :

    


    var ffmpegPath = require('@ffmpeg-installer/ffmpeg').path;
var ffmpeg = require('fluent-ffmpeg');
ffmpeg.setFfmpegPath(ffmpegPath);
var command = ffmpeg();

command
    .size('2000x2000')
    .input('Aussie1_Export/test_%04d.png')
    .inputFPS(1)
    .output('Aussie_Export_Video/test.mp4')
    .outputFPS(30)
    .noAudio()
    .on('error', (error) => { console.log('error'); })
    .run();


    


  • FFmpeg video conversion wont play in my browser

    3 juin 2015, par Marc Rasmussen

    I am trying no matter what format of video my clients upload to convert them into three different formats :

    var videoExtensions = ['mp4', 'webm', 'ogg'];

       var ffmpeg = require('fluent-ffmpeg');
    videoExtensions.forEach(function (extension) {
       var proc = new ffmpeg({source: media.file.path, nolog: false})
           .withVideoCodec('libx264')
           .withVideoBitrate(800)
           .withAudioCodec('libvo_aacenc')
           .withAudioBitrate('128k')
           .withAudioChannels(2)
           .toFormat(extension)
           .saveToFile(media.targetDir + media.getName() + '.' + extension,
           function (retcode, error) {
               console.log('file has been converted succesfully');
           });
    });

    On my local machine I am able to open and play the videos no problem

    However as soon as I load them as resources into my browser it simply will not play.

    If I however instead of converting just move the file I have no problem opening the file in my browser however then I will not be able to get the file in all three formats.

    My question is am I doing something wrong in the above code or why is my browser "rejecting" the files so to speak ?