
Recherche avancée
Médias (3)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (70)
-
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 (9669)
-
lavfi/vf_libplacebo : support blending multiple inputs
15 juin 2023, par Niklas Haaslavfi/vf_libplacebo : support blending multiple inputs
Subsequent inputs require frame blending to be enabled, in order to not
overwrite the existing frame contents.For output metadata, we implicitly copy the metadata of the *first*
available stream (falling back to the second stream if the first has
already reached EOF, and so on). This is done to resolve any conflicts
between inputs with differing metadata. So when e.g. input 1 is HDR and
output 2 is SDR, the output will be HDR, and vice versa. This logic
could probablly be improved by dynamically determining some "superior"
set of metadata, but I don't want to handle that complexity in this
series. -
FFmpeg percentage progress in javascript
26 septembre 2023, par devVue123I use javascript, Vue 3 and FFmpeg version :


"@ffmpeg/core": "^0.11.0",
"@ffmpeg/ffmpeg": "^0.11.6",



I have a function that cuts videos based on times entered by the user :


async videoTrim() {
 this.ffmpeg.FS("writeFile", "video.mp4", await fetchFile(videoData.source));

 await this.ffmpeg.run(
 "-ss", startTime,
 "-i", "video.mp4",
 "-to", endTime,
 "-crf", "23",
 "-c:v", "copy",
 "-c:a", "copy",
 "-reset_timestamps", "1",
 "-avoid_negative_ts", "1",
 "videoNew.mp4",
 )

 return this.ffmpeg.FS("readFile", "videoNew.mp4");
}



PROBLEM :
I need to find out the percentage progress during video trimming so that I can give the user information about how long the trimming will take
(If you have any comments or suggestions for improving the function
this.ffmpeg.run
, please let me know)

-
avfilter/vf_libplacebo : set correct alpha mode before blending
19 février, par Niklas Haasavfilter/vf_libplacebo : set correct alpha mode before blending
&pl_alpha_overlay expects straight alpha, but the alpha output may be
premultiplied as a result of the target alpha mode (or in the absence of an
alpha channel). Fix it by requesting independent alpha explicitly when
blending.