
Recherche avancée
Médias (91)
-
999,999
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
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
Autres articles (50)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
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 -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)
Sur d’autres sites (12989)
-
recompiling audio from a movie source
4 novembre 2016, par jkushnerIs it possible to recompile movie files to re-stream the audio so they all have the same volume level ? We’ve got users submitting videos and to me it seems some are higher in volume whereas others are not, and they all have the same volume level on the controls, and i’d like to standardize this so all movie files have the same volume levels.
I was thinking of
ffmpeg
although I only have novice knowledge of this technology and haven’t done my research in it yet.Anyway if there’s anything available I’d love to know.
Thanks !
-
Subtitles using ffmpeg [closed]
27 juillet 2024, par TZINIS PANAGIOTISI have a file that contains subtitles in vobsub format and im trying to encode it using ffmpeg. Is there a way to encode it in mp4 ? When I use c:s copy the subtitles become way larger than their original size. The file contains, different audios, subtitles and chapters.


The code I used is :
ffmpeg -i input.mp4 -map 0 -map -0:12 -c:v hevc_nvenc -preset fast -c:a copy -c:s copy "output.mp4"


Where -map -0:12 is because for some reason stream 12 causes an error, and -c:v hevc_nvenc because I'm trying to find a code that works first and then encode using H.265.


When i encode the output in mkv it seems to work, but in mp4 it cause the mentioned problem about the large subtitles.


-
Add multiple subtitles to video with ffmpeg-python
26 mars 2021, par ScottBot10I am trying to add multiple subtitles (not burned) to a video file with ffmpeg-python. I have this ffmpeg command :


ffmpeg -i input.mp4 -f srt \
-i "subs/en/en_srt_sub.srt" \
-i "subs/fr/fr_srt_sub" \
-map 0:0 -map 0:1 -map 1:0 -map 2:0 \
-c:v copy -c:a copy \
-c:s srt -c:s srt \
-metadata:s:s:0 language=en -metadata:s:s:0 title=English \
-metadata:s:s:1 language=fr -metadata:s:s:1 title=French \
output.mkv



Is there a way to do this with the ffmpeg-python module or do I just have to use string formatting and subprocess.