Recherche avancée

Médias (0)

Mot : - Tags -/page unique

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

Autres articles (46)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • 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

Sur d’autres sites (5672)

  • How do I make ffmpeg not open a window when used in Python (Discord Bot Youtube Audio Player Pytube)

    20 juin 2019, par Brandalf

    I am using pytube to create a Discord bot that gets audio from a YouTube video and plays it in the voice channel using the code below. The code works perfectly fine and does what I want which is playing audio from YouTube with a link. The issue is that it uses ffmpeg and when it does, it opens the ffmpeg.exe window. Having a window constantly pop up on my screen is kind of annoying but what’s worse is that if I am playing a game in full screen, when ffmpeg is run, it will tab out of my game. So I’m wondering if there is a way to prevent ffmpeg from opening the window or if there is an alternative to playing youtube audio in Discord with a bot that doesn’t use ffmpeg.

    user=ctx.message.author
    voice_channel=user.voice.voice_channel
    vc = await client.join_voice_channel(voice_channel)
    player = await vc.create_ytdl_player(videoLink)
    video = pafy.new(videoLink) #runs ffmpeg
    player.start()
  • avformat/movenc : allow ISMV timescale to be user-set

    4 janvier 2019, par Gyan Doshi
    avformat/movenc : allow ISMV timescale to be user-set
    

    As per the PIFF standard, the timescale of 10000000
    is recommended but not mandatory, so don't override
    the user-set value.

    A warning is shown for non-recommended values.

    • [DH] libavformat/movenc.c
  • calling to ffmpeg executable that the user has installed himself

    2 octobre 2018, par user1422101

    I want to convert an uncompressed .avi to .mp4 from my commercial application.

    What i want to do is this :

    1. show instructions to the user to download and install ffmpeg to a specific location
    2. create and use ffmpeg.exe to compress my .avi to .mp4

    Am i allowed (license wise) to do this ?

    Note :
    I checked https://www.ffmpeg.org/legal.html, but it doesn’t cover this.