Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (107)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Qu’est ce qu’un masque de formulaire

    13 juin 2013, par

    Un masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
    Chaque formulaire de publication d’objet peut donc être personnalisé.
    Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
    Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)

Sur d’autres sites (8544)

  • .input(pan, ss=time) ^ SyntaxError : invalid syntax [closed]

    28 novembre 2019, par Go0od

    What is wrong with my code ? I am using pyqt5

    def widger_screen(self):
       pan = QWidget.grab(self.centralwidget)
       #p.save("pilt3.jpg")
       ffmpeg
       .input(pan, ss=time)
       .output(green.png, vframes=25)
       .run()
  • How to set start time for video(HLS) segment

    13 février 2018, par YuriyPryyma

    I`m using FFmpeg muxing.c example

    My generated .ts files have start time : 0.000000
    if I run

    av_dump_format(oc, 0, filename, 1);

    How to set this value for output conteiner ?

  • How to insert image at the same time as audio over a video using FFmpeg

    7 août 2019, par Mariano Argañaraz

    I have a video, an audio, and an image :
    I would like to overlay the image on the video as the same time as I put the audio over, how would the FFmpeg command be ?
    I’m currently using a command like this to put the audio over video, at a given time.

    ffmpeg -y -i video.mp4 -itsoffset $secondsAt -i audio.mp3 \
    -filter_complex [0:a][1:a]amix=inputs=2[a] -map 0:v -map [a] \
    -c:v copy -c:a aac -strict experimental -b:a 192k -ac 2 -async 1 \
    -shortest -crf 36 -preset ultrafast