
Recherche avancée
Médias (91)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
-
Les Miserables
4 juin 2012, par
Mis à jour : Février 2013
Langue : English
Type : Texte
-
Ne pas afficher certaines informations : page d’accueil
23 novembre 2011, par
Mis à jour : Novembre 2011
Langue : français
Type : Image
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (95)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (12153)
-
FFMPEG Android Compile With libmp3lame
7 juillet 2016, par burakcoskmy os is mac os x
I can compile and use ffmpeg without libmp3lame , and having no problems, I use below command to compile ffmpeg
sudo ./configure
but when I try it with
sudo ./configure —enable-libmp3lame
It returns error ERROR : libmp3lame >= 3.98.3 not found
However, I have libmp3lame installed on my system.
I installed libmp3lame using brew install lame
and linked with brew link lame.
when I look into config.log to see error messages I got this
gcc -D_ISOC99_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -DPIC -std=c99 -mdynamic-no-pic -fomit-frame-pointer -fPIC -E -o /tmp/ffconf.V6BXHwIr.o /tmp/ffconf.rMa57AkB.c /tmp/ffconf.rMa57AkB.c:1:10 : fatal error : ’lame/lame.h’ file not found
So it can not find lame/lame.h but I have lame/lame.h inside /usr/local/include ..
I really stucked on this and searched over internet for many hours,
any help would be greatly appreciated thanks
EDIT =====
I made some progress, now I have compiled ffmpeg witch runs without problems in Android, but I still could not combine it with the libmp3lame
-
ffmpeg stream : only video, no audio (twitch livestream)
24 mai 2023, par Sam LeursI have the following ffmpeg command in node.js to stream to a twitch livestream.


Please note that the code is simplified.


const ffmpeg = require('ffmpeg-static');

const cmd = `${ffmpeg} \
-stream_loop -1 \
-re \
-f mp4 \
-i ${argv.v} \
-stream_loop -1 \
-re \
-f mp3 \
-i ${argv.a} \
-c:a libmp3lame \
-c:v libx264 \
-b:a 128k \
-b:v 4500k \
-ar 44100 \
-ac 2 \
-preset veryfast \
-pix_fmt yuv420p \
-f flv ${url}`;

const stream = exec(cmd);



It's an mp4-file of 5 seconds and an mp3-file of 15 minutes. It should be an infinite stream.


The video works and is looped as expected, but the audio isn't playing. If I add the audio directly to the video (with a video editor) and stream the file, the audio at twitch works.


I had it working a few hours ago but after changing the command it does not work anymore. I was thinking I was blocked by twitch. It's a royalty free number generated by AI, so not a known pop song which could be blocked by twitch (if that's even possible).


Does someone know the solution ?


-
ffmpeg copy video in video with a specific time
13 février 2017, par AlklIm new in this topic (beginner) and Im german... So it’s a bit difficult to find the correct words...
I’ll try to explain what I’ve done and what I want to do :
-
Extract video area from the original video converted in PRORES codec :
ffmpeg.exe -i test.mkv -ss 00:06:21.99 -t 00:00:01.94 -async 1 -strict -2 -c:v prores_ks -pix_fmt yuva444p10le -profile:v 4444 -bits_per_mb 8000 -s 1920x1080 cut_video.mov
-
Edit the cut in After Effects
- Convert the PRORES in Matroska
ffmpeg.exe -i "C :\Users\Alex\Desktop\ffmpeg-20170202-08b0981-win64-static\bin\cut_video\cut_video.mov" -vcodec ffv1 -acodec pcm_s16le temp.mkv
- Replace the video area in the originale video file at the time 00:06:21.99...
I spend 4 hours for the two commands...
So I despair at the fourth step. Is it possible ? Can you help me ?I made a picture, so you can understand better what Im doing... : http://i.imgur.com/HqlNxzW.jpg
Best regards from germany,
Alex
-