Recherche avancée

Médias (0)

Mot : - Tags -/upload

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

Autres articles (73)

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

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (8286)

  • FFmpeg : how to access to RTP layer for FEC handling

    3 juin 2016, par Akon

    I need to receive to RTP streams of H.264 video (actually, an RTP payload is not significant for the question) : one stream is initial packets, and other is FEC packets (streams come to different ports). Then process them to recover loss packets resulting one output stream to be fed to a decoder.

    Also, arrived packets in both streams may be reordered due to network transmission, so some RTP-jitter preprocessing is required.

    I have this task completed with GS1treamer, but how can I do such processing with FFmpeg ?

    Thanks.

  • avformat/matroska : simplify signed int access code

    15 novembre 2013, par Michael Niedermayer
    avformat/matroska : simplify signed int access code
    

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/matroskadec.c
    • [DH] libavformat/matroskaenc.c
  • How to send loading data before sending a file in Express Get Request

    2 octobre 2023, par TheHangel

    I have an express Node.js server.

    &#xA;

    The objective of this server is make a process with ffmpeg and to send the file as result.

    &#xA;

    I manage to know the percentage of the process. But I don't know how to make the client aware of the percentage before it sends the file.

    &#xA;

    So here is my server-side code :&#xA;(I omitted some part of the ffmpeg process because, this is not very important, the important thing is to send the variable 'percent').

    &#xA;

    const ffmpeg = require(&#x27;fluent-ffmpeg&#x27;);&#xA;&#xA;app.get(&#x27;/download&#x27;, (req,res) => {&#xA;    const video = new ffmpeg(&#x27;myaudio.mp3&#x27;);&#xA;    let total;&#xA;    video&#xA;        .format(&#x27;mp3&#x27;)&#xA;        .on(&#x27;codecData&#x27;, (data) => {&#xA;            total = parseInt(data.duration.replace(/:/g, &#x27;&#x27;));&#xA;        })&#xA;        .on(&#x27;progress&#x27;, (progress) => {&#xA;            const time = parseInt(progress.timemark.replace(/:/g, &#x27;&#x27;));&#xA;            const percent = (time / total) * 100;&#xA;            console.log(percent); // I want to send &#x27;percent&#x27; to the client instead of console.log&#xA;        })&#xA;        .on(&#x27;end&#x27;, () => {&#xA;            res.status(200).sendFile(output); // then it sends the file to client&#xA;        })&#xA;        .save(output);&#xA;});&#xA;

    &#xA;

    if you have a solution, can you show the client-side example, (axios or fetch) please ?

    &#xA;