
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (79)
-
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 (...) -
Menus personnalisés
14 novembre 2010, parMediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
Menus créés à l’initialisation du site
Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
Sur d’autres sites (10171)
-
How to batch convert to x265 minimal file size but keep best possible quality using hardware acceleration in Windows ?
12 août 2023, par N.TW12I am new to the
ffmpeg
, as the matter of fact just know it for a few hours, I have a huge family videos in mp4/mov x264 format and I would like to convert them all to x265. I don't know what setting is robust for most of the cases so I use-c:v hevc_nvenc
and tried :

for /f "tokens=1 delims=." %a in ('dir /B *.mp4') do ffmpeg -i -c:v hevc_nvenc "%a.mp4" "%a.x265.mp4"

for /f "tokens=1 delims=." %a in ('dir /B *.mp4') do ffmpeg -i "%a.mp4" -c:v hevc_nvenc "%a.x265.mp4" 



I got an error :
v was unexpected
at this time. How to batch convert to x265 minimal file size but keep best possible quality using hardware acceleration in Windows ?

Edit : I also would like to change the filename by adding ".x265" @ the end of the new file.


-
Révision 22126 : Report minimal de r22116 r22118 r22119 : #3418 : Octave utilise une configuration...
10 mai 2015, par cedric - -
"Cannot find ffmpeg" error when using 'audioconcat'
2 janvier 2020, par MosukoshideI would like to concatenate three ’.oga’ sound files using audioconcat, however whenever I try to do so, I am met with this error :
Error: Error: Cannot find ffmpeg
at /root/user/node_modules/fluent-ffmpeg/lib/processor.js:136:22
at /root/user/node_modules/fluent-ffmpeg/lib/capabilities.js:123:9
at /root/user/node_modules/fluent-ffmpeg/lib/capabilities.js:116:11
at /root/user/node_modules/fluent-ffmpeg/lib/utils.js:223:16
at F (/root/user/node_modules/which/which.js:68:16)
at E (/root/user/node_modules/which/which.js:80:29)
at /root/user/node_modules/which/which.js:89:16
at /root/user/node_modules/isexe/index.js:42:5
at /root/user/node_modules/isexe/mode.js:8:5
at FSReqWrap.oncomplete (fs.js:152:21)
ffmpeg stderr: undefinedI have already installed ffmpeg with the flags that were listed on the audioconcat npm page like this :
npm i ffmpeg --enable-libass --enable-libmp3lame
And the code I am trying to run looks like this :
audioconcat(audioFiles)
.concat(`main.oga`)
.on('start', function (command) {
console.log('ffmpeg process started:', command)
})
.on('error', function (err, stdout, stderr) {
console.error('Error:', err)
console.error('ffmpeg stderr:', stderr)
})
.on('end', function (output) {
console.error('Audio created in:', output)
})I’m not sure how to fix this problem...