
Recherche avancée
Autres articles (87)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (7806)
-
How to fix ffmpeg-php Version : not loaded or not installed
4 février 2014, par user3149210I installed these
ffmpeg-php version => 0.6.0-svn
But still that shows an error ffmpeg-php Version : not loaded or not installed.
-
Unable to execute CLI commands through PHP
13 janvier 2012, par user940154OS : ubuntu 11.10
Webserver : Apache
Code : PHP
I am trying to display the output of command "ffmpeg -i " on the webpage using php.
Required : The webpage should show the information about video (text).
Whats happening : The webpage shows no text output on running the php code.
If I was however doing system("ls") the code runs fine and outputs the list of files.
Here's my code<?php
echo "Details of video file:";
system('ffmpeg -i /home/atish/Videos/T2V0040006_Angled_ride_720x576i_FLDCMB.avi');
?>The same command works fine on my shell, and my system has ffmpeg installed. Here's a snapshot of executing this command directly on shell :
ThinkPad-T420:~/Videos$ ffmpeg -i /home/xx/Videos/T2V0040006_Angled_ride_720x576i_FLDCMB.avi
ffmpeg version git-2012-01-10-7e2ba2d Copyright (c) 2000-2012 the FFmpeg developers
built on Jan 10 2012 12:01:19 with gcc 4.6.1
configuration: --enable-gpl --enable-libfaac --enable-libmp3lame --enable-libopencore- amrnb --enable-libopencore-amrwb --enable-libtheora --enable-libvorbis --enable-libx264 --enable-nonfree --enable-postproc --enable-version3 --enable-x11grab
libavutil 51. 34.100 / 51. 34.100
libavcodec 53. 54.100 / 53. 54.100
libavformat 53. 29.100 / 53. 29.100
libavdevice 53. 4.100 / 53. 4.100
libavfilter 2. 58.100 / 2. 58.100
libswscale 2. 1.100 / 2. 1.100
libswresample 0. 6.100 / 0. 6.100
libpostproc 51. 2.100 / 51. 2.100
Input #0, avi, from '/home/atish/Videos/T2V0040006_Angled_ride_720x576i_FLDCMB.avi':
Metadata:
encoder : Lavf52.23.1
Duration: 00:00:29.00, start: 0.000000, bitrate: 124422 kb/s
Stream #0:0: Video: rawvideo (I420 / 0x30323449), yuv420p, 720x576, 25 tbr, 25 tbn, 25 tbc
At least one output file must be specifiedI have tried appending "DISPLAY=:0" to my command and also done "xhost +" before running php code, but nothing is helping me out.
Thanks.
-
live streaming video file from iphone to internet using FFMpeg
18 avril 2014, par Luis Moki am trying to live streaming some video content from iphone to the internet (or server). I have read the following post (http://stackoverflow.com/questions/4084811/iphone-http-live-streaming-without-any-server-side-processing)
And i understand i can first capture the images and audio into file then send it out to the internet. But i really have no idea how to start the work on constantly send out these video files.
I understand i can use ffmpeg to do the streaming part. after long researching i can only found a sample program called iFrameExtractor using FFmpeg library. But the sample only shows how to use ffmpeg to playback a video file, but no sample on how to use the live streaming function in ffmpeg...
Can anyone provide a direction or tutorial how to live streaming a video file using ffmpeg ? or anyone can suggest other ways to solve this problem ? i am sure lots of people want to know how to do that.