
Recherche avancée
Autres articles (83)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)
Sur d’autres sites (4291)
-
I want to add text or logo on video by Node.js Express but don't know how and don't find on google after search
20 octobre 2022, par dafazaI want to add text or logo on video by Node.js Express but don't know how and don't find on google after search just this but don't work


var ffmpeg = require('fluent-ffmpeg');
var axios = require('axios');

// make sure you set the correct path to your video file

var proc = ffmpeg('./input.mp4')
 .videoFilters({
 filter: 'drawtext',
 options: {
 fontfile:'font.ttf',
 text: 'THIS IS TEXT',
 fontsize: 20,
 fontcolor: 'white',
 x: '(main_w/2-text_w/2)',
 y: 50,
 shadowcolor: 'black',
 shadowx: 2,
 shadowy: 2
 }
})
 .input('https://verse.mp3quran.net/arabic/shaik_abu_baker_alshatri/64/001002.mp3')
 .on('end', function () {
 console.log('file has been converted succesfully');
 })
 .on('error', function (err) {
 console.log('an error happened: ' + err.message);
 })
 // save to file
 .save('./out.mp4');



-
Revision 34b6abefa2 : Enable dual buffer rd search and encoding scheme This commit enables the dual b
6 novembre 2013, par Jingning HanChanged Paths :
Modify /vp9/encoder/vp9_block.h
Modify /vp9/encoder/vp9_encodeframe.c
Modify /vp9/encoder/vp9_encodemb.c
Modify /vp9/encoder/vp9_onyx_if.c
Modify /vp9/encoder/vp9_rdopt.c
Enable dual buffer rd search and encoding schemeThis commit enables the dual buffer rate-distortion optimization
and encoding scheme. It stacks the original transform coefficients,
quantized levels, and reconstructed coefficients, in the rate-
distortion optimization search process, hence eliminates the need
to re-run residual generation, forward transform, and quantization
in the encoding stage.Change-Id : I011bfad3a59a380a869ee552e91dae0394ec492e
-
Revision b4b09c9796 : Enable fast forward txfm and quant for rate-distortion search This commit enabl
7 août 2014, par Jingning HanChanged Paths :
Modify /vp9/encoder/vp9_block.h
Modify /vp9/encoder/vp9_quantize.c
Modify /vp9/encoder/vp9_rdopt.c
Enable fast forward txfm and quant for rate-distortion searchThis commit enables encoder to select fast forward transform and
quantization path according to the prediction residual sse/variance,
in the rate-distortion optimization scheme.Change-Id : Ief9fc3844fd4107166d401970e800c6e5ce2b5fe