
Recherche avancée
Autres articles (101)
-
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (16301)
-
Estimate time and memory required when transcoding video FFMPEG [on hold]
8 mars 2019, par Anh Vo Nguyen NhatCurrently, I am trying to predict beforehand the time it takes when transcoding a video (e.g. transcoding 1920x1080 H264 video to 1280x720 VP9) using FFMPEG tool.
I have used the following features to build a simple neural network to predict the time :Video Resolution (Input + Output)
Video Duration
Video Codec (Input + Output)
Video Bitrate
Video Framerate
Number of B, I, P frames
However, the result is not really promising. I want to ask if there is any other way to estimate/predict the time it takes when transcoding a video ? Are there any other features beside the listed that affects the transcoding time ?
Beside the transcoding time, I also need to forecast the memory required by the process. I see a linear relation between the output resolution and the consumed memory. However, when trying with different computers the consumed memory are different. For example, 128GB computer would take 57GB to transcode, but for 64GB computer, it only takes 37GB. Is there any formula to calculate the required memory from the FFMPEG transcoding algorithm ?
-
Merge video files based on the start time [closed]
11 août 2020, par Nintendo CustomI have two MPEG-TS (h264) files with different start times. The first part overlaps the second part, so if you just put the files together, you have to see and hear the same part of the files twice.


Can I merge the two files so that I have a file that does not show the same part twice ?
I was thinking that someone could code something that gets the start time and then the end time and then merge it with ffmpeg or something like that.


-
ffmpeg not giving output files in desired segmented time
11 mai 2017, par Syam PradeepI am capturing my screen and saving it locally with segment time as 1 sec.Here is the ffmpeg command
ffmpeg -rtbufsize 1500M -r 10 -f dshow -i video="screen-capture-recorder" -map 0 -codec:v libvpx -minrate 6M -maxrate 6M -b:v 6M -f segment -flags -global_header -segment_format webm -segment_time 1 -preset ultrafast segment%03d.webmm
The segmented videos are having a duration of 5 sec contrary to the segment time of 1s.