
Recherche avancée
Autres articles (18)
-
Supporting all media types
13 avril 2011, parUnlike 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, parMediaSPIP 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, parTalk 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 sickoofer2I 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 xiaokaoyI 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 ElmoChrome/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 :


- 

- Use ffmpeg to transcode to H.264 in real-time, which will be resource intensive (not ideal)
- Use WebAssembly to render the video in a
<canvas></canvas>
tag (not ideal) - Fork and manually add H.265 codec support to Chrome/Electron (overkill)
- Use a native module that renders the video in a
<canvas></canvas>
orBrowserView