Recherche avancée

Médias (91)

Autres articles (36)

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

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

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

Sur d’autres sites (6218)

  • Batch mp3 to mp4 recursive using ffmpeg

    5 janvier 2021, par Yusoff

    Currently I'm using this to convert mp3 in a mp3 folder into mp4.

    


    How do I do it recursively so I don't have to copy the bat file into individual subfolders

    


    echo off
    
FOR /r %%i in (*.mp3) DO (
    
"C:\ffmpeg\bin\ffmpeg.exe" -i "%%a" -an -y -vcodec copy "E:\songs\mp3\%%~na.jpg"
    
"C:\ffmpeg\bin\ffmpeg.exe" -loop 1 -i  "E:\songs\mp3\%%~na.jpg" -i "%%a" -y -c:v libx264 -preset veryfast -tune stillimage -crf 50 -pix_fmt yuv420p -c:a aac -shortest -strict experimental -b:a 128k -shortest "E:\songs\mp3\%%~na.mp4" )
    
pause


    


  • Need help concatenating multiple 2 part .mp4s

    9 septembre 2016, par Jay Ford7

    Basically, I have about 200 2-part videos that I would like to concatenate as 100 individual files.

    All the files are labeled with the same file name but with part 1 and part 2 on the end, ie "Video Name Part 1...Video Name Part 2"

    Through basic searching I understand how to combine two videos into one video manually with ffmpeg, but is there a way for ffmpeg to recognize the naming structure and do a batch concatenation ?

    EDIT : I should’ve said I was on Windows !

    Thanks !

  • Remapping multiple Mp4 videos into a single one with ffmpeg

    21 septembre 2016, par Josep Bosch

    I’m interested in remapping multiple (6) MP4 videos into a high resolution final video according to lookup tables I calculated. The idea is convert 6 independent videos in a 360º video according to an equirectangular projection.

    Equirectangular image example
    Example of equirectangular video here

    Is there a way to do this remapping with ffmpeg or any other linux program ?
    Right now I’m extracting all the frames from the videos, creating the equirectangular individual images and joining them again into a video. There must be a better way for this...

    UPDATE :

    Following Mulyva’s suggestion I first remap each individual video using the remap filter. Those parts of the panoramic video not covered are interpreted like chromakey pixels using :

    ffmpeg -i videos/camera1.MP4 -i camera0_map_x_radius5.pgm -i camera0_map_y_radius5.pgm -lavfi remap -qscale 1 out0.MP4

    Camera0

    Camera1

    Then I try to overlay them using the chomakey filter :

    ffmpeg -i out0.MP4 -i out1.MP4 -filter_complex "[1:v]chromakey=0x12da11:0.2:0.2[chromakey_res];[0:v][chromakey_res]overlay=eof_action=pass[out]" -map "[out]" out.mp4

    As you can see, the final result has an undesirable green shadow. Any idea of how to remove it ?

    Result