
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (58)
-
MediaSPIP : Modification des droits de création d’objets et de publication définitive
11 novembre 2010, parPar défaut, MediaSPIP permet de créer 5 types d’objets.
Toujours par défaut les droits de création et de publication définitive de ces objets sont réservés aux administrateurs, mais ils sont bien entendu configurables par les webmestres.
Ces droits sont ainsi bloqués pour plusieurs raisons : parce que le fait d’autoriser à publier doit être la volonté du webmestre pas de l’ensemble de la plateforme et donc ne pas être un choix par défaut ; parce qu’avoir un compte peut servir à autre choses également, (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Déploiements possibles
31 janvier 2010, parDeux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
Version mono serveur
La version mono serveur consiste à n’utiliser qu’une (...)
Sur d’autres sites (6486)
-
FFmpeg Multi-Line Commands
31 août 2015, par alr027I’m not really a programmer but I started dabbling with FFmpeg to edit mp4 files and have come across a problem. I’m trying to add an mp3 overlay to an mp4 video with it’s own audio track using FFmpeg. I want to keep the original audio as well as the new one. The only way I found is to strip the audio from the original video, combine it with the mp3 file, and then combine that file back with the mp4 :
ffmpeg -i video.mp4 1.mp3
ffmpeg -i audio.mp3 -i 1.mp3 -filter_complex amerge -c:a libmp3lame -q:a 4 audiofinal.mp3
ffmpeg -i videofinal.mp4 -i audiofinal.mp3 -shortest final.mp4That is a fine way of doing it and it works but I have to run my files back and forth through FFmpeg way too many times. How can I write one text file to run all three of these commands in sequence ?
Also, I’m using Windows.
-
Use ffmpeg to time-dilate and resample audio without changing frequencies
18 mai 2018, par AdisakI have some audio (wave file) that is sampled at a rate of 48000 samples per second.
This audio was created to match a 30 FPS video. However, the video actually plays back on the target at the NTSC framerate of 29.97 (30 X 1000/1001).
This means that I need to time-dilate the audio so that there are 48048 samples where there were previously 48000 samples (it plays back 1.001 times slower) but still maintains that the final audio file’s rate is 48000 samples per second.
Ideally, also, I’d like to do this resample using the sox library option for FFMPEG since I hear it has much higher quality.
Can anyone help me with the command line necessary to process a file in this manner ?
-
FFmpeg Command Combinations
1er septembre 2015, par alr027I’m trying to add an mp3 overlay to an mp4 video with it’s own audio track using FFmpeg. I want to keep the original audio as well as the new one. The only way I found is to strip the audio from the original video, combine it with the mp3 file, and then combine that file back with the mp4 :
1)
ffmpeg -i video.mp4 1.mp3
2)
ffmpeg -i audio.mp3 -i 1.mp3 -filter_complex amerge -c:a libmp3lame -q:a 4 audiofinal.mp3
3)
ffmpeg -i videofinal.mp4 -i audiofinal.mp3 -shortest final.mp4
That is a fine way of doing it and it works but I have to run my files back and forth through FFmpeg way too many times. How can I write one text file to run all three of these commands in sequence ?
Note : I’m using Windows.