
Recherche avancée
Autres articles (58)
-
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 (...) -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (7958)
-
libavformat/lafdec : free data
30 janvier 2023, par Michael Niedermayer -
What causes "double free or corruption" and "invalid pointer" in javacpp - ffmpeg ?
7 septembre 2016, par Jiro MatchonsonI use https://github.com/bytedeco/javacpp-presets/tree/master/ffmpeg
<dependency>
<groupid>org.bytedeco.javacpp-presets</groupid>
<artifactid>ffmpeg</artifactid>
<version>3.1.2-1.2</version>
</dependency>When i am calling avformat_open_input/avformat_close_input i randomly (never at first call) get those errors :
Error in `/usr/lib/jvm/java-8-oracle/bin/java': double free or corruption (out): 0x00007fe79c194aa0
or
Error in `/usr/lib/jvm/java-8-oracle/bin/java': double free or corruption (!prev): 0x00007fe51c3ffb60
or
Error in `/usr/lib/jvm/java-8-oracle/bin/java': double free or corruption (fasttop): 0x00007fcdc40fe4a0
I cant find out how to solve this, please help.
There is my implementation :
private static void registerComponents() {
if (!componentsRegistered) {
componentsRegistered = true;
av_register_all();
}
}
public static void decodeFrame(ByteBuffer frameData) {
registerComponents();
AVFormatContext pFormatCtx = avformat_alloc_context();
int i, videoStream;
AVCodecContext pCodecCtx = null;
AVCodec pCodec = null;
AVFrame pFrame = null;
AVFrame pFrameRGB = null;
int[] frameFinished = new int[1];
int numBytes;
BytePointer buffer = null;
AVDictionary optionsDict = null;
SwsContext sws_ctx = null;
AVIOContext ioContext = avio_alloc_context(new BytePointer(frameData), frameData.capacity(), 0, null, null, null, null);
pFormatCtx.pb(ioContext);
if (avformat_open_input(pFormatCtx, "", null, null) < 0) {
logger.error(MarkerFactory.getMarker("ffmpeg"), "Problem with load video from memory.");
return;
}
avformat_close_input(pFormatCtx);
} -
Video editing paid or free, but not FFMpeg [closed]
8 juillet 2022, par ChrisI have been looking for a way to create thumbnails and get video length of my uploads (which could be basically any video format), in a C# dotnet 6 (dotnet core) application.
At first I thought I could use FFMpeg, but I really cant grasp a way to do this in my web application because I do intend for it to be a commercial application (not distributing a binary, but people will pay to use the website, and the website will need to manipulate videos). So can I use wrapper packages for example : https://www.nuget.org/packages/Xabe.FFmpeg
Or.. Do I need to find something that has nothing to do with FFMpeg ?