Recherche avancée

Médias (0)

Mot : - Tags -/flash

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (30)

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

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

  • MediaSPIP Player : les contrôles

    26 mai 2010, par

    Les contrôles à la souris du lecteur
    En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...)

Sur d’autres sites (5806)

  • Combine mp4 init file and m4s segments to a single mp4 file

    5 août 2020, par David Oz

    In my Nodejs server, I'm trying to combine init-file in mp4 format, with some m4s segments.
I've used Buffer.concat() and it partially worked, it seems like the segments hold an offset because they are taken from the middle of a video that is played with mpeg-dash, which causes an incorrect start time. when I use the fluent-ffmpeg npm library, the file is fixed, but it takes way too long (about as long as the video itself).
I was wondering if is it possible to fix the problem by changing some bytes in the buffer or anything faster like that.

    


  • Revision ca8f8fd304 : VP9 dynamic resizing unit test with bitrate change. Verify the dynamic resizer

    16 septembre 2015, par jackychen

    Changed Paths :
     Modify /test/resize_test.cc



    VP9 dynamic resizing unit test with bitrate change.

    Verify the dynamic resizer behavior for real time, 1 pass CBR mode.
    Start at low target bitrate, raise the bitrate in the middle of the
    clip, verify that scaling-up does occur after bitrate changed.

    Change-Id : I7ad8c9a4c8288387d897dd6bdda592f142d8870c

  • FFMPEG : overlay image on video and retain size

    7 avril 2019, par HB.

    I’m trying to overlay an image (transparent background with shape in the middle) "on top" of the video and get the image back. The image size is bigger then the video. Here is the command that I’m using :

    "-i", video.mp4, "-i", image.mp4, "-filter_complex", "[1:v][0:v]scale2ref=iw:ih[ovr][base];[ovr]colorchannelmixer=aa=1.0[ovrl];[base][ovrl]overlay[v]", "-map", "[v]", "-q:v", "2", directoryToStore + "/" + ImageName + ".jpeg"

    The above scales the image to the size of the video.

    I want the image and the video to retain their size and output an image of the 2 overlaid.

    Can someone please give me advice on how I can do this ?