Recherche avancée

Médias (91)

Autres articles (23)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Les statuts des instances de mutualisation

    13 mars 2010, par

    Pour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
    Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)

Sur d’autres sites (4726)

  • iterate through linex directory to apply same line of code

    25 juillet 2018, par J.D

    In my terminal (Linux), I have a directory of videos (001.mp4, 002.mp4 ... 300.mp4) that I want to split into frames using ffmpeg (ffmpeg -i 1.mp4 -vf fps=20 frame%04d.jpg -hide_banner). How can I apply this code to every video in the directory, specifically making the frames generated in a folder labeled after the video’s name (001.mp4 frames generated in a folder called 001). Running the code on a single video would generate the frames directly in that working directory. Note : the ffmpeg code must be changed to fit the filename each time.

  • Any equivalent to '-c:v copy' for changing container of webm to mp4 video client-side in JS ?

    15 mars 2020, par programmingisphun

    Exploring the Mediarecorder API and really hope to get an mp4 output instead of webm. Prefer to stay client-side to reduce server resources and ffmpeg.js at 17mb doesn’t seem viable for online use.

    Discovered that one can create (Chrome/Firefox) a webm/h.264, which converts without re-encoding to an mp4 using FFMPEG. The resulting file opens fine in Quicktime MacOS (snippet source) :
    ffmpeg -i _inputfile_.webm -c:v copy _outputfile_.mp4

    Whereas this clever hack works to display the video maybe as an mp4 in the browser, but the downloaded file won’t open in Quicktime (just VLC, same for webm) :

    new Blob(recordedBlobs, {type: 'video/mp4'});
    video.src = window.URL.createObjectURL(superBuffer);

    Therefore, wondering if there’s another JS hack to do what FFMPEG’s -c:v copy does, but to the blob bytes of the MediaRecorder’s recordedBlobs and give it the same mp4 container that’s accepted by Quicktime/etc ?

    Pastebin of current setup

  • avfilter/vf_lut* : strip color volume metadata

    26 avril 2024, par Niklas Haas
    avfilter/vf_lut* : strip color volume metadata
    

    These filters, in general, will apply some arbitrary color volume
    transformation. Strip corresponding metadata to be conservative/safe.

    • [DH] libavfilter/vf_lut.c
    • [DH] libavfilter/vf_lut2.c
    • [DH] libavfilter/vf_lut3d.c