
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (111)
-
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...) -
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 -
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...)
Sur d’autres sites (7550)
-
FFMPEG is trim and -t ignored for the PSNR filter ?
14 novembre 2018, par secondplaceI wanted to run a PSNR check on a encoded segment but avoid extracting the segment in a lossless codec first for comparsion. I just wanted to trim the input, however it looks like this is disabled.
My command :
ffmpeg -i original.mp4 -i segment.mp4 -filter_complex "[0:v]trim=10:20,setpts=PTS-STARTPTS[0v];[1:v]setpts=PTS-STARTPTS[1v];[0v][1v]psnr" -f null -
This will run through the whole original input file and not trim the video in the filter.
If I try to trim the input with
-ss
and-t
, only the input-ss
flag is working. It will set the input correct but ignore the-t
timestamp.ffmpeg -ss 10 -i original.mp4 -t 10 -i segment.mp4 -filter_complex [0:v][1:v]psnr -f null -
Different placement of the
-t
will have no effect.I also tried to set the
duration
in trim while keeping the-ss
input which is working.ffmpeg -ss 10 -i original.mp4 -i segment.mp4 -filter_complex "[0:v]trim=duration=10,setpts=PTS-STARTPTS[0v];[1:v]setpts=PTS-STARTPTS[1v];[0v][1v]psnr" -f null -
I did try this with
end
andend_frame
but neither one worked.The same applies if I use
-lavfi
instead of-filter_complex
.I did have a brief look at the sourcecode of the PSNR filter but could not find any refrences to
trim
or-t
.Is this function blocked or am I doing something wrong ?
Would there be an alternative way to doing this without encoding a lossless version of the same segment to compare ? -
Mp3 volume up and down within specific parts Android
23 mai 2017, par Vivek BhattI want to alter the volume of an audio file(mp3) within specific parts.
Eg : In 5-10 sec, 10-15 sec, ... 10% of the original volume of audio and in rest for the part 100% of the original volume of audio.
I have tried with FFmpeg by the following command but it’s taking to much time if audio file is of longer durationffmpeg -i "input.mp3" -af volume=0.1:enable=’between(t,5,10)+between(t,5,10)’ -preset ultrafast "output.mp3
Is there any other way around which is bit quick.
Thanks in advance
-
ffmpeg convert mkv to mp4 with subtitles
18 février 2021, par Frederiki try to convert a mkv file to mp4. but I having trouble getting the subtitles copied.Thats the command I used :
ffmpeg -i input.mkv -c copy -c:s mov_text output.mp4
. The problem is the subtitles r in two different languages. The original has just one language. After copying the subtitles look like this :eng
original language
. Does anyone know how to fix that