Recherche avancée

Médias (91)

Autres articles (65)

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

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

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

  • Possible to change progress output interval in ffmpeg ?

    12 septembre 2021, par Thorts

    Example output :

    


    frame= 1234 fps= 25 q= 0.0 size= 10321 time = 00:02:12:31 bitrate= 301.1kbits/s speed=7.21x


    


    This output is updated around 4-5 times per second in the terminal.

    


    Is it possible to to change the interval for this status update ? Like once per second or once every 10 seconds.

    


    Reason being better overview when queueing several ffmpeg-jobs in a row.
Searched for 'interval' in the documentation but didn't find anything relevant.

    


  • Redact parts of an audio file using python (FFMPEG)

    18 août 2020, par K3rn3l5

    I have a use case where I need to dynamically redact parts of an audio file using python. For example sometimes I may have to remove between timestamps 10 to 15 and other times between 5 to 7, 12 to 16 and 21 to 26 . I have tried looking at FFMPEG and think it may be possible with filters or chaining filters, but I am having trouble figuring out which ones to use and the combination. Any help or pointers will be highly appreciated. TIA !

    


  • ffmpeg generate video from images timestamped

    11 février 2020, par user3262532

    I have a set of timestamped image as input and I want to generate a output video from it.

    My command is :

    ffmpeg   -f image2 -ts_from_file 1 -i './%*.jpeg'    './video.avi'

    As output I get many errors :

    ....
    [mjpeg @ 0x5591f1d5f100] bits 121 is invalid
    Error while decoding stream #0:0: Invalid data found when processing input
    [mjpeg @ 0x5591f1d5f100] mjpeg: unsupported coding type (c5)
    frame=  983 fps=130 q=31.0 size=    3078kB time=00:00:49.15 bitrate= 512.9kbits/[mjpeg @ 0x5591f1d5f100] EOI missing, emulating
       Last message repeated 4 times
    frame= 1048 fps=130 q=31.0 size=    3334kB time=00:00:52.40 bitrate= 521.2kbits/[mjpeg @ 0x5591f1d5f100] mjpeg: unsupported coding type (c8)
    frame= 1118 fps=130 q=31.0 size=    3590kB time=00:00:55.90 bitrate= 526.0kbits/[mjpeg @ 0x5591f1d5f100] bits 178 is invalid
    Error while decoding stream #0:0: Invalid data found when processing input
    [mjpeg @ 0x5591f1d5f100] mjpeg: unsupported coding type (c7)
    [mjpeg @ 0x5591f1d5f100] EOI missing, emulating
       Last message repeated 5 times
    frame= 1165 fps=130 q=24.8 Lsize=    3904kB time=00:00:58.25 bitrate= 549.0kbits/s speed=6.52x    
    video:3870kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.864412%

    The output video is not properly generates, the video file has the good framerate but visually the video is run too quick.

    I try many commands to get proper output but I can get it.