Recherche avancée

Médias (0)

Mot : - Tags -/gis

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

Autres articles (52)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

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

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Les statuts des instances de mutualisation

    13 mars 2010, par

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

Sur d’autres sites (5997)

  • How to use MeidaToolkit.NetCore to convert videos in Asp Core 2

    21 mai 2020, par AlTheSwede

    I'm using MediaToolkit.NetCore which is in an early stage in order to convert videos into mp4 format but I have not been able to get it to work on ASP Core 2.

    



    With MeidaToolkit.NetCore I tried this :

    



    var inputFile = new MediaFile {Filename = @"C:\Path\To_Video.flv"};

var outputFile = new MediaFile {Filename = 
@"C:\Path\To_Save_New_Video.mp4"};

using (var engine = new Engine())

{ engine.Convert(inputFile, outputFile);}


    



    But the problem is that ffmpeg.exe is not embedded in library binaries so I get an error on new Engine(). In order to fix this, you have to pass a path to ffmpeg.exe explicitly in the constructor, which I don't know how to do.

    



    How can I pass the ffmpeg.exe in the constructor above ?

    


  • avformat/mov : fix eof check in mov_read_iinf()

    3 février, par Kacper Michajłow
    avformat/mov : fix eof check in mov_read_iinf()
    

    This fix ensures that the loop stops early on EOF. The issue occurs
    because mov_read_infe() performs a version check and skips unsupported
    versions. The problem is that seeking within the stream clears the EOF
    flag, causing avio_feof() to not function as expected. This is resolved
    by moving the EOF check after reading the size and type, ensuring the
    EOF flag is set when necessary.

    Signed-off-by : Kacper Michajłow <kasper93@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/mov.c
  • lavfi/metal : simplify fallback

    12 juillet 2024, par Marvin Scholz
    lavfi/metal : simplify fallback
    

    Instead of using a fallback variable, just do an early return.

    • [DH] libavfilter/metal/utils.m