
Recherche avancée
Médias (91)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
-
Les Miserables
4 juin 2012, par
Mis à jour : Février 2013
Langue : English
Type : Texte
-
Ne pas afficher certaines informations : page d’accueil
23 novembre 2011, par
Mis à jour : Novembre 2011
Langue : français
Type : Image
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (62)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)
Sur d’autres sites (13123)
-
no success to test ffmpeg via php
15 mai 2014, par user3307827Recently I install ffmpeg on my server (VPS/centos) via this link :
http://linuxsysconfig.com/2013/04/compile-latest-ffmpeg-and-vlc-on-centos-6/So Now..I wana test it in php :
<?php
$SourcePath = dirname($_SERVER['SCRIPT_FILENAME']).'/dinamit.mp4';
$uploadpath = dirname($_SERVER['SCRIPT_FILENAME']).'/dinamit.flv';
if(exec('/usr/local/bin/ffmpeg -i $SourcePath $uploadpath'))
echo "success";
else
echo "no success";
?>But I got no success msg
Anybody Can tell me my problem ?
-
C++ How to stream mpeg over http?
9 mai 2014, par Titouan42I have a streaming server (nodejs) which listen a mpeg stream over http,
by using this code.Currently, I would like to feed my server without the ffmpeg tool, as below, but with a C++ code.
ffmpeg -s 640x480 -f video4linux2 -i /dev/video0 -f mpeg1video \
b 800k -r 30 http://example.com:8082/yourpassword/640/480/
So, my question is how to simply stream mpeg over http?
Help please !
-
C++ Send mpeg over http FFmpeg [on hold]
10 mai 2014, par Titouan42I have a streaming server (nodejs) which listen a mpeg stream over http,
by using this code.Currently, I feed my server using ffmpeg tool as below :
ffmpeg -s 640x480 -f video4linux2 -i /dev/video0 -f mpeg1video \
b 800k -r 30 http://example.com:8082/yourpassword/640/480/
Now, I would like to do similar job by feeding the nodejs server using a C++ code, that acquire frame with OpenCV then encode and send it with ffmpeg.
Help please !