Advanced search

Medias (3)

Tag: - Tags -/plugin

Other articles (16)

  • Websites made ​​with MediaSPIP

    2 May 2011, by

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 April 2011, by

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

  • Encoding and processing into web-friendly formats

    13 April 2011, by

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

On other websites (3217)

  • Make Discord bot play sound from a direct url

    20 September 2020, by merctraider

    I want to make a discordpy bot that plays audio files from a specific link on the internet, rather than from a local directory. It seems that all the other examples use ytdl, but those are for video streaming sites. How should I go about doing this?

    


        if(voice_channel != None):
        vc = await voice_channel.connect()

        vc.play(discord.FFmpegPCMAudio('http://website/001.mp3'), after=lambda e: print('done', e))
    else:
        await ctx.send("Join a voice channel first.")```


    


  • Open, Play Prompeg RTP stream with FFmpeg ffplay [closed]

    4 September 2020, by JohnnyF

    I have

    


    


    h265 rtp multicast stream

    


    


    who i cant control,
I know it uses PROMPEG as FEC in its stream,
But i dont know what are the fec params

    


    how can i open the stream so the FEC will be active as well?
is it

    


    ffplay rtp://233.0.41.102:20000


    


    Or i have to set the FEC params?

    


    ffplay -fec prompeg=l=10:d=10 rtp://233.0.41.102:20000


    


    any better idea?

    


  • Alternate ways to play music on discord bot

    29 March 2021, by Sathvik K S

    I am currently using youtube-dl along with ffmpeg to play songs from my discord bot. However, searching for the song, downloading the video and extracting the audio takes a long time.

    


    So I wanted to know if there is any way to speed up the process so the music can be played almost instantaneously.