Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (40)

  • Les statuts des instances de mutualisation

    13 mars 2010, par

    Pour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
    Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

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

  • Showing Image overlay for less than a second in ffmpeg

    31 mai 2016, par lalitsharma1607

    I have to highlight an object in video via ffmpeg, so I am using an overlay image and enabling it for a sec to do so. The one second time is much for this feature as object moves but the overlay does not. So I need to show this overlay for less than a second. Is it possible to give duration milliseconds in

    overlay=20:20:enable='between(t,2,3)

    Here is the command I am using

    String[] complexCommandWatermark = {"ffmpeg", "-y", "-i", orginalFilePath, "-strict", "experimental", "-vf",
               "movie=/sdcard/skilltally/overlay_icon.png [watermark]; [in][watermark] overlay=" + leftMargin + ":" + topMargin + ":enable='between(t," + starttime + "," + endTime + ")' [out]"
               , "-r", "30", "-b", "15496k", "-vcodec", "mpeg4", "-ab", "48000", "-ac", "2", "-ar", "22050",
               newFilePath};
  • avcodec/nvenc : split large functions into smaller ones

    20 mai 2016, par Andrey Turkin
    avcodec/nvenc : split large functions into smaller ones
    

    Functions names and scopes are from libav. This commit basically moves
    code around without changing it ; it shouldn’t change any functionality
    except some small leak fixes on error paths.

    Signed-off-by : Timo Rothenpieler <timo@rothenpieler.org>

    • [DH] libavcodec/nvenc.c
  • How to use ffmpeg to handle multiple Stream input

    8 juillet 2019, par 张达芙妮

    I’m using html5 getUserMedia and Electron captureDesktop API to capture user’s screen and camera to make a live broadcast.

    So I wanna to combine these two stream video data into one video output.
    Before I use

    const spawn = require('child_process').spawn;
    const process = spawn('ffmpeg', [
       '-i', '-'
       '-c:v', 'libx264',
       '-f', 'flv',
       'rtmp:xxxxx'
    ]);

    process.stdin.write(data);   // data is read from MediaRecorder

    to covert one stream.

    but when occur two input, Cannot figure out how to input two stream data.