
Recherche avancée
Médias (91)
-
Les Miserables
9 décembre 2019, par
Mis à jour : Décembre 2019
Langue : français
Type : Textuel
-
VideoHandle
8 novembre 2019, par
Mis à jour : Novembre 2019
Langue : français
Type : Video
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
-
Un test - mauritanie
3 avril 2014, par
Mis à jour : Avril 2014
Langue : français
Type : Textuel
-
Pourquoi Obama lit il mes mails ?
4 février 2014, par
Mis à jour : Février 2014
Langue : français
-
IMG 0222
6 octobre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Image
Autres articles (65)
-
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...) -
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. -
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 (9420)
-
GStreamer x264enc not found
5 avril 2017, par Dominik SchreiberI installed GStreamer-0.10 and all modules (base, good, bad, ugly, ffmpeg) according to these instructions (browse through by clicking prev/next) :
http://www.linuxfromscratch.org/blfs/view/svn/multimedia/gst-plugins-ugly.htmlEverything seemed to have worked just fine but when I want to execute my pipeline I got this error :
glib.GError: no element "x264enc"
Apparently the module was not installed :
gst-inspect x264enc
No such element or plugin 'x264enc'After that I installed the codec by executing :
sudo apt-get install x264
This did not work either. So I installed the latest build manually :
http://www.videolan.org/developers/x264.htmlAfter a successful installation of x264 I ran ./configure on the gstreamer-0.10 ugly modules once again and found out about this :
configure: *** checking feature: x264 plug-in ***
configure: *** for plug-ins: x264 ***
checking for X264... no
configure: No package 'x264' found
configure: *** These plugins will not be built: x264
configure: creating ./config.statusA check if x264 is available seems to get fullfilled :
which x264
/usr/local/bin/x264I’m using ubuntu server 12.04 LTS. Any ideas what I have to do to compile this module properly ? Thanks !
-
GStreamer x264enc not found
5 avril 2017, par Dominik SchreiberI installed GStreamer-0.10 and all modules (base, good, bad, ugly, ffmpeg) according to these instructions (browse through by clicking prev/next) :
http://www.linuxfromscratch.org/blfs/view/svn/multimedia/gst-plugins-ugly.htmlEverything seemed to have worked just fine but when I want to execute my pipeline I got this error :
glib.GError: no element "x264enc"
Apparently the module was not installed :
gst-inspect x264enc
No such element or plugin 'x264enc'After that I installed the codec by executing :
sudo apt-get install x264
This did not work either. So I installed the latest build manually :
http://www.videolan.org/developers/x264.htmlAfter a successful installation of x264 I ran ./configure on the gstreamer-0.10 ugly modules once again and found out about this :
configure: *** checking feature: x264 plug-in ***
configure: *** for plug-ins: x264 ***
checking for X264... no
configure: No package 'x264' found
configure: *** These plugins will not be built: x264
configure: creating ./config.statusA check if x264 is available seems to get fullfilled :
which x264
/usr/local/bin/x264I’m using ubuntu server 12.04 LTS. Any ideas what I have to do to compile this module properly ? Thanks !
-
ffmpeg : 1 frame manipulation on demand
7 juillet 2013, par Chris RussoHello folks & friends of SO !
We need to create a small application to take a random frame from a video, and apply some modifications to it, in real time.
This has to be done in real time, and in order to do that, we wouldn't mind to create some initial delay, before the video starts streaming. So let's assume we have a total of 6 seconds of preloading time, in order to :
1) extract a keyframe.
2) create an image with it.
3) manipulate the image.
4) replace the original keyframe with the new one.The point (3) of the previous algorithm is already solved using GD as a PHP module. However we would need to find a solution for the rest of the procedure in order to accomplish this.
Please if anyone is available to help us with this, feel free to contact me.
Thanks in advance ;
Chris C. Russo