
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (56)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Changer son thème graphique
22 février 2011, parLe thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
Modifier le thème graphique utilisé
Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
Il suffit ensuite de se rendre dans l’espace de configuration du (...)
Sur d’autres sites (5784)
-
merge video and audio with offset
28 décembre 2012, par blejzzI am working on a app that generates videos from multiple images. Now i need to add several audio files to the generated video and merge them to gather. Each audio file has a time offset (relative to the video). What i would like to archive is something like this :
input :
- Video.mp4 (duration 00:00:10)
- audio1.caf (offset 00:00:1 duration 00:00:01)
- audio2.caf (offset 00:00:3 duration 00:00:01)
- audio3.caf (offset 00:00:5 duration 00:00:01)
output : result.mp4 (duration 00:00:10)
I have tried using ffmpeg and itsoffset parameter but that is only to offset video and not audio. Does anyone know how and with what software i could merge multiple audio files with specific offsets into one audio file ?
Thanks
-
Good library for encoding videos in a dynamic language ?
8 novembre 2011, par RyanI'm looking for an effective library for encoding videos. I would prefer something in one of the Ruby/Python ilk type languages, but I'd use libraries in C or PHP that were good. Essentially, I'm looking for something that wraps ffmpeg, and would allow me to convert H.264 .mp4's into .theora.ogv, .webm, and (this would be nice) .flv files.
Worst case, I could always just use any language to natively execute ffmpeg, using something like command("ffmpeg -i ...etc."), but I'd prefer something a bit higher level/in-language if possible.
I've already looked at RVideo, but couldn't get it to work correctly.
-
Video conversion using map-reduce
17 mars 2014, par user3428294I have a Ruby on Rails application where users would be uploading videos and I'm looking for a system for converting videos uploaded by the users to
FLV
format.Currently we are using
FFMPEG
and since video conversion is a heavy task it seems to be taking a lot of time and a lot of CPU resources..We are looking if we can use map-reduce / Hadoop framework for implementing video conversion, as it is completely distributed.
Is it a good option to use map-reduce for video conversion in real time ? If it is so, how can that be implemented ?
Note : Each video file size is around 50 - 60 MB.