
Recherche avancée
Médias (91)
-
999,999
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (106)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP 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" (...) -
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation"
Sur d’autres sites (10507)
-
Get exact frame from a video in Android
22 février 2017, par hermt2So I have an app where users can take videos, and I want to grab specific frames from the file. When I use the method
MediaMetaDataRetriever.getFrameAtTime()
, it can only extract one frame for every second, but I want to grab frames between the seconds as well. I also tried to implement Jcodec into my project to grab the right frames :FrameGrab.getFrame(new File(videoFileToRetreive.getVideoFile()), currentFrame);
,However, no matter what number I put into currentFrame, the image is always returns the first frame of the video. Is there any way to perform something like this without the use of ffmpeg ? If anyone knows an answer it’d be greatly appreciated.
-
why doesn't avformat_find_stream_info return with mp3 files
18 avril 2014, par user1379811I have built and am using the latest build of lame, x264 and ffmpeg in my c++ project.
If I call avformat_find_stream_info with an mp3 file it doesn't return but if I use a .mp4 file instead avformat_find_stream_info returns fine.
I have tried different mp3 files and all give the same problem. They all seem to start with id3 if that has any effect ?
I can't read more than 1 frame of data from the mp3 file with avformat_find_stream_info commented out so I'm thinking it's important.
Can anyone offer a reason for avformat_find_stream_info not returning ? There seemed to be a patch for an endless loop but it seems thats already in utils.c.
I have also tried to read and decode the mp3 files directly using fread but then I get a mp3 missing header error.
Thanks.
-
using ffmpeg -f ffmetadata to get metadata for a stream [on hold]
23 avril 2014, par user645402I have a stream that I can get the metadata for using ffmpeg :
ffmpeg -i <stream url="url"> -f ffmetadata -
</stream>This works great for the first song, but then returns. The issue is that the stream is from a radio station which plays song after song - i.e. the metadata is changing as time goes on. However, this command will only give metadata for the song currently playing and then exit.
I would like it to keep flowing the metadata as it updates in the stream.