
Recherche avancée
Médias (2)
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
Autres articles (71)
-
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation"
Sur d’autres sites (9030)
-
Anomalie #4517 (Fermé) : Minipres "site en travaux" return un code 200
10 juillet 2020, par PIerre LASZCZAKBonjour,
Lorsqu’un site spip est prêt pour une nouvelle installation, minipres return un code HTTP 200
Vous semble-t-il pertinent de retourner un code 503 ?
Merci !
-
FFMPEG, change default audio track with code
2 août 2019, par GralexI have mkv video, and what just change default audio track without remux, encode/decode and other stuff. How it can be done with code ?
AVFormatContext *pFormatCtx;
av_register_all();
avcodec_register_all();
avformat_network_init();
pFormatCtx = avformat_alloc_context();
if (avformat_open_input(&pFormatCtx, [videoPath UTF8String], NULL, NULL) != 0) {
avformat_close_input(&pFormatCtx);
return;
}
if (avformat_find_stream_info(pFormatCtx, NULL) < 0) {
avformat_close_input(&pFormatCtx);
return;
}
for (int i = 0; i < pFormatCtx->nb_streams; i++) {
if (pFormatCtx->streams[i]->codecpar->codec_type == AVMEDIA_TYPE_AUDIO) {
// so we have audio track info
// what todo next?
}
}
avformat_close_input(&pFormatCtx); -
How to deploy external library along with function source code to firebase ?
2 octobre 2017, par Yizhou YanI am new to the firebase. I am doing a project which requires using ffmpeg to process video.
What I know about ffmpeg is that it runs on cmd. If I want to use ffmpeg to process video on my local computer in node.js, I need to install two things :
I first need to download the ffmpeg source code from its website, and set the system path variable so that I can run ffmpeg cmd in any directory. By doing this, I am now able to run ffmpeg in cmd to process video.
Second, install the ffmpeg module via npm. By doing this, I am now able to write code in node.js(or javascript ?) and uses functions that ffmpeg module provided to process video.
Now I want to do it with firebase. what I know about the firebase is that I am only allowed to write functions in node.js(or javascript ?) and deploy the functions to firebase server which could be trigger by events.
I also know that if I run
npm install --save ffmpeg
. in the function folder, it installs the module and--save
builds the dependency for me. Here the question comes. Where should I put the ffmpeg source code file and deploy it along with the ffmpeg module and my js function source code to the firebase ? and do I need to configure the ffmpeg source file(like setting the system path variable) ? Thank you in advanced !