Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (44)

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

  • oggparsevorbis : support official chapter extension

    5 octobre 2013, par James Almer
    oggparsevorbis : support official chapter extension
    

    Signed-off-by : James Almer <jamrial@gmail.com>
    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DBH] libavformat/oggparsevorbis.c
  • Using fluen-ffmpeg to overlay video on a video (at top left or right)

    18 juin 2021, par Ruthwik Reddy

    So the title should make sense I want to overlay one video on another.&#xA;It's getting confused at so many places with concatenating video it's not that, I want to do something like this :&#xA;enter image description here

    &#xA;

    I am able to do this in normal ffmpeg using this command&#xA;

    &#xA;

    ffmpeg -i VideoB.mp4 -i VideoA.mp4 -map 0:0 -map 1:1 -vf "movie=VideoA.mp4, scale=400:-1 [inner]; [in][inner] overlay=0:0 [out]" VideoAinsideVideoBsoundA.mp4&#xA;

    &#xA;

    I'm having trouble writing this in fluent-ffmpeg going through StackOverflow I found something like this but the issue here is it's treating both videos separately but I want to overlay one on another.&#xA;This is the code which places videos side by side there is extra space as padding if I try to mess with sides.

    &#xA;

    ffmpeg()&#xA;   .input("./videoA.mp4")&#xA;   .input("./videoB.mp4")&#xA;   .complexFilter([&#xA;     "[0:v]scale=300:300[0scaled]",&#xA;     "[1:v]scale=300:300[1scaled]",&#xA;     "[0scaled]pad=600:300[0padded]",&#xA;     "[0padded][1scaled]overlay=shortest=1:x=300[output]",&#xA;   ])&#xA;   .outputOptions(["-map [output]"])&#xA;   .output("./out.mp4")&#xA;   .on("error", (err) => {&#xA;     console.log(err.message);&#xA;   })&#xA;   .on("end", () => {&#xA;     console.log("success");&#xA;   })&#xA;   .run()&#xA;

    &#xA;

    Can someone guide me here thank you.

    &#xA;

  • FFMPEG - Adding a full-frame image to the beginning of a video

    28 mars 2014, par user3470655

    I have tried many different ways to try to create a 10 second video file out of an image file and have used all the same switches and codecs as I used to encode my video file. However, when I concat the two using anything but complex_filter (which forces the video through another round of transcoding), the resulting video file is corrupt. I believe this is due to the inherent differences of the 10 second clip that ffmpeg created from the image, but there must be some way to get it to encode the exact same way as my video file.

    Here is the command I am using to turn the image into a 10s video clip (I added a silent mp3 because I thought that an audio stream starting partway through the video was messing things up) :

    ffmpeg -loop 1 -i splash.jpg -i silence.mp3 -c:v libx264 -preset slow -g 60 -r 29.97 -crf 16 -c:a libfdk_aac -b:a 256k -cutoff 18000 -t 5 tmpoutput1.mp4

    Here is the command I am using to encode my video :

    ffmpeg -i input.f4v -c:v libx264 -preset slow -g 60 -r 29.97 -crf 16 -c:a libfdk_aac -b:a 256k -cutoff 18000 tmpoutput2.mp4

    Here is the command I use to convert both of them to .ts to get ready for concat :

    ffmpeg -i tmpoutput1.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts tmpoutput1.ts

    And finally the concat (which is where I get crazy video corruption, everything along the way looks fine) :

    ffmpeg -i "concat:tmpoutput1.ts|tmpoutput2.ts" -c copy output.mp4

    Again, the issue is that I'm already transcoding everything once and I should be able to get it to transcode in a similar enough structure so that it can be concatenated without another transcode tacked onto the end.

    Has anyone successfully added a full-frame splash graphic to the front of a video with ffmpeg before ? I am using a brand new cross-compile of ffmpeg as I thought that might be the issue, but alas, the issue persists after the update.

    Thanks !