Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (77)

  • Organiser par catégorie

    17 mai 2013, par

    Dans 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 (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (7142)

  • lavc/qsv : Fix MSDK initialization failure in system memory mode

    19 septembre 2019, par Zhong Li
    lavc/qsv : Fix MSDK initialization failure in system memory mode
    

    MSDK does not create internal acceleration device on Linux,
    So MFXVideoCORE_SetHandle() is necessary.
    It has been added for ff_qsv_init_session_device().
    But missed for ff_qsv_init_internal_session() due to commit
    1f26a23 overwrited commit db89f45

    Fix #7030

    Signed-off-by : Zhong Li <zhong.li@intel.com>

    • [DH] libavcodec/qsv.c
    • [DH] libavcodec/qsv_internal.h
    • [DH] libavcodec/qsvdec.c
    • [DH] libavcodec/qsvdec.h
    • [DH] libavcodec/qsvenc.c
    • [DH] libavcodec/qsvenc.h
  • System.Diagnostics.Process pipe (vertical bar) not accepted as argument

    28 septembre 2019, par emp

    I’m trying to execute this code 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 -’

  • swscale/swscale_unscaled : fix gbrap10be md5 different on big endian system

    30 octobre 2019, par Limin Wang
    swscale/swscale_unscaled : fix gbrap10be md5 different on big endian system
    

    You can reproduce it by below command :
    ./ffmpeg -f lavfi -i "testsrc=duration=1:rate=30" -vf format=gbrap10 -vcodec rawvideo \
    -pix_fmt gbrap10le -flags +bitexact -sws_flags +accurate_rnd+bitexact -fflags +bitexact \
    -frames:v 1 -f nut md5 :

    little-endian :
    f91e2edd8098276579c1929e5e160416
    big-endian :
    ba4d011dbbdc78ccbf6cc7d698630929

    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>
    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libswscale/swscale_unscaled.c