Recherche avancée

Médias (91)

Autres articles (58)

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

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

Sur d’autres sites (6046)

  • Revision 71379b87df : Changes to assembler for NASM on mac. fixes non-Apple nasm part of issue #755

    21 novembre 2014, par John Stark

    Changed Paths :
     Modify /third_party/x86inc/x86inc.asm


     Modify /vp9/common/x86/vp9_subpixel_8t_ssse3.asm


     Modify /vp9/encoder/x86/vp9_quantize_ssse3_x86_64.asm


     Modify /vp9/encoder/x86/vp9_subpel_variance.asm



    Changes to assembler for NASM on mac.

    fixes non-Apple nasm part of issue #755

    Change-Id : I11955d270c4ee55e3c00e99f568de01b95e7ea9a

  • Delete a part from ogg file with ffmpeg

    24 avril 2012, par oxo

    I use this command to crop audio files :

    ffmpeg -ss 50 -i "input.ogg" -acodec copy -y -t 100 "output.ogg"

    This works fine. But now, I'd like to delete a section from an audio file - preferably without recompressing it.

    Example : input.ogg has duration 60sec, delete section [10s:20s] => output.ogg has then duration 50sec and includes section [0:10s] and [20s:60s] from input.ogg.

    Is it possible with one command or do I have to split the file into two and then join it back ?

  • ffmpeg : After using scale2ref and concat filter only part of video is encoded [closed]

    19 mai 2024, par Ricardo Bohner

    I'm trying to select some parts of an video, concat them, and apply an overlay that should have 1/6 of the video width :

    


    ffmpeg -reinit_filter 0 -i "input.mp4" -t 12 -loop 1 -i flag.webp -an -filter_complex "[0]select='between(t,3,9)',setpts=PTS-STARTPTS[P1];[0]select='between(t,12,15)',setpts=PTS-STARTPTS[P2];[0]select='between(t,60,70)',setpts=PTS-STARTPTS[P3];[P1][P2][P3]concat=n=3:v=1:a=0[vid];[1][vid]scale2ref=w=iw/6:h=ow/mdar[flag][vid];[vid][flag]overlay=x=20:y=20:enable='between(t,1,7)'[vid]" -map [vid] -c:v libx264 -b:v 900K -y "output.mp4"


    


    The output video results in a video that contains only the first part of the selections [P1] (or even less)...

    


    Strangly if I use something like this without using concat filter everything works like expected :

    


    ffmpeg -reinit_filter 0 -i "input.mp4" -t 12 -loop 1 -i flag.webp -an -filter_complex "[0]select='between(t,3,9)+between(t,12,15)+between(t,60,70)',setpts=N/FRAME_RATE/TB[vid];[1][vid]scale2ref=w=iw/6:h=ow/mdar[flag][vid];[vid][flag]overlay=x=20:y=20:enable='between(t,1,7)'[vid]" -map [vid] -c:v libx264 -b:v 900K -y "output.mp4"


    


    Does anyone know what I'm doing wrong or how to use concat with scale2ref and overlay together ? Thanks...