Recherche avancée

Médias (0)

Mot : - Tags -/objet éditorial

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (70)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie 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, par

    MediaSPIP 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 ; (...)

  • Déploiements possibles

    31 janvier 2010, par

    Deux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
    L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
    Version mono serveur
    La version mono serveur consiste à n’utiliser qu’une (...)

Sur d’autres sites (12368)

  • lavfi/vf_vpp_qsv : accept P010 input in system memory

    6 décembre 2022, par Haihao Xiang
    lavfi/vf_vpp_qsv : accept P010 input in system memory
    

    Signed-off-by : Haihao Xiang <haihao.xiang@intel.com>

    • [DH] libavfilter/qsvvpp.c
    • [DH] libavfilter/vf_vpp_qsv.c
  • Video alignment error with ffmpeg in android system

    18 juillet 2012, par hyy

    I am using ffmeg to encode yuv pics to MPEG4 video file.The yuv420sp pics were got from camera preview(my android 2.3 phone). And I secondly use sws_scale change them to yuv420p.
    After the encoding the MPEG4 video has not the same image position. A
    percent of the right vertical part of the video has moved to the left side
    of the video. Does anyone know why is this happening ?

  • System.Diagnostics.Process pipe (vertical bar) not accepted as argument

    15 avril 2014, par emp

    I'm trying to execute following code (source : http://geekswithblogs.net/PearlFactory/archive/2011/11/23/convert-mp3-to-aacflac-to-aac-or-any-other-combination.aspx) using System.Diagnostics.Process. It works fine in command line. But in C# it's failing on the | character.

    var myProcess = new Process();
           var p = new ProcessStartInfo();
           var sArgs = " -i emp.mp3 -f wav - | neroAacEnc -ignorelength -q 0.5 -if - -of emp.mp4";
           p.FileName = "ffmpeg.exe";
           p.CreateNoWindow = false;
           p.RedirectStandardOutput = false;
           p.UseShellExecute = false;
           p.Arguments = sArgs;
           myProcess.StartInfo = p;
           myProcess.Start();
           myProcess.WaitForExit();

    It gives the following error :

    Unable to find a suitable output format for '|' : Invalid argument

    I've looked around on stackoverflow and found the following hint but it is also not working :

    var psi = new ProcessStartInfo("ffmpeg.exe");
           psi.Arguments = "\"-i emp.mp3 -f wav -\" | \"neroAacEnc -ignorelength -q 0.5 -if - -of emp.mp4\"";
           psi.CreateNoWindow = false;
           psi.UseShellExecute = false;
           var process = new Process { StartInfo = psi };
           process.Start();
           process.WaitForExit();

    gives the following error :

    Unrecognized option 'i emp.mp3 -f wav -'
    Failed to set value '|' for option 'i emp.mp3 -f wav -'