
Recherche avancée
Médias (3)
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (27)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)
Sur d’autres sites (4553)
-
node-mlt - setting argument for watermark
3 avril 2016, par Ali DavudovI have get project where server get json file and media file and convert to xml. Server use mlt with node-mlt lib. My task is add watermark. I did it, but I can’t find any description for node-mlt method arguments except URL to file. node-mlt have example :
var watermark = new MLT.Filter.Watermark({resource:'/home/jeffrey/Desktop/signature.jpg'});
Does anybody know how I must setting opacity, size, position for this method ? Standard arguments for mlt this lib don’t recognize.
-
ffmpeg how convert mp3 to acc ? [closed]
21 septembre 2012, par John SmithPossible Duplicate :
ffmpeg how convert audio files in other formats ?code :
$infile=$dir.'file1.mp3';
$outfile_aac=$dir.'file1.acc';
shell_exec("ffmpeg -i $infile -ab 256 $outfile_aac");code create file .acc with size = 0... Where my error ?
FFmpeg version SVN-r12216,
Copyright (c) 2000-2008 Fabrice Bellard,
et al. configuration: libavutil version: 49.6.0 libavcodec version: 51.50.1
libavformat version: 52.7.0
libavdevice version: 52.0.0 built on Feb 25 2008 12:40:30,
gcc: 4.1.2 20070626 (Red Hat 4.1.2-14)
invalid new backstep 1008 Input #0, mp3, from '/hsphere/local/home/c292729/testwork.ru/10001/ConcertMedia/1348165273ExPRoG.mp3':
Duration: 00:01:48.8,
start: 0.000000,
bitrate: 319 kb/s
Stream #0.0: Audio: mp3, 44100 Hz, stereo, 320 kb/s Output #0, adts,
to '/hsphere/local/home/c292729/testwork.ru/10001/ConcertMedia/1348165273ExPRoG.aac':
Stream #0.0:
Audio: 0x0000, 44100 Hz,
stereo, 64 kb/s
Stream mapping: Stream #0.0 -> #0.0
Unsupported codec for output stream #0.0what codec me need use ?
-
Not able to configure FFserver for RTSP
2 novembre 2015, par SujithI am kind of new to the streaming world... so, please forgive me if I ask kind of dumb question.
I am trying to stream my pre-recorded file over RTSP through FFserver.
My config file is :
RTSPPort 8544
<feed>
File /home/xyz/tmp/feed2.ffm
FileMaxSize 200K
ACL allow 127.0.0.1
</feed>
<stream>
Feed feed2.ffm
Format rtsp
VideoFrameRate 15
VideoSize 352x240
VideoBitRate 256
VideoBufferSize 40
VideoGopSize 30
AudioBitRate 64
StartSendOnKey
</stream>After starting the server, it give the below log :
$ ./ffserver -f doc/ffserver.conf
ffserver version 0.11.1 Copyright (c) 2000-2012 the FFmpeg developers
built on Sep 17 2012 19:46:38 with gcc 4.1.2 20080704 (Red Hat 4.1.2-52)
configuration: --enable-gpl --enable-libmp3lame --enable-libtheora --enable-libvo-aacenc
-enable-libvorbis --enable-libvpx --enable-libx264 --enable-version3
libavutil 51. 54.100 / 51. 54.100
libavcodec 54. 23.100 / 54. 23.100
libavformat 54. 6.100 / 54. 6.100
libavdevice 54. 0.100 / 54. 0.100
libavfilter 2. 77.100 / 2. 77.100
libswscale 2. 1.100 / 2. 1.100
libswresample 0. 15.100 / 0. 15.100
libpostproc 52. 0.100 / 52. 0.100
Wed Sep 19 17:03:32 2012 FFserver started.And now from my VLC client I am trying to type the URL : rtsp ://xxx.xxx.xxx.xxx:8554/test.sdp
But, what happens is that, there is no response on the ffserver.
I have no clue what might be the problem. Thanks in advance.