Recherche avancée

Médias (0)

Mot : - Tags -/objet éditorial

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

Autres articles (37)

  • Les notifications de la ferme

    1er décembre 2010, par

    Afin d’assurer une gestion correcte de la ferme, il est nécessaire de notifier plusieurs choses lors d’actions spécifiques à la fois à l’utilisateur mais également à l’ensemble des administrateurs de la ferme.
    Les notifications de changement de statut
    Lors d’un changement de statut d’une instance, l’ensemble des administrateurs de la ferme doivent être notifiés de cette modification ainsi que l’utilisateur administrateur de l’instance.
    À la demande d’un canal
    Passage au statut "publie"
    Passage au (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (5342)

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

  • Precise syncronized stream Recording

    15 octobre 2020, par LuckyLuke1984

    I have multiple streams from cameras and I would like to capture an event from different point of views. My program opens at the moment X at once for each of these streams a different process that is calling an instance of ffmpeg to record the stream.
The problem is that the moment Y where the event happens is not exactly after Z seconds in each recorded file. There is a mismatch between each stream, resulting from different starting times of the videos.

    


    How can I trigger the start of the recording more precisely ?

    


  • combine Scheduled audio ffmpeg

    5 septembre 2018, par Erfan Esmaeilzadeh

    I am developing a music making application for Android. I need to create a system that can extract MP3s from the user’s music project.

    I can save the name of every file per second of music in a string, as in the following example :

    a.mp3-b.mp3-c.mp3|| d.mp3-e.mp3-f.mp3|| g.mp3-h.mp3-i.mp3

    => final.mp3

    Between "||" is equivalent to one second and the audio within this parameter must be combined. After that, the combinations are put together.

    The most important thing is the timing of each sound. Some sounds must be combined at one time and some sounds at other times.