
Recherche avancée
Autres articles (45)
-
L’agrémenter visuellement
10 avril 2011MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté. -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Menus personnalisés
14 novembre 2010, parMediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
Menus créés à l’initialisation du site
Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)
Sur d’autres sites (6940)
-
Create a time-lapse movie by speeding a video up to the time of an audio file
26 décembre 2014, par Peak Reconstruction WavelengthInput
- Audio file, mp3, 2 minutes
- Video file, mov, 1920 x 1080, 29 fps, 13 minutes
I want to know which command to use to have a time-lapse movie mov as a result, which is two minutes long while remaining 29 fps, so it speeds up to match the time of 1. and the audio track of 2. is replaced with 1..
My approach
ffmpeg.exe" -i "x.MOV" -i "y.mp3" -vcodec copy -async 10 -ab 128k "e.MOV"
which only puts the audio file to the beginning.
-
Converting .mp4 to .webm with FFMPEG
24 septembre 2012, par DAVYMAny chance someone can help me make this a 2 or 3 pass command :
Using "FFmpeg Win64 Static build by Kyle Schwarz, compiled on : Sep 19 2012 16:31:43" in the Command Prompt of Windows7(x64). I am a newbie to FFMPEG and trying to convert videos for my website from .mp4 to .webm (videos edited and mixed in AdobePremiereProCS6 where then encoded into .mp4 from .mts Canon HXG10 recordings). Original video file is 1080p quality.
c :\ff/ffmpeg -i c :\ff/xxx.mp4 -codec:v libvpx -quality good -cpu-used
0 -b:v 7000k -qmin 10 -qmax 42 -maxrate 500k -bufsize 1500k -threads 8
-vf scale=-1:1080 -codec:a libvorbis -b:a 192k -f webm c :\ff/xxx.webm -
speeding up x264 encoding (C++ code with libavcodec)
20 décembre 2012, par Hrishikesh_PardeshiI am trying to capture windows screen (continuous screen shots) and encode them into x264. For that I am using avcodec_encode_video2 function available with libavcodec. However, it takes a huge amount of time. The time fluctuates between 25 – 1800 milliseconds for encoding individual frames.
I tried tried both 1080p and 720p with video recording on screen.
These are the settings I am using. This was tested on Windows 7, win32 release build with 4 GB of RAM.
bit_rate = 2000, width = 1920, height = 1080
qmin = 0, qmax = 0, max_b_frames = 0, frame_rate = 25, pixel_format = YUV 4:4:4.
The remaining settings are default which are fetched using avcodec_get_context_defaults3().Sample data(in milliseconds) for 20 frames (consecutive and chosen randomly) in a set of 250 frames.
121, 106, 289, 126, 211, 30, 181, 58, 213, 34, 245, 50, 56, 364, 247, 171, 254, 83, 82, 229For the application it is a must that it captures at least at 15 fps. Can someone help out to tell whether any options can be used to improve the frame rate. I need to encode lossless, but I am open to some file size increase.
Thanks in advance.