
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (59)
-
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 (3146)
-
avcodec/ffv1 : flip half of float16 and Compactify floats
18 janvier, par Michael Niedermayeravcodec/ffv1 : flip half of float16 and Compactify floats
float16 (and more so float32) have many odd values
half the values are negative, many are larger than "1.0"
and many values are very close to 0.Storing the 16bits as is, looses compression because of the mixture
of dense and sparse regions and also many completely unused ones.This simply remaps the 65536 values so no unused values remain
This improves compression by about 1.5% for the ACES_OT_VWG_SampleFrames testset
(this testset contains all kind of funny values including many images
with negative rgb values)The space needed for the map is insignificant compared to the
compression gainedThis patch also flips half the float range as it can be done
using the same table.Sponsored-by : Sovereign Tech Fund
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
ffmpeg problem video duration of an hour and a half
14 mai 2024, par Bruno MunnéWhen start record i call an api /start-record which does :


const ffmpeg = spawn("ffmpeg", [
 "-i",
 rtsp,
 "-c:v",
 "copy",
 "-an",
 "-f",
 "flv",
 `${filename}.flv`,
 ]);
ffmpegProcesses[rtsp] = {
 process: ffmpeg,
 filename,
 };



When stop the record i call an api /stop-record which does :


ffmpegProcesses[rtsp].process.kill("SIGKILL");
ffmpegProcesses[rtsp].process.on("exit", async () => {
 const ffmpeg = spawn("ffmpeg", [
 "-i",
 `${filename}.flv`,
 "-c:v",
 "libx264",
 "-preset",
 "fast",
 "-crf",
 "30",
 "-an",
 `${filename}.mp4`,
 ]);

 ffmpeg.on("exit", async () => {
 uploadToS3()
 })

})



If the recording is less than or equal to approximately 1 hour it works perfectly, but if the recording is 1 and a half hours it already breaks and it does not correctly generate the files, nor the flv nor the conversion to mp4


I hope my program works the same way it does for 1 hour recordings


-
riscv : set fast half-precision conversion
16 novembre 2023, par Rémi Denis-Courmontriscv : set fast half-precision conversion
This is only supported at compilation time. If Zfhmin is supported, then
conversions are fast, which is what the flag is used for. At this time,
run-tiem detection is not possible, as in not supported by Linux. But even
if it were, the current FFmpeg approach seems unable to deal with it (same
problem as on x86, really).