
Recherche avancée
Médias (1)
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (47)
-
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)
Sur d’autres sites (7299)
-
avcodec/hevcdec : constrained intra predict, do not check top left IS_INTRA if it...
16 octobre 2020, par Xu Guangxinavcodec/hevcdec : constrained intra predict, do not check top left IS_INTRA if it's not available
fix ticket : 8932
For poc 2, we have tile boundary at x = 640.
When we predict cu(640,912),the top left pixel is not avaliable to the cu.
So, we can not check it's intra or not. We need set top[-1] = top[0] directly.
see 8.4.4.2.1 for detailsSigned-off-by : Xu Guangxin <oddstone@gmail.com>
Signed-off-by : Linjie Fu <linjie.justin.fu@gmail.com> -
C# ffmpeg not working
24 février 2018, par ViViI am trying to convert an mp3 file into a flac file using ffmpeg for c#.
I downloaded theffmpeg.exe
and placed it inside thebin/debug
folder of my project.My input folder is
testmp3
and output folder istestmp3OUTPUT
. These folders are located within the debug folder itself. testmp3 folder got mp3 files.This is the code I am using :
string inputfile = @"..\\testmp3\\349.mp3";
string outputfile = @"..\\testmp3OUTPUT\\349.flac";
Process myProcess = new Process();
ProcessStartInfo p = new ProcessStartInfo();
string sArgs = string.Format(" -i {0} -f wav - | neroAacEnc -ignorelength -q 0.5 -if - -of {1}", inputfile, outputfile);
p.FileName = "ffmpeg.exe";
p.CreateNoWindow = true;
p.RedirectStandardOutput = true;
//p.WindowStyle = ProcessWindowStyle.Normal
p.UseShellExecute = false;
p.Arguments = sArgs;
myProcess.StartInfo = p;
myProcess.Start();
myProcess.WaitForExit();
//Write details about call
myProcess.StandardOutput.ReadToEnd(); -
Please use -q:a or -q:v, -qscale is ambiguous
20 septembre 2017, par AbhishekI’m using FFMpeg to encode a video. This is the command :
fmpeg/ffmpeg -i '/home/ninbizco/public_html/public/temporary/15cf7_8665.mp4'
-ab 64k -ar 44100 -qscale 5 -r 25 -vcodec libx264 -acodec aac
-strict experimental -preset veryfast -f mp4 -vf "scale=480:386" -y
'/home/ninbizco/public_html/temporary/sitevideo/82_vconverted.1' 2>&1But I’m getting following error :
Please use -q:a or -q:v, -qscale is ambiguous
[AVFilterGraph @ 0x42838a0] Error initializing threading.
[AVFilterGraph @ 0x42838a0] Error creating filter 'anull'
Error opening filters!Following are the ffmpeg version details :
ffmpeg version N-63893-gc69defd Copyright (c) 2000-2014 the FFmpeg developers
built on Jul 16 2014 05:38:01 with gcc 4.6 (Debian 4.6.3-1)Can anyone tell me if it’s related to server configuration, because it’s not working on only one site and I’m not sure which server configuration to check. This command works fine on my localhost and other sites with the same ffmpeg version.