Recherche avancée

Médias (0)

Mot : - Tags -/protocoles

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (59)

  • 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 ;

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (5963)

  • Playing local audio discord.py bot on linux [closed]

    8 août 2020, par Qskata_K

    I have search about it, but not found nothing useful. I want to play from the Python3 script local audio with discord bot (on voice channel of course).
I saw some materials about it, but they are on Windows OS, while I'm with Ubuntu 20.04. I have download ffmpeg - which I can use for the downloading the audio, but what about the playing it ? I won't post any code here, since I'm here in seeking of ways to do it, not having issues with code.

    


  • How to create RTSP using a Local video

    10 avril 2020, par Parag Singh

    I want to create an RTSP using a local video on the system.

    



    I tried using the FFmpeg but was able to create a UDP stream using the following command :

    



    ffmpeg -i "video.mp4" -v 0 -vcodec mpeg4 -f mpegts udp://127.0.0.1:23000

    


  • Making half an image transparent from the command line

    14 octobre 2016, par Alex Konetchy

    I don’t really know where to start with this one. I’m trying to do something that I thought would be relatively simple to accomplish with imagemagick, but I don’t know the exact command to start with. I need to draw a line through an image, and then make everything above the line transparent in the image, and make everything below the line, the orignal image. What would be the best way to accomplish this using imagemagick ?

    So what I’ve come up with for now is to crop the image, and then resize it to the original size, but with a transparent background. The command I use is this, but it always comes out black. I’m not understanding why.

    convert -background none -gravity south out.png -resize 400x200 -extent 400x400 result.png

    Thanks for all of the help !