Recherche avancée

Médias (91)

Autres articles (101)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (6976)

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