Recherche avancée

Médias (91)

Autres articles (44)

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

  • ffmpeg using downloaded google font

    10 juin 2021, par ekato

    I am using the following code to hardsub the video and it works perfectly.

    


    ffmpeg -i "pure.mkv" -lavfi "subtitles=pure.mkv:force_style='Alignment=10,Fontsize=18'" -c:a copy "output.mkv"


    


    I would like to use a google font link, I am using the following code, but the subtitle font is still the original one.

    


    ffmpeg -i "pure.mkv" -vf "subtitles=pure.mkv:force_style='Alignment=10,Fontsize=18,fontfile="c\:\\Users\\...\\Bfont.ttf"'" -c:a copy "output.mkv"


    


    I have totally no idea what could be the problem.

    


  • will Adult script pro work with google app engine as server ? [on hold]

    1er février 2016, par niko nørre

    i want to user Google app engine as a server for my website and app.
    but a programmer needs to set the script up for me.
    the script is called Adult Script Pro and it need FFMpeg and more to Work.

    do google app engine provide me with ssh root access ?

    The requirements are the following :

    Apache, Lighttpd or Nginx Server (with rewrite support)

    MySQL 5.x

    PHP >= 5.2.x (mod_php or CGI/FastCGI)

    GD2 Support

    MySQL Support

    CURL Support

    SimpleXML Support

    FTP Support

    PCRE with UTF8/Unicode Properties

    PHP CLI >= 5.2.x (see above for support)

    FFMpeg => 0.11.5 (with support for lame, x264, theora, vpx, xvid, faac, faad2, amr, webm, jpeg, png, gif and freetype)

    Will the site Work whid Google app engine as server ??

    Pleas help thanks
    Nikolaj

  • ffmpeg not working in google colab

    16 août 2018, par Nikhil Wagh

    I’m trying to use Google Colab to do something. Particularly I want to use ffmpeg package to create a video from a image.

    But ffmpeg doesn’t seems to be working fine. Here is the link to my notebook : https://colab.research.google.com/drive/1YP-DSRoZO-Afz03tjwPfoxA-Kttm-2vK

    The output of this (in the last block) was supposed to be 400 400 instead of 0 0

    frame_width = int(cap.get(3))
    frame_height = int(cap.get(4))
    print frame_width, frame_height

    The same code is working fine with Azure notebooks and also on my local machine.

    What can be the reason for it ? And how to rectify that ?