
Recherche avancée
Autres articles (77)
-
Les statuts des instances de mutualisation
13 mars 2010, parPour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...) -
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
Sur d’autres sites (8390)
-
avconv much longer than ffmpeg
18 mars 2014, par fsulserI was using ffmpeg to generate some images from a video. Now I read that I shouldn't use ffmpeg longer and use avconv from libav instead.
So I tried to do the same thing with avconv.The ffmpeg is looking like this :
ffmpeg -ss 1000 -t 5 -i 'test.mp4' -s '120*90' -r 10 out%2d.bmp
Same with avconv :
avconv -ss 1000 -t 5 -i 'test.mp4' -s '120*90' -r 10 out%2d.bmp
ffmpeg needs less than one second to finish. Avconv about 90 seconds for the same task.
Is this usual or do I need to change some things to work with avconv ? -
libav much longer than avconv
17 mars 2014, par fsulserI was using ffmpeg to generate some images from a video. Now I read that I shouldn't use ffmpeg longer and use avconv from libav instead.
So I tried to do the same thing with avconv.The ffmpeg is looking like this :
ffmpeg -ss 1000 -t 5 -i 'test.mp4' -s '120*90' -r 10 out%2d.bmp
Same with avconv :
avconv -ss 1000 -t 5 -i 'test.mp4' -s '120*90' -r 10 out%2d.bmp
ffmpeg needs less than one second to finish. Avconv about 90 seconds for the same task.
Is this usual or do I need to change some things to work with avconv ? -
FFMPEG excute error from C# with "setup factory"setups
15 mars 2012, par Savas Adari am developing an application and i am using ffmpeg in this application for convert audio file "mp3" to "amr".
My application running successfully when i debug it or when if i copy debug folder another computer, it is running.
But, i am create a setup with "Setup Factory" application. When i install application which i create with setup factory, ffmpeg code block is not running, i get "OutputPackage" as null.
here is code ;
Converter converter = new Converter();
//varsa sil
if (File.Exists(PathTargetPre + "_orijinal.amr"))
File.Delete(PathTargetPre + "_orijinal.amr");
//dosyayı convert et ve olustur
OutputPackage oo = converter.ConvertToAMR(PathSource, PathTargetPre + "_orijinal.amr");
if (oo == null)
{
MessageBox.Show("Convert Error!");
return;
}
//dosya hazırlandı
if (oo.AudioStream == null)
{
MessageBox.Show("Convert Error 2!");
return;
}
lblGercekBoyut.Text = Convert.ToString((oo.AudioStream.Length / 1000)) + " KB";
lblSikismisBoyut.Text = Convert.ToString((oo.AudioStream.Length / 1000)) + " KB";
actualBitrate = converter.GetVideoInfo(PathTargetPre + "_orijinal.amr").BitRate;here is "ConvertToAMR" method ;
public OutputPackage ConvertToAMR(string sourcePath, string destPath)
{
OutputPackage ou = new OutputPackage();
string Params = string.Format("-i {0} -ar 8000 -ac 1 {1}", sourcePath, destPath);
//-ab 320k
string output = RunProcess(Params);
if (File.Exists(destPath))
{
ou.AudioStream = LoadMemoryStreamFromFile(destPath);
}
return ou;
}