
Recherche avancée
Médias (2)
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (49)
-
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
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 (...)
Sur d’autres sites (5991)
-
How to use FFMPEG for Mac Apps
9 avril 2015, par Andy HinI’m building a Mac App that requires some features from FFMPEG. I want to package FFMPEG and distribute it along with my app such that it is not a dependency for the end user.
I went here http://www.ffmpeg.org/download.html#build-mac and downloaded the 64-bit static binary. I extracted it using p7zip and I now have these 2 files : https://www.dropbox.com/s/r0frvxdpsr7jfti/Screenshot%202015-04-09%2012.28.25.png?dl=0
How do I include the library in my xcode project ? How do I call the FFMPEG functions ?
Any help appreciated.
-
Zip an audio file In NodeJS with archiver in fly
31 juillet 2018, par dnp1204I use node-youtube-dl to have a stream to download a video and I want to convert it to mp3 using fluent-ffmmpeg. I also want to zip this mp3 audio to send to the client to download it but I cannot figure how to zip the mp3 audio. I find every corner of StackOverflow but I did not find any solution. Please help me ! Thanks
const stream = youtubedl(url);
const videoTitle = await youtube.getVideoTitle(url);
const converter = new ffmpeg({ source: stream });
const zip = archiver('zip');
// This does not work since converter.toFormat('mp3') is not a stream
zip.append(converter.toFormat('mp3'), {
name: `${videoTitle}.${toFormat}`
});
zip.finalize();I really appreciate if you can help me ! Thanks again
-
FFMPEG performance when reading directly from s3 vs local
16 janvier 2020, par user1147070I have a usecase where I need to transcode a s3 file. I have two options
Option a : Download the file to local, then run ffmpeg on it
Option b : Provide a presigned URL as ffmpeg input eg -
"./ffmpeg -loglevel debug -y -i "https://mybucket/key?signedParams" -threads 0 -map_chapters -1 -f mp4 -movflags faststart -map 0:0 -acodec libfdk_aac -ac 2 -ar 44100 -b:a 48k -sn -vn /output.mp4"I tried running both and comparing the time but I don’t see any much performance improvement in #b as compared to #a.
I have 2 questions
-
Is #b is better in performance than #a ? Or both of them are same ?
-
In case of #b does ffmpeg wait for complete download and then start transcoding or it start downloading and transcoding simultaneously ?
-