
Recherche avancée
Médias (3)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (69)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
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" (...)
Sur d’autres sites (8512)
-
Gstreamer errors when streaming on windows
19 juillet 2014, par user2656632I tried to streaming video by gstreamer using this :
Sender :
gst-launch ksvideosrc ! ffmpegcolorspace ! ffenc_mpeg2video gop-size=1 ! mpegtsmux ! rtpmp2tpay ! udpsink host=127.0.0.1 port=5000
Receiver :
gst-launch udpsrc port=5000 caps="application/x-rtp, media=video, clockrate=90000, encoding-name=MP2TS" ! rtpmp2tdepay ! ffdemux_mpegts ! ffdec_mpeg2video ! ffmpegcolorspace ! directdrawsink
It works, but wrong. I got very low fps and I got this output :
0:00:01.583091000 19496 02404840 ERROR ffmpeg .:0:: invalid mb
type in I Frame at 33 21
0:00:01.590091000 19496 02404840 ERROR ffmpeg .:0:: Warning MV
s not available
0:00:20.763188000 19496 02404840 ERROR ffmpeg .:0:: invalid mb
type in I Frame at 33 21
0:00:20.764188000 19496 02404840 ERROR ffmpeg .:0:: Warning MV
s not available
0:00:20.816191000 19496 02404840 ERROR ffmpeg .:0:: skipped MB
in I frame at 7 22
0:00:20.817191000 19496 02404840 ERROR ffmpeg .:0:: Warning MV
s not available
0:00:20.847192000 19496 02404840 ERROR ffmpeg .:0:: skipped MB
in I frame at 24 19
0:00:20.949198000 19496 02404840 ERROR ffmpeg .:0:: skipped MB
in I frame at 3 20
0:00:20.970199000 19496 02404840 ERROR ffmpeg .:0:: invalid mb
type in I Frame at 36 19
0:00:20.982200000 19496 02404840 ERROR ffmpeg .:0:: skipped MB
in I frame at 14 20
0:00:21.007202000 19496 02404840 ERROR ffmpeg .:0:: slice mism
atch
0:00:21.031203000 19496 02404840 ERROR ffmpeg .:0:: skipped MB
in I frame at 13 20
0:00:21.060205000 19496 02404840 ERROR ffmpeg .:0:: skipped MB
in I frame at 31 24How I can fix these issues ?
-
flac and metaflac : Don’t always call setlocale() in Windows.
19 juillet 2014, par Erik de Castro Lopoflac and metaflac : Don’t always call setlocale() in Windows.
Windows (MSVC, MinGW) versions of setlocale don’t care about LC_*
environment variables. For example, flac cannot pass the test for
— until and —skip options the script calls it with —skip=0:01.1001
and it expects decimal comma (—skip=0:01,1001) on some locales.Solve this (on Windows) by calling setlocale(LC_ALL, "") if some
LC_* variable is set to "C".Patch-from : lvqcl <lvqcl.mail@gmail.com>
-
How to use Windows Media Foundation instead DirectShow Editing Services ?
3 novembre 2016, par DenI am developing a non-linear video editor. I need to have the support timeline, mixing of audio streams, the transitions between videos, etc. These all features are in DirectShow Editing Services, but it is no longer supported in the new versions of Windows. Instead, offer to use Microsoft Media Foundation. Is it possible to implement the same functionality in the MF or is using other SDK ? For example, gstreamer. Maybe someone will recommend SDK for video editing on the basis of MF ?