Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (36)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (8502)

  • FFMPEG combining videos - returning video with black background ?

    8 juin 2016, par Julia

    I’m trying to combine two .mp4 files so they play next to each other in one window. They are the same length (9 seconds), have the same number of frames, and the sources are both independently playable. Here’s what i’ve tried so far :

    ffmpeg -i highres_BH_140.mp4 -i BH_140.mp4 -filter_complex "[0:v:0]pad=iw*2:ih[bg]; [bg][1:v:0]overlay=w" -b 16M combined.mp4

    and

    ffmpeg -i BH_140.mp4 -i highres_BH_140.mp4 -filter_complex vstack stacked.mp4

    This just creates a video with a black background, although it does play for 9 seconds. One video is a higher resolution, could this be a problem ? Or is it the fact that they’re .mp4 files and not .mpg ?

    I’m still trying to understand ffmpeg’s syntax, so it’s possible I’m making a silly mistake somewhere.

    Thanks !

  • FFMPEG How to resize image to 1280 x 720 but with aspect ratio - if ratio not exact how to add black background [on hold]

    26 septembre 2019, par Aster

    FFMPEG How to resize image to 1280 x 720 but with aspect ratio.
    If ratio not exact how to add black background ?

    windows 10

    ffmpeg -y -i c:/img/image1.jpg -vf scale=1280 x 720 c:/img/image2.jpg
  • Streaming a video to /dev/video0 using gstreamer and v4l2 shows a black screen [on hold]

    24 septembre 2019, par Lawliet

    I’ve been trying to use a video as a webcam for quite a while now. The command

    gst-launch-1.0 filesrc location=newflag.webm ! decodebin ! videoconvert ! v4l2sink device=/dev/video0

    Using this command, i’m able to watch the stream using VLC but Discord and Firefox display a black screen when using /dev/video0 as a webcam.

    I got it working using ffmpeg to stream the video in yuv420p so I suspect videoconvert converts the stream to YUY2 which is I guess not supported by Discord nor Firefox.

    Any idea on how to get this to work ?