
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (64)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (6168)
-
How to install ffmpeg-php Mac OS X leopard
10 juillet 2021, par RyanHas anyone been able to install ffmpeg-php on osx ? i was able to install ffmpeg via mac ports. ffmpeg-php wont install.



Problems : cannot find shared directory because macports installs it to /opt/local/include/ and /opt/local/lib. ffmpeg-php looks in /usr/local/include/ffmpeg



phpize returns a whole bunch of warnings, not sure if this is a problem or not.



When i get all the headers/libraries in the right locations make is still throwing fits.



Has anyone actually done this ? or...



is there an alturnative to ffmpeg ? I want to be able to create pictures of video frames on the fly.


-
ffmpeg is not running from php exec() function, work from command line
6 mars 2016, par ThanigaivelanWhen i run the ffmpeg command it is working from command line. but when i try from php
exec()
. it returns 127 error.my ffmpeg
root@w1 [/]# which ffmpeg
/root/bin/ffmpegthis is my code
ffmpeg-y -i /home/castbox/public_html/IGVideo/upload/tamil/videos/testing/test_ig.mp4 -acodec libfdk_aac -ab 24k -ar 44100 -c:v libx264 -pix_fmt yuv420p -profile:v baseline -level 31 -b:v 200k -g 72 -f hls -hls_time 3 -hls_list_size 999 -s 426x240 /home/castbox/public_html/IGVideo/upload/tamil/videos/testing/test_ig-240-index.m3u8
when i run this code in from command line it work fine. but when try to run from php exec i am getting failed, it returns 127.i had tried like this also
/path/to/ffmpeg-y -i /home/castbox/public_html/IGVideo/upload/tamil/videos/testing/test_ig.mp4 -acodec libfdk_aac -ab 24k -ar 44100 -c:v libx264 -pix_fmt yuv420p -profile:v baseline -level 31 -b:v 200k -g 72 -f hls -hls_time 3 -hls_list_size 999 -s 426x240 /home/castbox/public_html/IGVideo/upload/tamil/videos/testing/test_ig-240-index.m3u8
Where is my mistake ?
-
Ffmpeg Command Not executing with Java RunTime Command on Mac OS
28 juin 2021, par Abhishek C.I am facing an issue regarding ffmpeg command execution in a Java Application on Mac OS.
Below is the command : :
ffmpeg -f avfoundation -r 3 -fpsprobesize 1 -i "0:0" -ar 44100 -filter_complex amix=inputs=1 -c:v h264 -crf 30 -preset ultrafast -ar 44100 -pix_fmt yuv420p -aq 1 file.mp4


When I run this command on terminal, it is working fine but with ProcessBuilder is returns
Video Device Not Found and Input/Output Error.


Please help me to understand the reason behid it.