Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (111)

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

  • How to encode a series of .dpx files using X264

    4 juin 2015, par user3759710

    I am complete newbie to video encoding. I am trying to encode a series of .dpx files into one single encoded video O/P file in any of the following format. ( .mp4,.avi,.h264,.mkv etc)

    I have tried 2 different approaches. The first one works and the second one does not.
    I would like to know the difference between the two. Any help / input would be much appreciated.

    1) using FFMPEG along with x264 library and it works well. I am able to produce desired output

    ffmpeg -start_number 0 -i frame%4d.dpx -pix_fmt yuv420p -c:v libx264 -crf 28
    -profile:v baseline fromdpx.h264

    2) I first try to concatenate all the dpx files into a single file using concate protocol in ffmpeg and then use x264 to encode the concatenated file.
    Here I see that the size of the concatenated file is the sum of all the files concatenated. But when I use x264 command to encode the concatenated file, I get a green screen (basically not the desired output) .

    ffmpeg -i "concat:frame0.dpx|frame01.dpx|frame2.dpx etc" -c copy output.dpx

    then

    x264 --crf 28 --profile baseline -o encoded.mp4 --input-res 1920x1080 --demuxer raw
    output.dpx

    I also tried to encoded the concatenated file using ffmpeg as follows

    ffmpeg -i output.dpx -pix_fmt yuv420p -c:v libx264 -crf 28 -profile:v baseline fromdpx.h264

    This also gives me a blank video.

    Could someone please point out to me what is going on here ? Why does the first method work and the second does not ?

    Thank you.

  • FFmpeg, how to output AVIF image series instead of animated AVIF ? [closed]

    23 mars, par EntityinArray

    I want to convert a series of huge PNGs into AVIF.

    


    ffmpeg -i 'img (%d).png' -c:v libsvtav1 -s 1280x720 .\lidl\img%d.avif


    


    FFmpeg always outputs an animated AVIF. How to force it to output AVIF image series ?

    


  • FFmpeg, output AVIF image series instead of animated AVIF

    23 mars, par EntityinArray

    I want to convert a series of huge PNGs into AVIF.

    


    ffmpeg -i 'img (%d).png' -c:v libsvtav1 -s 1280x720 .\lidl\img%d.avif


    


    FFmpeg always outputs an animated AVIF. How to force it to output AVIF image series ?