
Recherche avancée
Autres articles (110)
-
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
Que fait exactement ce script ?
18 janvier 2011, parCe script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
Installation de dépendances de MediaSPIP
Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...)
Sur d’autres sites (5028)
-
A light-weight Rust crate for encoding videos from images and audios [closed]
24 décembre 2019, par Agus Putra DanaI want to make a web app that enable users to generate video from canvas animation. I’m aware that I can record the canvas animation and the audios using
catureStream()
, but I want to generate the video without playing the audio. Also, the video frame rate generated using this method is not consistent.My idea is to capture the canvas frame by frame and store them as blob to get a consistent frame rate. And then encode the video from these blobs and some audio files uploaded by the user using web assembly. I’m also aware that I can use FFMPEG to encode the video. But the file size of the compiled FFMPEG is quite big.
Is there any light-weight video encoder library, preferably written in Rust, just for encoding video from images and audios ?
-
FFMPEG weight/compression compromise
15 juillet 2022, par untrimattacksI'm look for the best way to reduce the weight of videos. Find a weight/compression compromise on different resolutions (from 480p to 1080p). But without degrading the audio/video quality too much.


I've looked at different questions/answers and looking the FFMPEG documentation but I'm not sure about the best way to do this


maybe




ffmpeg5\ffmpeg.exe -i "file.mp4" -i watermark.png -filter_complex
"overlay=x=(main_w-overlay_w)*0.95:y=(main_h-overlay_h)*0.95"
-loglevel error -stats -hwaccel cuda -preset veryfast "fileEDIT.mp4"




or




ffmpeg5\ffmpeg.exe -loglevel error -stats -hwaccel cuda -i "file.mp4" -i watermark.png -filter_complex
"overlay=x=(main_w-overlay_w)*0.95:y=(main_h-overlay_h)*0.95" -vcodec
libx265 -crf 21 "fileEDIT.mp4"




or




ffmpeg5\ffmpeg.exe -loglevel error -stats -hwaccel cuda -i "file.mp4"
-i watermark.png -filter_complex "overlay=x=(main_w-overlay_w)*0.95:y=(main_h-overlay_h)*0.95" -vcodec
libx265 -crf 21 -maxrate 3200k -bufsize 4200k "fileEDIT.mp4"




(i add an overlay and this overlay size is different depending on the resolution, it's smaller or bigger but that's another concern. I have to look but i have an idea how to do it with GetDetailsOf method, iColumn 314 )


thanks


-
avfilter/palettegen : rename local variable box_weight to weight
27 décembre 2022, par Clément Bœsch