
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (96)
-
Sélection de projets utilisant MediaSPIP
29 avril 2011, parLes exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
Ferme MediaSPIP @ Infini
L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...) -
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. -
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 ;
Sur d’autres sites (6187)
-
what is the exact path to specify in php for ffmpeg for windows
17 janvier 2014, par user3196597i'm new to ffmpeg..and i've been trying to figure out the exact path to specify while running it in a php exec() function the code below runs fine in terminal but not in php :
1)c:/ffmpeg/bin/ffmpeg -y -i c:/xampp/htdocs/video/media/original.mp4 -f avi c:/xampp/htdocs/video/media/new.avi 2<&1
2)c:/xampp/htdocs/video/ffmpeg/bin/ffmpeg.exe -y -i c:/xampp/htdocs/video/media/original.mp4 -f avi c:/xampp/htdocs/video/media/new.avi 2<&1that works fine in terminal but not in php, i think the problem is with the path specification..can anyone tell the exact path to use while working in windows,please ??
thanks in advance friends :D
-
video File conversion from any fromat to webm in windows using ffmpeg command line
23 janvier 2014, par user3217695As i need to convert the video from any format which is uploaded to WEBM, since i am using video tag to play videos in browsers the code which i am using works fine for mp4 conversion but it doesn't for the WEBM format file. so please find me a solution
ffmpeg -i INPUT_FILE -y -ar 22050 -ab 512 -b 800k -f webm -s 514*362 OUTPUT_FILE.WEBM
Thanks.
-
Save Gstreamer stream at Windows side [closed]
18 février 2013, par user1336117I am streaming video from webcam from linux via gstreamer as below :
gst-launch -v v4l2src device=/dev/video0 ! videorate ! video/x-raw-yuv, width=320, height=240, framerate=5/1 ! videobalance saturation=0.0 ! jpegenc ! multipartmux ! tcpserversink host=192.168.10.24 port=5000
I can see the stream via VLC
tcp://192.168.10.67:5000
As the next step I want to save it as a video file but I could not succeeded.
I tried to setup gstreamer to windows but it did not worked.
I tried to save the stream by using ffmpeg on windows side but it did not worked.ffmpeg -i tcp://192.168.10.67:5000 -map 0 deneme.flv
What should I do to be able to save the stream on windows side ?