
Recherche avancée
Médias (2)
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (48)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
Submit enhancements and plugins
13 avril 2011If 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. -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (6447)
-
How do I install qt-faststart on Wamp ?
6 mars 2016, par nico55555I have installed FFMPEG on WAMP 2. However I believe I also need qt-faststart in order to quickly load the meta data in MP4 files. How do I go about this ?
-
Wrapping a H264 stream into a mkv container manually
12 juin 2012, par stackVidecI have a stream set up that I can play in applications like VLC using the sdp handler created.
The stream is already encoded into h264 and I now basically have a raw h264 video being streamed in.
I've been using live 555 + openRSTP to play the stream and it writes it to a file without a container. They have outputs for file types like mov and mp4 where (looking through the code) they seem to manually write the header information of the container and then throw the video blocks into it using an abstraction of the frames being sent in and iterating through them.
I would like to do this but write it to an mkv. Since I already have the blocks of video encoded, I would assume that I would just have to write the rest of the mkv information (header and other meta data in line with the mkv specification), but I can't find anything anywhere pertaining to that.
I realize I can use ffmpeg for this but it would really suite the needs of my application to avoid using ffmpeg.
Any relevant help would be greatly appreciated.
-
ffmpeg output for flac and wav differs, why ?
9 juin 2012, par burzumI need to parse ffmpegs meta data output but it is different for some reason between a wav and a flac file.
Flac :
(int) 14 => ' Duration: 00:03:18.93, bitrate: 1045 kb/s',
(int) 15 => ' Stream #0:0: Audio: flac, 44100 Hz, stereo, s16',Wav :
(int) 13 => ' Duration: 00:00:15.00, bitrate: 1411 kb/s',
(int) 14 => ' Stream #0:0: Audio: pcm_s16le ([1][0][0][0] / 0x0001), 44100 Hz, stereo, s16, 1411 kb/s',I could get the bitrate from the duration line too I think but why is it different ? And will there be more differences in future releases ? It really sucks that there is no better way to get the information from ffmpeg than to parse it's output. Any better ideas ?
Here is my whole ffmpeg output and my parsed result :