
Recherche avancée
Autres articles (106)
-
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 (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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 (...)
Sur d’autres sites (10171)
-
avformat/framecrcenc : print basic side data information again
11 mai 2021, par James Almeravformat/framecrcenc : print basic side data information again
This partially reverts c6ae560a18d67b9ddaa25a0338b7fb55e3312e57.
Signed-off-by : James Almer <jamrial@gmail.com>
- [DH] libavformat/framecrcenc.c
- [DH] tests/ref/fate/copy-trac3074
- [DH] tests/ref/fate/cover-art-mp3-id3v2-remux
- [DH] tests/ref/fate/gapless-mp3
- [DH] tests/ref/fate/id3v2-priv-remux
- [DH] tests/ref/fate/matroska-mastering-display-metadata
- [DH] tests/ref/fate/matroska-spherical-mono-remux
- [DH] tests/ref/fate/matroska-vp8-alpha-remux
- [DH] tests/ref/fate/mov-cover-image
- [DH] tests/ref/fate/mxf-d10-user-comments
- [DH] tests/ref/fate/segment-mp4-to-ts
- [DH] tests/ref/fate/webm-webvtt-remux
-
FFMPEG - 2-pass video conversion final file size is larger than expected
14 juin 2022, par Kevin KorbWe are converting files and the target filesize is important. For one version of the video it can not be above 750KB.


We are using the 2-pass encoding and specifying the target audio bitrate and target video bitrate, however the longer the duration of the video, the larger the file becomes and exceeds our 750KB target.




For example, our file is 53.3 seconds, we know our final target of
750KB. We like our audio at 48kbps (mono).


So we calculate our target (total) bitrate at : 750*8/53.3 = 112.57
total kbps Audio bitrate = 48kbps Video bitrate = 112-48 = 64kbps
video


We would expect the file produced to be 746.2KB. (112*53.3 / 8)


The file produced is 850k(ish).




Is there something that takes up space in the file that isn't video or audio that we need to take into consideration ?


-
Why is the resulting clip of my ffmpeg concatenation much longer than expected ?
21 mai 2018, par joeycatoI’d like to extract a set of clips from a 60fps input video, change each of their durations, then recombine those modified clips. Unfortunately when I attempt this, the resulting clip doesn’t exactly match the sum of those durations.
Here’s my repro case :
- Extend an extracted 2-second clip to 4 seconds ( input frame count = 120 = 60fps * 2 sec ) )
ffmpeg -y -ss 8 -t 2 -i ./clip_60fps.avi -filter:v "settb=(4/120),setpts=(4/120)*N/TB" -r 120/4 -vcodec huffyuv step1.avi
- Shorten an extracted 4-second clip to 1 second ( input frame count = 240 = 60fps * 4 sec )
ffmpeg -y -ss 10 -t 4 -i ./clip_60fps.avi -filter:v "settb=(1/240),setpts=(1/240)*N/TB" -r 240/1 -vcodec huffyuv step2.avi
- Concatenate the modified clips :
mylist.txt contents :
file './step1.avi'
file './step2.avi'ffmpeg -y -safe 0 -f concat -i ./mylist.txt -r 60 -vcodec huffyuv steps_joined.avi
The result :
ffmpeg -i step1.avi 2>&1 | grep Duration
ffmpeg -i step2.avi 2>&1 | grep Duration
ffmpeg -i steps_joined.avi 2>&1 | grep DurationDuration : 00:00:04.00, start : 0.000000, bitrate : 3228 kb/s
Duration : 00:00:01.00, start : 0.000000, bitrate : 23132 kb/s
Duration : 00:00 :39.98, start : 0.000000, bitrate : 910 kb/s
Why am I not getting an exact result of 5 seconds, but instead a much larger value ?