Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (15)

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

  • ffmpeg : transcode over socket

    19 septembre 2020, par user14258924

    I am consuming multiple streams of h264 video and aac audio data in my own RTMP server and I want to transcode these streams into different codecs so I want to send these tracks, in chunks, into ffmpeg and get the transcoded result back. But due to performance requirements I want to use some kind of streaming where I can just open up a socket to get files in/out instead of dumping the data into individual files and then reading transcoded files back.

    


    Is it possible with ffmpeg ?

    


  • FFMPEG - Is it possible to cut from one video multiple segments and stitch them together ?

    27 mars 2014, par ajacian81

    I'm trying to do this in as few steps as possible since I'm doing this in Android and FFMPEG SegFaults if run multiple times (in the same process).

    Assume I have a 25 minute video :
    I want to cut from minute 1 to minute 5.
    I also want to cut from minute 8 to minute 13.
    I also want to cut from minute 17 to 23.
    I then want to stitch them together into a new video file.

    I can do the above steps as their own individual steps (using -ss and -t as well as the concat filter), however, I'm wondering if it's possible to do this in FFMPEG in a single execution ?

  • FFMPEG - encode and decode 8bit PNG images

    3 mai 2022, par Austin

    I have a few png images (8bit) which I want to pack into a mkv file with libx264 encoding and the pix_fmt flag set to gray. When I extract the individual frames they are bloated to 24 bit. Any idea how to fix that ?

    


    ffmpeg -pix_fmt gray -framerate 1 -r 30 -i C:\%d.png \
       -vcodec libx264 -crf 0 C:\test.mkv

ffmpeg -i C:\test.mkv -r 30 C:\%d.png