Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (34)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

  • Personnaliser l’affichage de mon Médiaspip

    27 mai 2013

    Vous pouvez modifier la configuration du squelette afin de personnaliser votre Médiaspip Voir aussi plus d’informations en suivant ce lien
    Comment supprimer le nombre de vues d’affichage d’un média ?
    Administrer > Gestion du squelette > Pages des articles et médias Cocher dans "Informations non affichées sur les pages de médias" les paramètres que vous ne souhaitez pas afficher.
    Comment supprimer le titre de mon Médiaspip dans le bandeau horizontal ?
    Administrer > Gestion du squelette > (...)

Sur d’autres sites (3869)

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