Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (88)

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

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

Sur d’autres sites (14341)

  • avutil/softfloat : Basic documentation for av_sincos_sf()

    19 juin 2023, par Michael Niedermayer
    avutil/softfloat : Basic documentation for av_sincos_sf()
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavutil/softfloat.h
  • avcodec/hevc : Update the USE_SAO_SMALL_BUFFER case for the alignment requirements...

    2 février 2015, par Christophe Gisquet
    avcodec/hevc : Update the USE_SAO_SMALL_BUFFER case for the alignment requirements in FFmpeg
    

    Use edge emu buffers
    And enable the code unconditionally

    Speed difference without USE_SAO_SMALL_BUFFER and with the new code :
    Decicycles : 26772->26220 (BO32), 83803->80942 (BO64)

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

    • [DH] libavcodec/hevc.c
    • [DH] libavcodec/hevc.h
    • [DH] libavcodec/hevc_filter.c
  • How to save the stream URL chunks as a video in NodeJs

    2 octobre 2020, par Harsh Lodhi

    I'm trying to download a piece of video from the below URL using axios.

    &#xA;

    https://r5---sn-gwpa-civy.googlevideo.com/videoplayback?...&amp;range=32104-500230&#xA;

    &#xA;

    I'm using below code to fetch the above URL and for save the chunk to the mp4 file.

    &#xA;

    axios({&#xA;        url: MY_URL`,&#xA;        method: &#x27;GET&#x27;,&#xA;        responseType: &#x27;stream&#x27;&#xA;    }).then(function (response) {&#xA;        let buffArray = []&#xA;        response.data.on(&#x27;data&#x27;, (chunk) => {&#xA;            buffArray .push(chunk)&#xA;        })&#xA;&#xA;        response.data.on(&#x27;end&#x27;, (chunk) => {&#xA;            let buff = Buffer.concat(buffArray)&#xA;            fs.writeFile(&#x27;output.mp4&#x27;, buff, (dt) => {&#xA;                console.log("File created");&#xA;            })&#xA;        })&#xA;    })&#xA;

    &#xA;

    above code is working fine and I'm able to save the video but the video is not able to play.&#xA;when I set the range in URL from &amp;range=32104-500230 to &amp;range=0-500230 then video is working properly. Please try to help that how can I save a video from small chunk of video stream instead of saving full video.

    &#xA;