Recherche avancée

Médias (0)

Mot : - Tags -/presse-papier

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

Autres articles (41)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (4848)

  • Revision 4503 : On commence à intégrer la possibilité de créer des users et sites dans ...

    24 novembre 2010, par kent1 — Log

    On commence à intégrer la possibilité de créer des users et sites dans piwik depuis la gestion de la mutu

  • Uncaught Error : spawn D :\Users\...\ffmpeg.exe ENOENT at Process.ChildProcess._handle.onexit

    15 avril 2020, par yasgur99

    I am trying to use ffmpeg in an electron project
I did :
yarn add ffmpeg-static
yarn add fluent-ffmpeg

    



    In the file where I am trying to use it I have :

    



    import ffmpeg from 'fluent-ffmpeg';
import ffmpegStatic from 'ffmpeg-static';


    



    In the method that calls ffmpeg, I have :

    



    ffmpeg.setFfmpegPath(ffmpegStatic);
ffmpeg(path)
  .audioCodec('aac')
  .videoCodec('h264')
  .videoBitrate(8192) // 8 MB = 1024 * 8 KB
  .outputOptions([
    '-y',
    'movflags','faststart'
  ])
  .output('temp.mp4')
  .on('start', () => console.log('starting'))
  .on('stderr', (err,stdout,stderr) => {
    console.log('Cannot Process Video' + err.message);
  })
  .on('progress', progress => {
    console.log(progress.percent);
  })
  .on('end', (stdout, stderr) => {
    fs.readFile('temp.mp4', (error, data) => {
      console.log(error);

      if (error) throw error;
        const filename = path.replace(/^.*[\\\/]/, '');
        return new File([data], filename);
      });
  })
  .run();


    



    When the method that contains this code I get the following exception :

    



    events.js:187 Uncaught Error: spawn D:\Users\Michael\Documents\desktopapp\app\ffmpeg.exe ENOENT
    at Process.ChildProcess._handle.onexit (internal/child_process.js:264)
    at onErrorNT (internal/child_process.js:456)
    at processTicksAndRejections (internal/process/task_queues.js:80)


    



    If I console.log(ffmpegStatic) is outputs D:\Users\Michael\Documents\desktopapp\app\ffmpeg.exe

    



    If I look in this folder, I do not see ffmpeg.exe. How can I fix this ?

    


  • Test how many users can see video on my server

    22 février 2016, par Oferta Për Punë

    I stream a m3u8 and rtmp link from my server and i want to see how many users the server can handle at same time. (I’m monitoring RAM, CPU with the itop command and bandwidth with the nload command)

    I tried to test opening lot of connections in ssh but with no success

    cvlc http://example.com/video.m3u8 & cvlc http://example.com/video.m3u8 & cvlc http://example.com/video.m3u8

    so I think it is not working like this, i also tried

    rtmpdump -r rtmp://example.com/video & rtmpdump -r rtmp://example.com/video & rtmpdump -r rtmp://example.com/video