Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (42)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

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

  • Cosmetic changes in lpc_asm.nasm and utf8.c

    31 août 2018, par lvqcl
    Cosmetic changes in lpc_asm.nasm and utf8.c
    
    • [DH] src/libFLAC/ia32/lpc_asm.nasm
    • [DH] src/share/utf8/utf8.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.
It's getting confused at so many places with concatenating video it's not that, I want to do something like this :
enter image description here

    


    I am able to do this in normal ffmpeg using this command


    


    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


    


    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.
This is the code which places videos side by side there is extra space as padding if I try to mess with sides.

    


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


    


    Can someone guide me here thank you.

    


  • avformat/hlsenc : Add deinit function

    15 décembre 2019, par Andreas Rheinhardt
    avformat/hlsenc : Add deinit function
    

    This fixes memleaks in instances such as :
    a) When an allocation fails at one of the two places in hls_init() where
    the error is returned immediately without goto fail first.
    b) When an error happens when writing the header.
    c) When an allocation fails at one of the three places in
    hls_write_trailer() where the error is returned immediately without goto
    fail first.
    d) When one decides not to write the trailer at all (e.g. because of
    errors when writing packets).
    Furthermore, it removes code duplication and allows to return
    immediately, without goto fail first.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/hlsenc.c