Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (80)

  • 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 Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

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

Sur d’autres sites (10908)

  • rtsp : Handle requests from server to client

    12 octobre 2011, par Tommy Winther

    rtsp : Handle requests from server to client

  • libswscale : fix compiler warnings enumerated type mixed with another type

    14 mars 2015, par Himangi Saraogi
    libswscale : fix compiler warnings enumerated type mixed with another type
    

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DH] libswscale/swscale_unscaled.c
  • How see if the client aborted the request in nodejs

    9 février 2023, par Pitzho

    I'm trying do a mp4 converter, but if the client cancel the request, continues the conversion, how I stop the conversion if the client cancel the request ?

    &#xA;

    Code from conversor :

    &#xA;

        // Start the ffmpeg child process&#xA;    const ffmpegProcess = cp.spawn(ffmpeg, [&#xA;    // Remove ffmpeg&#x27;s console spamming&#xA;    &#x27;-loglevel&#x27;, &#x27;8&#x27;, &#x27;-hide_banner&#x27;,&#xA;    // Redirect/Enable progress messages&#xA;    &#x27;-progress&#x27;, &#x27;pipe:3&#x27;,&#xA;    // Set inputs&#xA;    &#x27;-i&#x27;, &#x27;pipe:4&#x27;,&#xA;    &#x27;-i&#x27;, &#x27;pipe:5&#x27;,&#xA;    // Map audio &amp; video from streams&#xA;    &#x27;-map&#x27;, &#x27;0:a&#x27;,&#xA;    &#x27;-map&#x27;, &#x27;1:v&#x27;,&#xA;    // Keep encoding&#xA;    &#x27;-c:v&#x27;, &#x27;copy&#x27;,&#xA;    // Define output file&#xA;    token &#x2B; formato,&#xA;  ], {&#xA;    windowsHide: true,&#xA;    stdio: [&#xA;      /* Standard: stdin, stdout, stderr */&#xA;      &#x27;inherit&#x27;, &#x27;inherit&#x27;, &#x27;inherit&#x27;,&#xA;      /* Custom: pipe:3, pipe:4, pipe:5 */&#xA;      &#x27;pipe&#x27;, &#x27;pipe&#x27;, &#x27;pipe&#x27;, &#x27;pipe&#x27;&#xA;    ],&#xA;  });&#xA;&#xA;  ffmpegProcess.stdio[3].on(&#x27;data&#x27;, (err) => {&#xA;    console.log(res.status())&#xA;  });&#xA;  &#xA;  audio.pipe(ffmpegProcess.stdio[4]);&#xA;  video.pipe(ffmpegProcess.stdio[5]);&#xA;  &#xA;  ffmpegProcess.stdio[6].on(&#x27;error&#x27;, (err) => {&#xA;    // Remover token do objeto&#xA;    delete inUseTokens[token];&#xA;    res.status(500).send(err.message);&#xA;  });&#xA;&#xA;  ffmpegProcess.stdio[6].on(&#x27;close&#x27;, () => {&#xA;    console.log("convertido!")&#xA;    res.render(&#x27;downloated&#x27;, {formato: formato, title: titulo, token: token, thumbnail: thumbnail, seconds: seconds})&#xA;    })&#xA;  });&#xA;

    &#xA;

    I don't know how I can solve this...

    &#xA;