
Recherche avancée
Autres articles (67)
-
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 (10761)
-
Slicing video on several short clips of different lengths in one go
1er décembre 2019, par IgniterI’ve got time codes using which I want to slice a short MP4 video (average length 5-7 minutes)
[ 0, 15, 35, 52, 142, 215, ...] // time codes in seconds
Usually there are 5-7 time codes meaning that I need to create 5-7 clips out of my initial video
The fist clip is from start to 15 sec, the second one is from 15 sec to 35 sec, 35-52, etc.It’s trivial operation in Bash but I’m using ffmpeg on NodeJS and I’d like to do it without iteration in one go
// Slicing a single clip
ffmpeg -i input.mp4 -ss 0 -to 15 -c copy clip-01.mp4
// Same command in NodeJS
ffmpeg(`/tmp/${id}/input.mp4`)
.renice(5)
.outputOptions([
'-ss 0',
'-to 15',
'-c copy'
])
.on('end', () => {})
.on('error', (e, stdout, stderr) => {})
.save(`/tmp/${id}/clip-01.mp4`);No need for re-encoding, no need for precise timestamps (1 second out of sync is OK)
Any thoughts or ideas would be greatly appreciated ! -
avcodec/cuviddec : Add support for decoding HEVC 4:4:4 content
7 octobre 2018, par Philip Langdaleavcodec/cuviddec : Add support for decoding HEVC 4:4:4 content
This is the equivalent change for cuviddec after the previous change
for nvdec. I made similar changes to the copying routines to handle
pixel formats in a more generic way.Note that unlike with nvdec, there is no confusion about the ability
of a codec to output 444 formats. This is because the cuvid parser is
used, meaning that 444 JPEG content is still indicated as using a 420
output format. -
FFMPEG run time error
17 mai 2014, par saifI added FFMPEG to the references and the build is succeeded but when i run this error is appear
Could not load file or assembly ’AForge.Video.FFMPEG.dll’ or one of
its dependencies. The specified module could not be found.Looked at the Aforge page
http://www.aforgenet.com/framework/docs/html/4ee1742c-44d3-b250-d6aa-90cd2d606611.htm and Find this..Make sure you have FFmpeg binaries (DLLs) in the output folder of your
application in order to use this class successfully. FFmpeg binaries
can be found in Externals folder provided with AForge.NET framework’s
distribution.But I did not understand the meaning of it and how can I do that whether it is the reason of error