Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (74)

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

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

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

  • Detecting on which frame there is audio presence on a video

    26 août 2016, par drov

    I have a few video files that corresponds to a tv zapping (one channel with sound, then a black screen without sound, then sound again with the new channel)

    I already detect pretty much everything but I would like to know how long it takes for the audio to appear after the end of the black screen.

    Basically I extract the audio from the video and giving the starting frame I would like to know at which frame there is some audio again.

    Then using that I can easily calculate the time it took for the audio to appear.

  • doc : apply various grammar fixes

    10 août 2013, par Bryce W. Harrington
    doc : apply various grammar fixes
    

    The first sentence of each of the modified man pages are worded a bit
    awkwardly. These minor copy-edits should make them clearer.

    Signed-off-by : Bryce Harrington <b.harrington@samsung.com>
    Signed-off-by : Stefano Sabatini <stefasab@gmail.com>

    • [DH] doc/demuxers.texi
    • [DH] doc/ffmpeg.texi
    • [DH] doc/outdevs.texi
    • [DH] doc/protocols.texi
  • How to extract time-accurate video segments with ffmpeg ?

    30 octobre 2023, par Jim Miller

    This is not a particularly new question area around here, but I've tried what's been suggested there without much luck. So, my story :

    &#xA;

    I've got a hunk of 15 seconds of straight-from-the-camera.mov video out of which I want to extract a specific chunk, which I can identify by start time and stop time, in seconds. I started by trying to do what I'll call a "copy extraction" : to get seconds 9 to 12,

    &#xA;

    ffmpeg -i test.mov -vcodec copy -acodec copy -ss 9 -to 12 test-copy.mov&#xA;

    &#xA;

    This was a not-bad start, but there are some black frames at the beginning and end of the clip, which I can't have — it has to be a clean edit from the original. So, I tried recoding the original into a new, trimmed clip :

    &#xA;

    ffmpeg -i test.mov -ss 00:00:09 -t 00:00:03 test-out.mov&#xA;

    &#xA;

    This is better, but not quite : There are no longer any black frames at the beginning of the clip, but they're still there at the end.

    &#xA;

    After some more browsing and reading, I then suspected that the problem is that ffmpeg is having trouble finding the proper points because of a lack of keyframes in the original video. So I recoded the original video to (presumably) add keyframes, in a couple of different ways. Since I want to be able to pick video at boundaries of a second ("from 9 seconds to 12 seconds"), I tried, copying various suggestions around the web,

    &#xA;

    ffmpeg -i test.mov -force_key_frames "expr:gte(t, n_forced)" test-forced.mp4&#xA;

    &#xA;

    and

    &#xA;

    ffmpeg -i test.mov -g 1 test-g-inserted.mp4&#xA;

    &#xA;

    (I built these as mp4's based on some comments about an mp4 container being needed to support the keyframe search, but I'm honestly just hacking here.) I then tried the extraction as before, but on these new videos that presumably now have keyframes in them. No luck — both seem to be about the same ; the start is OK but there are still black frames at the end. (FWIW, both test-forced.mp4 and test-g-inserted.mp4 also have trailing black frames.)

    &#xA;

    So : I'm still stuck, and would like to not be. Any insights out there as to what I'm doing wrong ? I feel like I'm close, but I really need to get rid of those trailing black frames....

    &#xA;