Recherche avancée

Médias (91)

Autres articles (43)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

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

Sur d’autres sites (5769)

  • What do big video companies use to transcode video ? [on hold]

    26 juin 2013, par jays

    I'm reading about video transcoders, and it seems that every open source project out there uses ffmpeg as a backend.

    I'm curious as to what big companies like youtube and justin.tv use to transcode video on such a large scale, since ffmpeg can be a bit of a CPU/memory hog. Or is ffmpeg about as good performance as you can get ?

  • Video file is hanging after concatenating video files and drawtext to output

    12 avril 2019, par elzix88

    I’m trying to concat 3 video files and add text to output using ffmpeg.
    Each part is 10 sec long.

    I’ve end up with this code :

    ffmpeg -i output3.mp4 -i output2.mp4 -i output1.mp4 -filter_complex "[0:v:0][0:a:0][1:v:0][1:a:0][2:v:0][2:a:0]concat=n=3:v=1:a=1[v][a]; [0:v:0]drawtext=fontfile=tahoma.ttf:text=Sample text:fontcolor=white:fontsize=40:box=1:boxcolor=black@0.7:boxborderw=5:x=100:y=100" -map "[v]" -map "[a]" output.mp4

    The result video has 30 seconds but it hangs after 1st part (10s). When I remove drawtext filter part (just concat), then video is fine, but without text...
    Anyone can help ?

  • Speed Up Video Processing time FFMPEG while adding multiple images to Video

    5 mars 2019, par Vivek Faldu

    I am trying to overlay multiple images to the video at certain time interval...
    but the processing time is too much for a video length of 1 minute.
    I used VideoKit Library for it.
    Here is my code for adding multiple images to Video.

    String[] command = {"-i", inputPath,
                   "-i", imagePath1,"-i", imagePath2,"-i",imagePath3,
                   "-filter_complex",
                   "[0][1]overlay=y=H-h:enable='between(t,2,10)'[v1];
                    [v1][2]overlay=y=H-h:enable='between(t,10,20)'[v2];
                    [v2][3]overlay=y=H-h:enable='between(t,20,30)'[v3]",
                   "-map", "[v3]",  outputPath};

    Is there any faster processing library for video processing.