
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
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 (97)
-
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. -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (6681)
-
Revision 96808 : Le plug n’est que pour spip 3.1 donc, je monte les version mini des ...
25 avril 2016, par spip.franck@… — LogLe plug n’est que pour spip 3.1 donc, je monte les version mini des "necessite" et "utilise" au première version compatible spip 3.1 car ce n’est pas possible d’avoir des bornes mini plus petite.
Ce commit ne change rien au plugin, mais ainsi ceux qui consultent le xml sur plugin.spip ont une information fiable
http://zone.spip.org/trac/spip-zone/browser/_plugins_/saisies/trunk/paquet.xml?rev=86449
http://zone.spip.org/trac/spip-zone/browser/_plugins_/champs_extras/core/trunk/paquet.xml?rev=85878
http://zone.spip.org/trac/spip-zone/browser/_plugins_/verifier/paquet.xml?rev=85813
http://zone.spip.org/trac/spip-zone/browser/_squelettes_/zpip-dist/branches/zpip_v1/plugin.xml?rev=86098
http://zone.spip.org/trac/spip-zone/browser/_core_/tags/spip-3.1.0/plugins/mediabox/paquet.xml
http://zone.spip.org/trac/spip-zone/browser/_plugins_/pages/trunk/paquet.xml?rev=85669
http://zone.spip.org/trac/spip-zone/browser/_plugins_/notifications/trunk/paquet.xml?rev=86486
http://zone.spip.org/trac/spip-zone/browser/_plugins_/openid/trunk/paquet.xml -
Subtitles added to MKV with ffmpeg doesn't show
15 avril 2023, par EfraínI've a weird problem, that I don't seem to understand what's happening. Basically, I've an MKV with 2 subtitle tracks, and I want to add a new one, so after searching a little, I worked this command


ffmpeg -i "file v.mkv" -i "file s.ass" -c copy -map 0 -map 1 -metadata:s:s:2 language=eng -metadata:s:s:2 handler_name=English -metadata:s:s:2 title=English-dl output.mkv



But when I opened output.mkv, and selected the 3rd sub track, It doesn't show the subtitles. I used MKVExtract to extract the track, and it correctly is the same .ass file that I merged, so I don't know why they don't show.


I used this other command as example to make the previous one


ffmpeg -i "file v.mkv" -i "file s.ass" -c copy -map 0 -dn -map "-0:s" -map "-0:d" -map "1:0" "-metadata:s:s:0" "language=eng" "-metadata:s:s:0" "handler_name=English" "-metadata:s:s:0" "title=English-dl" "output.mkv"



And this one correctly show the subtitles, but it erase the 2 original tracks of the MKV(Which I don't want to happen). What is the difference here that makes the second one show the subtitles, but the first one don't ? Do I have to lose the original subs for this ?


-
FFMPEG to remove audio but keeping background sound
17 octobre 2022, par SushilI am trying to add voice over to the existing video which has some audio in English and some background sound. I am trying to add other than English audio on top of it and keeping background sound. But when I add new audio it removes all the background sound and when it adds new audio which makes it robotic as original background sound is lost.
When I add new audio by using amix filter, it keeps all sound like English and new language both, and both plays together.


- 

- Is there any way to separate background sound and speaking audio from video separately ?
- Is it possible to mute or remove audio from only parts of video like offset between time frames ?






Command that I am using for add new audio

ffmpeg -i independance_speech.mp4 -i 01.mp3 -filter_complex "[1]adelay=10000[s1];[s1]amix=inputs=2[a]" -map 0:v -map "[a]" -c:v copy result.mp4