
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 (47)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
MediaSPIP Init et Diogène : types de publications de MediaSPIP
11 novembre 2010, parÀ l’installation d’un site MediaSPIP, le plugin MediaSPIP Init réalise certaines opérations dont la principale consiste à créer quatre rubriques principales dans le site et de créer cinq templates de formulaire pour Diogène.
Ces quatre rubriques principales (aussi appelées secteurs) sont : Medias ; Sites ; Editos ; Actualités ;
Pour chacune de ces rubriques est créé un template de formulaire spécifique éponyme. Pour la rubrique "Medias" un second template "catégorie" est créé permettant d’ajouter (...) -
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 (5202)
-
Revision 225 : Fixed file offset when checking for data tags overflows. Fixed flv file dump sto
21 avril 2011, par marc.noirotChanged Paths :
Modify /trunk/src/check.c
Modify /trunk/src/flv.c
Fixed file offset when checking for data tags overflows.
Fixed flv file dump stopping when encountering an empty tag body. -
ffmpeg recompressing a mkv file with subtitles without default value, the new file got a default subtitle
22 novembre 2022, par Tonic8on some file i need to recompress files using ffmpeg, i want the encoding on the video, but have all audio and all subtitles just copied with the same properties.


it seems if there are subitile, without default value, in the original mkv file, it will generate the new file with the first subtitle with "default" value.
If the original file had subtitles with already default value, then FFMPEG won't change anything


.\ffmpeg.exe" -nostats -hwaccel cuda -i ".\toto.mkv" -n -c:v h264_nvenc -preset slow -crf 22 -c:a copy -c:s copy -map 0:v -map 0:a -map 0:s? ".\toto_recompressed.mkv"


does my comand line is adding this behaviour, or i missing a paramter ?


i'm expecting to have ffmpeg not touch and simply "copy" the actual subtitles properties without modifying them.


-
FFMPEG : Appending an audio file at a specified time in a video file with pre-existing audio results in no addition [duplicate]
15 juin 2020, par JarsOfJam-SchedulerI have a video that contains images and a pre-existing audio.



I have an audio file of a duration Y that I would want to start in this video, after 5 seconds. It must no replace the audio during these Y seconds, but be appended. As a result I should hear both audio during these Y seconds.



What I've try to do is :



ffmpeg -i the_video.webm -itsoffset 5 -i the_audio_file.mp3 -map 0 -map 1 -c:v copy resulting_video_with_both_audio.webm



So it should add
the_audio_file.mp3
after 5 seconds. It should take all the streams of the video file, and all the streams of the new audio file, and mix it.


However my problem is that I only hear the audio of the video. I don't hear, indeed, the new audio at all. I should hear, during the first 5 seconds, the audio of the video. Then after 5 seconds, the audio of the video PLUS the Y seconds of the new audio file. Then after these Y seconds, the audio of the video until the end of the video.



Do you know how to fix this bug ? Why doesn't this command work ? Please I would prefer an answer that doesn't use
-filter
(because this command'll be executed in a Python script).