Recherche avancée

Médias (0)

Mot : - Tags -/serveur

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

Autres articles (18)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (3646)

  • VoiceClient.play() doesn't play any audio

    13 juin 2019, par sickoofer2

    I am trying to make a music bot in discord.py, but whenever I tried to play audio using VoiceClient.play(), it never played anything, just stayed in the voice channel.

    async def play(ctx):
       for VoiceClient in client.voice_clients:
           if VoiceClient.guild == ctx.guild:
               await VoiceClient.play(discord.FFmpegPCMAudio('song.mp3'))
               embed = discord.Embed(title=f'⬅  {ctx.author.mention},  I am now playing that song.', color=0x51BDEF)
               await ctx.send(embed=embed)

    There weren’t any error messages either, just doesn’t play anything

  • Is it possible to open a shell window on Windows with QNX Development Platform already installed to configure and make Ffmpeg ?

    2 août 2017, par xiaokaoy

    I need to build FFmpeg (with some features disabled first to reduce the size of the target application file) for QNX/ARM. QNX Software Development Platform has been installed on my Windows. Is it possible to open a shell on my Windows to configure and make FFMPEG for QNX/ARM ?

    Or is it also possible to configure that in the IDE ?

  • Supporting HEVC/H.265 videos in Electron

    1er mars 2021, par Elmo

    Chrome/Electron don't normally support H.265 videos. I want the user to be able to play .mov files recorded by Apple devices in my app. How can I do this ?

    


    Possible approaches :

    


      

    1. Use ffmpeg to transcode to H.264 in real-time, which will be resource intensive (not ideal)
    2. 


    3. Use WebAssembly to render the video in a <canvas></canvas> tag (not ideal)
    4. &#xA;

    5. Fork and manually add H.265 codec support to Chrome/Electron (overkill)
    6. &#xA;

    7. Use a native module that renders the video in a <canvas></canvas> or BrowserView
    8. &#xA;

    &#xA;