
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (57)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (6625)
-
compress video like facebook using ffmpeg
3 juin 2017, par Mahesh Prajapatii have already used many of the commands but it will reduced size when i will reduce the height width but facebook reduce the size without reducing height width so how can it possible using ffmpeg if not exactly result but want similar result.
hear is the some sample example i have done with height width decries.
$cmd3="$ffmpeg -i Wildlife.wmv -r 30 -s 400x224 -c:v libx264 -y Wildlife_30fps_400x224_testing.mp4";
but i dont want to change height width i want to reduce size as well as convert all the extension only in .mp4 format.
-
how to make video module with nodejs like facebook did with photos
31 mai 2017, par aharitJust wondering how to start ? The needs :
With around 10 photos, being able to produce a small video of 5-10sec, with animations for example (transition ?), i want to reproduce the facebook videos process if anybody know about that, which technical stack is the best, modules (ffmpeg, wrapper ffmpeg)(pyhton, nodejs).
Thx
-
How to live stream on facebook via ffmpeg ?
17 août 2016, par K. TalhaI am trying live streaming on facebook via ffmpeg but I get one error. As the error, I must use AAC instead of mp3. But I don’t know how to do it.
Error :
Bad audio codec 2 (MP3). Accepted audio codecs: AAC
Normally, I can run command below for youtube succesfully.
ffmpeg -i "rtmp://..." -deinterlace -vcodec libx264
-pix_fmt yuv420p -preset medium -r 30 -g 60 -b:v 2500k
-acodec libmp3lame -ar 44100 -threads 6 -qscale 3 -b:a
712000 -bufsize 512k -f flv "rtmp://a.rtmp.youtube.com/live2/key"But when I run command below with facebook rtmp, error gets.
ffmpeg -i "rtmp://..." -deinterlace -vcodec libx264
-pix_fmt yuv420p -preset medium -r 30 -g 60 -b:v 2500k
-acodec libmp3lame -ar 44100 -threads 6 -qscale 3 -b:a
712000 -bufsize 512k -f flv "rtmp://rtmp-api.facebook.com:80/rtmp/key"I am user of Ubuntu 14.04.
Thanks in advance.