Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (67)

  • Les images

    15 mai 2013
  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

  • 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 (7228)

  • Injecting KLV data in video stream using ffmpeg

    29 octobre 2022, par lsilk

    Does anyone here have any experience with streaming video on one stream, for example 0:0, and then taking a .bin file in klv format and putting it in 0:1, and then outputting that to a mpegts udp stream ? I have it working, the only problem is that I have written a python program to update the klv data file while it is streaming, but it doesn't seem to be updated in the stream.

    


    My command : ffmpeg -I "filepath.mpg" -f data -i "filepath.bin" -filter:v fps=60 -map 0:v:0 -map 1:d:0 -f mpegts udp ://IP:PORT

    


    Ive tried -I from a local file, I've also tried streaming the .bin file from an other stream after updating it, but then the fps drops to about 0.5.

    


  • Install ffmpeg on Heruko

    5 octobre 2020, par islalobo

    I have a little node.js app on heroku and I'm trying to use ffmpeg to convert some audio that has been recorded.

    


    To do that I need to install ffmpeg buildpack.

    


    When I add the build pack and deploy, I don't get any errors in the logs, but the application doesn't load and gives me a non-discript error.

    


    Build packs I've tried

    


    


    Code to convert audio

    


      try {
    let process = new ffmpeg(`./public/messages/${req.body.message}`);
    process.then((audio) => {
      audio.fnExtractSoundToMP3(`/messages/${req.body.message}.mp3`, (error, file) => {
        if (!error) console.log('Audio File: ', file);
        if (error) console.log(error);
      });
    }, (error) => {
      console.log('Error: ', error);
    });
  }
  catch(error) {
    console.log(error.code, error.msg);
  }


    


  • Get Thumbnail from a smooth streaming file (.ism)

    30 mai 2013, par Allan Chua

    Does any body know how to get a thumbnail/snapshot of a specific frame of a smooth streaming file using C#.net and WPF.

    Regards,
    Allan