
Recherche avancée
Autres articles (51)
-
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. -
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 -
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.
Sur d’autres sites (10605)
-
how to use glob in ffmpeg [on hold]
6 août 2013, par tainguyenI'm trying to use FFMpeg to create video with several png images that don't follow a sequence number. With the following command line
ffmpeg -f image2 -r 1 -pattern_type glob -i '*.png' -c:v libx264 mov.mp4
but it get error :
[image2 @ 0268b600] Pattern type 'glob' was selected but globbing is
not supported by this libavformat build '*.png' : Function not implementedso, how do I fix this error. I'm using windows 7 64bit
-
Restreaming video containing two languages live with ffmpeg
9 novembre 2012, par user1810837I have a project where i need to restream a live stream which has two languages setup on the audio.
Spanish on left and English on rightThe stream mapping is :
Stream #0:0: Video: h264 ([7][0][0][0] / 0x0007), yuv420p, 512x288 [SAR 1:1 DAR 16:9], q=2-31, 1k tbn, 1k tbc
Stream #0:1: Audio: mp3 ([2][0][0][0] / 0x0002), 44100 Hz, stereo, s16, 18 kb/sI need to restream this back live with just the English from the right side or just spanish from the left side, I tried looking everywhere but did not find any type of solution .
Since this needs to be done live, I can't be using other programs to separate video and audio to get it done.
This needs to be done through ffmpeg and I wonder if it even capable of doing so with original built or it would need some custom modification.
-
Is there a library for editing MP4 Metadata with Scala or Java ? [on hold]
8 août 2013, par Zack YoshyaroI've been using
ffmpeg
for the task by simply calling it from Scala. However, it's remarkably overkill to do so, asffmpeg
requires you to have an output file. So I'm creating entire copies of video files just so I can modify the ID3 tags. It's time, and CPU taxing to say the least.Obviously, they can be editing in place (for instance, by manually changing the tags in the property dialog in windows). Surely there's a way to do the same thing programatically ?