
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (97)
-
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 (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, 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 (...)
Sur d’autres sites (8526)
-
Concat creates a still image before the video
7 décembre 2017, par Vitalis HommelI am creating a cutlist like this
file 't1.MP4'
inpoint 1.45067
outpoint 3.18133
file 't2.MP4'
inpoint 3.45067
outpoint 6.18133
...and I use it like this
ffmpeg -y -f concat -safe 0 -i list.txt -c:v libx264 -c:a aac -af aresample=async=1 -pix_fmt yuv420p output.mp4
The output almost always contains a still image at the start, sometimes half the video time, sometimes less, showing the first frame then the final video starts. I noticed, the less
inpoint
andoutpoint
are apart, the longer the still image at the start. Maybe its also connected to the amount ofinpoint
andoutpoint
.How do I solve this ?
-
Revision effd974b16 : Limit arf interval for low fpf clips. This patch limits the maximum arf interv
16 avril 2015, par paulwilkinsChanged Paths :
Modify /vp9/encoder/vp9_firstpass.c
Modify /vp9/encoder/vp9_ratectrl.c
Limit arf interval for low fpf clips.This patch limits the maximum arf interval length to
approximately half a second. In some low fps animations in
particular the existing code was selecting an overly long interval
which was hurting visual quality. For a sample problem test clip
(360P animation , 15fps, 200Kbit/s) this change also improved
metrics by >0.5 db.There may be some clips where this hurts metrics a little, but the
worst case impact visually is likely to be less than having an
interval that is much too long. On more normal material at 24
fps or higher, the impact is likely to be nil/minimal.Change-Id : Id8b57413931a670c861213ea91d7cc596375a297
-
ffmpeg output video is not up to the par
4 juin 2015, par user3668629I am trying to overlay text on video with ffmpeg. The following command is working fine. My concern is the resultant video quality. There is a difference in quality between the original and output video. With the following command, the output video size is almost half of the original one. How can I maintain the size in the output vid ? Any suggestions. I have tried to increase the framerate as well as bitrate, but the quality does not improve. Can you please give me suggestions of how can I retain the same video quality and size in my output video. Your help will be much appreciated. Thank you.
$ffmpeg -i input_video.mp4 -filter:v drawtext="fontfile=/path/to/font.ttf: text='Demo Text': fontcolor=white: fontsize=24" -video_size hd720 -codec:v mpeg4 output_video.mp4