
Recherche avancée
Médias (91)
-
Spitfire Parade - Crisis
15 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Wired NextMusic
14 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (93)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
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 (...)
Sur d’autres sites (5243)
-
lavf/matroskaenc : Fix memory leak after write trailer
4 avril 2019, par Jun Zhaolavf/matroskaenc : Fix memory leak after write trailer
Fix memory leak after write trailer for #7827, only store a audio
packet whose buffer has size greater than zero in cur_audio_pkt.Audio packets with size zero, but with side-data currently lead to
memleaks, in the Matroska muxer, because they are not properly freed :They are currently put into an AVPacket in the MatroskaMuxContext to
ensure that the necessary audio is always available for a new cluster,
but are only written and freed when their size is > 0.As the only use we have for such packets consists in updating the
CodecPrivate it makes no sense to store these packets at all and this
is how this commit solves the memleak.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@googlemail.com>
Signed-off-by : Jun Zhao <barryjzhao@tencent.com> -
issue in converting a stream of images that is jittery and lossy into a video (using ffmpeg or otherwise)
17 mars 2019, par ksridhari have a program that is the source for png images that are sent out on its stdout. this program is prone to lose images as well have jitter (not deliver them on time precisely i.e. 25 frames/sec).
i tried the following with ffmpeg
image_streamer.sh | ffmpeg -vcodec png -i - -vf fps=25 -vcodec libx264 -y foo.mp4.
it was noticed that (a) when the input rate was wavering around 25 frames/sec with no drops the mp4 file was created fine but when (b) there were drops by the image_streamer.sh the fps filter did not duplicate images. i understand that there is no pts information in this case.
i read several questions/answers around this issue but there we related to files and not a pipe.
There was also a thread of conversation a long time back (https://ffmpeg.org/pipermail/ffmpeg-user/2012-December/011855.html) but it lead to a dead end.
i am quite naive to ffmpeg. i hope that this question is not something really stupid.
-
avcodec/mpeg4videodec : Fix nonsense warning
11 mars 2019, par Andreas Rheinhardtavcodec/mpeg4videodec : Fix nonsense warning
Since db772308941a2a338c7809f90d347219a6a93074 parsing of
mpeg4-extradata lead to a "Failed to parse extradata" warning, because
ff_mpeg4_decode_picture_header returns AVERROR_INVALIDDATA in case that
no VOP was found. This patch adds a parameter to signify whether a
header (where the absence of a VOP does not raise an error) or not is
parsed. The first mode is of course used for parsing headers.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@googlemail.com>
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>