Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (57)

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

  • Utilisation et configuration du script

    19 janvier 2011, par

    Informations spécifiques à la distribution Debian
    Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
    Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
    Récupération du script
    Le script d’installation peut être récupéré de deux manières différentes.
    Via svn en utilisant la commande pour récupérer le code source à jour :
    svn co (...)

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

Sur d’autres sites (12675)

  • My bot doesn't play any music when hosted on Heroku

    25 août 2022, par Lucas Silva

    I am creating a music command, working great locally but not on Heroku. I have the following buildpacks :
enter image description here

    


    This is my code :

    


    @commands.command(name="musga", help="coloque um url da musica que deseja reproduzir!")
async def play(self, ctx, arg):
    global vc
    
    try:
        voice_channel = ctx.author.voice.channel
        vc = await voice_channel.connect()
    except:
        print('[ERROR]') #debug

    if vc.is_playing():
        await ctx.send(f'{ctx.author.mention}, Já estou cantando.')

    else:
        with YoutubeDL(self.YDL_OPTIONS) as ydl:
            info = ydl.extract_info(arg, download=False)
        
        URL = info['formats'][0]['url']

        vc.play(discord.FFmpegPCMAudio(executable="ffmpeg", source = URL, **self.FFMPEG_OPTIONS))
                
        while vc.is_playing():
            await sleep(1)


    


    And requirements.txt :

    


    discord.py[voice]
PyNaCL
youtube_dl
ffmpeg


    


    When using the command, my bot joins the channel but doesn't play the music and doesn't print any traceback.

    


  • My MKV to MP4 converted video doesn't play in flex

    24 mars 2015, par ketan

    I am stuck on one issue from last 1 day. I am using Adobe flex video display to play video for my site.

    There is some converted video from MKV to MP4 using ffmpeg.

    ffmpeg -i Test.mkv -vcodec copy -acodec copy Test.mp4

    Now, i am trying to play that video from local it’s working fine. But when i upload that video on server and trying to play video. Then it will not work with flex VideoDisplay same will work in browser and HTML videoplayer and also works with JWPlayer.

    Other mp4 video which are not converted works very fine. Only converted Videos are not working in only flex VideoDisplay.

    I am Just playing using.

    And give path to videoDisplay like :

    videoDisp.source = Video_path;

    My video file Video and Audio codec is as shown in below image :

    enter image description here

    Any help will be appreciate,
    Thanks.

  • Is it possible to have a live m3u8 stream play in phonegap applications ?

    24 mars 2014, par CR47

    I've built a Drupal back-end website for streaming live m3u8 streams, and when I play these streams over to an Android Java application it works, but I'm wondering if there is a way to do this in phonegap as well.