
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (64)
-
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 (...) -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
Sur d’autres sites (12009)
-
How to configure FFMPEG in PHP 5.2.17 and IIS 7 environment
29 mars 2014, par KRAI have working PHP 5.2.17 (thread safe) in IIS 7 / Windows 7.
I want to setup FFMPEG in my local server.
I downloaded php ext from this link : 1.html">http://www.4shared.com/zip/YZkvqY6v/ffmpeg-php-win32-all_1.html
Then I followed this tutorial : http://blog.halomede.com/2009/03/ffmpeg-php-installation-on-windows.html
But ffmpeg is not displaying in phpinfo() ; as they mentioned in tutorial.
Can you please let me know what wrong I am doing ? It will be very helpful.
Thank you,
-
How to convert .flv file to .3gp using ffmpeg ? [migrated]
19 octobre 2011, par ChetanaI have converted any video format to 3gp file format using ffmpeg on one server.
But on another server it not works.Following is my script :
exec("ffmpeg -i test.flv -sameq -acodec libmp3lame -ar 22050 -ab 96000
-deinterlace -nr 500 -s 320x240 -aspect 4:3 -r 20 -g 500 -me_range 20
-b 270k -deinterlace -f flv -y test.3gp ");Can anyone tell me what is wrong in script ?
Following is my ffmpeg setting :
root@ninja [ ]# ffmpeg -formats
ffmpeg version CVS, build 3277056, Copyright (c) 2000-2004 Fabrice Bellard
configuration : —enable-mp3lame —enable-libogg —enable-gpl —disable-mmx
—enable-shared
built on Jun 17 2009 10:51:43, gcc : 4.1.2 20080704 (Red Hat 4.1.2-44) -
FFMPEG - Not finding codec parameters
26 février 2016, par Tanner SmithI’m trying to convert a sequence of images into a mpeg movie via FFMPEG, although I keep getting an error saying that it could not find the code parameters (Video : mjpeg). A Google search did not bring much up that was useful.
ffmpeg -f image2 -i /tmp/img%03d.jpg video.mpgFFmpeg version SVN-r0.5.1-4:0.5.1-1ubuntu1, Copyright (c) 2000-2009 Fabrice Bellard, et al. configuration : —extra-version=4:0.5.1-1ubuntu1 —prefix=/usr —enable-avfilter —enable-avfilter-lavf —enable-vdpau —enable-bzlib —enable-libgsm —enable-libschroedinger —enable-libspeex —enable-libtheora —enable-libvorbis —enable-pthreads —enable-zlib —disable-stripping —disable-vhook —enable-runtime-cpudetect —enable-gpl —enable-postproc —enable-swscale —enable-x11grab —enable-libdc1394 —enable-shared —disable-static libavutil 49.15. 0 / 49.15. 0 libavcodec 52.20. 1 / 52.20. 1 libavformat 52.31. 0 / 52.31. 0 libavdevice 52. 1. 0 / 52. 1. 0 libavfilter 0. 4. 0 / 0. 4. 0 libswscale 0. 7. 1 / 0. 7. 1 libpostproc 51. 2. 0 / 51. 2. 0 built on Mar 4 2010 12:35:30, gcc : 4.4.3 [mjpeg @ 0x9069870]dqt : 16bit precision [mjpeg @ 0x9069870]mjpeg : unsupported coding type (c9) [mjpeg @ 0x9069870]mjpeg : unsupported coding type (cf) [mjpeg @ 0x9069870]only 8 bits/component accepted [mjpeg @ 0x9069870]dqt : 16bit precision [mjpeg @ 0x9069870]huffman table decode error [mjpeg @ 0x9069870]mjpeg : unsupported coding type (ca) [mjpeg @ 0x9069870]mjpeg : unsupported coding type (ce) [mjpeg @ 0x9069870]mjpeg : unsupported coding type (cb) [mjpeg @ 0x9069870]decode_sos : invalid len (60581) [mjpeg @ 0x9069870]only 8 bits/component accepted [mjpeg @ 0x9069870]decode_sos : invalid len (56833) [mjpeg @ 0x9069870]invalid id 207 [mjpeg @ 0x9069870]mjpeg : unsupported coding type (cd) [mjpeg @ 0x9069870]huffman table decode error [image2 @ 0x90682c0]Could not find codec parameters (Video : mjpeg) /tmp/img%03d.jpg : could not find codec parameters
The images reside in the /tmp directory with names such as img001.jpg and img002.jpg.
Any ideas ?
Thanks
Tanner