Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (62)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (8556)

  • How to keep ffmpeg alive ? it keep exiting

    8 février 2019, par Mikko-Pentti Einari Eronen

    I have the following setup :
    1. I have Raspberry PI with camera module streaming video to IP using RPI Cam Control.
    2. On my main PC I can view that feed and it works great. No problem there.
    3. I am attempting to resend that feed in to /dev/video0 with ffmpeg, which sort of works. But it only works once.

    The problem is ffmpeg just exits after sending one frame to /dev/video0 without any errors. I am previewing it with ffplay /dev/video0. It updates only when I run my ffmpeg command again and then ffmpeg just exits again.

    I probably have some stupid mistake with ffmpeg command which I can’t pinpoint :

    ffmpeg -i http/192.168.1.201/html/cam_pic.php -pix_fmt yuv420p -f v4l2 /dev/video0
  • configure : miscellaneous cosmetics

    2 novembre 2013, par Diego Biurrun
    configure : miscellaneous cosmetics
    

    Sort lists of components. Add some whitespace where it helps readability.
    Consistently use double instead of single quotes around component lists.

    • [DH] configure
  • FFMPEG drawbox filter. Hex color result not matching input values

    31 juillet 2018, par Leon Digz

    I’m trying to create a border using the drawbox filter using a specific HEX color input, however the result I am getting does not match the value I set.

    Consider the following code which produces a 600x600 swatch ;

    ffmpeg -i 0.jpg -vf drawbox=x=0:y=0:w=600:h=600:color=#E4E8F3@1:t=fill _border.png

    E4E8F3 is supposed to translate to RGB 228,232,243

    When I run the above code, however, and re-import into photoshop the actual color, is "sort of close", but not close enough.

    The color I end up getting is ;

    Hex d2d7df, which is RGB 210,215,223

    Any ideas why I’m not getting the result I expect ?