Recherche avancée

Médias (1)

Mot : - Tags -/publishing

Autres articles (110)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

Sur d’autres sites (9426)

  • how to stop discord bot spam for Voice Channel ?

    6 décembre 2020, par elmehdi haytom

    how can i make my discord bot doesn't work for a voice channel after he did 1 time i write this code but he append the same id and it doesn t stop

    


                spam = 0
            with open("servers/"+str(ctx.message.guild.name)+"/spam.txt","r") as f :
                for line in f.readlines():
                    if line == str(ctx.author.voice.channel.id):
                        spam=1
                    else:pass
                f.close
                if spam == 1:
                    await ctx.send("{} you can t use tho bot right now wait a moment")
                    return
                elif spam == 0:
                    ####some code here 
                    with open("servers/"+str(ctx.message.guild.name)+"/spam.txt","a") as f :
                        f.write(str(ctx.author.voice.channel.id)+"\n")


    


  • Add overlay but the voice faster than frames

    13 octobre 2017, par xuan hoang

    I use stream `

    ffmpeg -i 16.avi -i bgcamera110.mp4 -filter_complex "[0:v]scale=854:480[v1];[1:v][v1]overlay=0:240[v];[0:a][1:a]amerge[a]" -map "[v]" -map "[a]" -ac 2 -shortest -preset ultrafast -f avi 20.avi

    But when complete the voice faster than frames

  • Cloaked Archive Wiki

    16 mai 2011, par Multimedia Mike — General

    Google’s Chrome browser has made me phenomenally lazy. I don’t even attempt to type proper, complete URLs into the address bar anymore. I just type something vaguely related to the address and let the search engine take over. I saw something weird when I used this method to visit Archive Team’s site :



    There’s greater detail when you elect to view more results from the site :



    As the administrator of a MediaWiki installation like the one that archiveteam.org runs on, I was a little worried that they might have a spam problem. However, clicking through to any of those out-of-place pages does not indicate anything related to pharmaceuticals. Viewing source also reveals nothing amiss.

    I quickly deduced that this is a textbook example of website cloaking. This is when a website reports different content to a search engine than it reports to normal web browsers (humans, presumably). General pseudocode :

    C :
    1. if (web_request.user_agent_string == CRAWLER_USER_AGENT)
    2.  return cloaked_data ;
    3. else
    4.  return real_data ;

    You can verify this for yourself using the wget command line utility :

    <br />
    $ wget --quiet --user-agent="<strong>Mozilla/5.0</strong>" \<br />
     http://www.archiveteam.org/index.php?title=Geocities -O - | grep \&lt;title\&gt;<br />
    &lt;title&gt;GeoCities - Archiveteam&lt;/title&gt;

    $ wget —quiet —user-agent="Googlebot/2.1"
    http://www.archiveteam.org/index.php?title=Geocities -O - | grep \<title\>
    <title>Cheap xanax | Online Drug Store, Big Discounts</title>

    I guess the little web prank worked because the phaux-pharma stuff got indexed. It makes we wonder if there’s a MediaWiki plugin that does this automatically.

    For extra fun, here’s a site called the CloakingDetector which purports to be able to detect whether a page employs cloaking. This is just one humble observer’s opinion, but I don’t think the site works too well :