
Recherche avancée
Médias (10)
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (94)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
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
Sur d’autres sites (7024)
-
avcodec/cbs_vp9 : keep track of reference frames
30 octobre 2018, par James Almer -
Adding soft dvdsub subtitle track (idx+sub) to mp4 video using ffmpeg [closed]
4 décembre 2024, par Tom SolidI have an
.mp4
video and advdsub
subtitle in to files (.idx
and.sub
). When I play the video (with VLC media player) the subtitles are displayed correctly, but I have tried to repack the video and the subtitles into one.mp4
file withffmpeg
:

ffmpeg -i input.mp4 -f vobsub -sub_name input.sub -i input.idx -map 0:v:0 -map 0:a:0 -map 1:s:0 -codec:v copy -c:a copy -scodec dvdsub output.mp4



the subtitles are not displayed. According to VLC, there is a subtitle track in output.mp4, but I cant see any subtitles during the play.


Additional information that the video size (624x336) and the frame size in input.idx (1920x1080) are different.


I have tried several variations of the code above (without forcing the format with
-f
, using three-i
keys, several variations of-map
) but I cannot figure out what is the problem. Your help is welcomed.

-
Using ffmpeg to merge two audio file and one video file with control volume ?
23 juin 2021, par mdtuyenI want to use ffmpeg to merge 2 audio files with one video file to create one video file, but in audio file I want to control the volume level of each file.



What should I do ?



ffmpeg -i video.mp4 -i input1.mp3 -i input2.mp3
-filter_complex "[1]volume=0.5,pan=2c[a];[2]volume=0.7,pan=2c[b];[a][b]amix=duration=shortest"
-ac 2 -c:a libmp3lame -q:v 0 output.mp4