Recherche avancée

Médias (0)

Mot : - Tags -/masques

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

Autres articles (68)

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (8650)

  • fate/ffmpeg : Fix test requirements

    25 mai 2022, par Andreas Rheinhardt
    fate/ffmpeg : Fix test requirements
    

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] tests/Makefile
    • [DH] tests/fate/ffmpeg.mak
  • FFMPEG add two mp3s to video, with additional requirements

    1er juillet 2022, par Vince

    I have a sort of unique use case that I need an ffmpeg command for. I have a video, and I need to add two mp3s to it. There are some additional requirements for these files :

    &#xA;

      &#xA;
    • First mp3 : a music file&#xA;
        &#xA;
      • loop for the length of the video
      • &#xA;

      • fade out for 2 seconds at the end
      • &#xA;

      • set volume to 30%
      • &#xA;

      &#xA;

    • &#xA;

    • Second mp3 : a voiceover file&#xA;
        &#xA;
      • do NOT loop
      • &#xA;

      • do NOT fade out
      • &#xA;

      • volume should be 100%
      • &#xA;

      &#xA;

    • &#xA;

    &#xA;

    I have a command that accomplishes everything I need with the first mp3. I'm hoping I can modify this command to accomplish what I need in a single step. But if multiple steps are necessary, that is also ok. Here's the command I'm currently using :

    &#xA;

    ffmpeg -y -i video.mp4 -stream_loop -1 -i musicFile.mp3 \&#xA;  -af apad,afade=type=out:start_time=118:duration=2 \&#xA;  -map 0:v -map 1:a -c:v copy -shortest video_final.mp4&#xA;

    &#xA;

  • avcodec/pixlet : consider minimum plane header in the minimal packet size

    30 avril 2022, par Michael Niedermayer
    avcodec/pixlet : consider minimum plane header in the minimal packet size
    

    Fixes : Timeout
    Fixes : 46956/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_PIXLET_fuzzer-5698161106092032

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/pixlet.c