Recherche avancée

Médias (91)

Autres articles (66)

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

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (9137)

  • Convert Byte-range to Time-range in html

    15 mars 2017, par fengshaun

    I have some sever-side code that currently supports the http byte range requests without an issue. However, I want to be able to transcode the video file (which is located on-disk) on-the-fly with ffmpeg before I send the transcoded chunk to the client, but ffmpeg requires I give it a seek time whereas I get byte ranges from the client. How would I be able to figure out the time range (seek time) of a video file given the byte range from the client browser ?

    I have already looked at this question which assumes the server already knows the specified time.

    I am open to using an html5 video player which supports the use of time ranges to request data instead of byte ranges, but I have been unable to find an implementation or figure out how the javascript side of buffering <video></video> works.

  • avfilter/avf_showspectrum : add log scale for frequency plot

    28 avril 2019, par Paul B Mahol
    avfilter/avf_showspectrum : add log scale for frequency plot
    
    • [DH] doc/filters.texi
    • [DH] libavfilter/avf_showspectrum.c
  • FFMPEG is not able to find window for edge browser

    19 avril 2022, par randy

    I am trying to capture video recording for edge browser using below command

    &#xA;

    ffmpeg.exe -f gdigrab -framerate 9 -i title="About version - Profile 1 - Microsoft​ Edge&#x27; -vcodec libx264 -threads 1 -crf 35 -preset ultrafast -f hls -g 15 -hls_list_size 0 -hls_time 5 -r 7 -pix_fmt yuv420p -maxrate 1.7M -bufsize 2M -tune zerolatency -vf pad=ceil(iw/2)*2:ceil(ih/2)*2 index.m3u8&#xA;

    &#xA;

    This is how I found title for edge browser

    &#xA;

    tasklist /v /fi "imagename eq msedge.exe" /fo list&#xA;

    &#xA;

    This is the error I get (notice the weird character)

    &#xA;

     Can&#x27;t find window &#x27;About version - Profile 1 - MicrosoftΓ&#xC7;&#xEF; Edge&#x27;&#xA;

    &#xA;

    I have also verified the title with AutoIt application. This is working fine for chrome and firefox. Let me know if some is able to record the edge browser via ffmpeg

    &#xA;