Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (32)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (5368)

  • c# ffmpeg stream make program for streaming

    24 avril 2017, par Maher kheder

    I want make stream with ffmpeg
    I use this code in linux and it is working

    ffmpeg -re -i input.mp4 -codec copy -f flv rtmp ://a.rtmp.youtube.com/live2/j95t-zxcadawdawdadawd

    now I want make program with c# and using this code ?
    how I can do that , or how I can startet

    Thanks for reading

  • How to make ffmpeg insert timestamp in filename

    28 juillet 2021, par sealfab

    I'm trying to make a bash script that grabs a still shot from an IP camera and than emails it.

    


    Using

    


    ffmpeg -i http://admin:Stupidpassword1@10.12.10.40/Streaming/channels/1/picture \
  -f image2 -updatefirst 1 doorbell.jpg 


    


    From what I have read this should work but the output file name is still doorbell.jpg How can I make the filename TIMESTAMPdoorbell.jpg ?

    


  • Make green nullsrc to black

    2 octobre 2016, par Ultgin

    I have a video which hasn’t 1920x1080 so I need to make it.

    I try to use next command :

    ffmpeg -i "video.avi" -filter_complex "nullsrc=size=1920x1080 [0:v]; [0:v] overlay=shortest=1:x=200:y=100" -r 30 -c:v libx264 -preset fast -crf 18 -profile:v high -bf 2 -flags +cgop -coder 1 -pix_fmt yuv420p -strict -2 -c:a aac -b:a 384k "video.mp4"

    But I got a green frame over the video like this - http://i.imgur.com/QNVUGb5.jpg

    I dont find a solution to make a green in any other color.

    How possible to make green frame to black frame ?

    Thanks.