
Recherche avancée
Médias (2)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (59)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)
Sur d’autres sites (5736)
-
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).

-
How can I copy metadata from source original video file to compressed video file like AV1 without reencode ?
16 août 2021, par MartinHero13I am just trying to copy metadata from original video file (1.24 GB) into AV1 video file (80 MB).
It did not encoded AV1 for FFmpeg, just I encoded to AV1 using by NotEnoughAV1Encoders.
So, any solutions for copy metadata from original to AV1 video file without reencode ?