Recherche avancée

Médias (0)

Mot : - Tags -/page unique

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

Autres articles (20)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-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

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

Sur d’autres sites (5550)

  • build : make out-of-tree builds bit-identical to in-tree builds

    28 décembre 2015, par Andreas Cadhalpun
    build : make out-of-tree builds bit-identical to in-tree builds
    

    Previously the full source path was embedded inconsistently in the debug
    information between in-tree/out-of-tree builds.

    The ’vpath %.inc’ becomes necessary for finding
    libavfilter/all_channel_layouts.inc in out-of-tree builds.

    The full source path is still embedded in the debug information, but
    it’s now independent of whether building in-tree or out-of-tree.

    The biggest improvement of this patch is that gdb now always searches
    for the path relative to the source directory. It still also searches
    for the full path.
    Previously it searched only for the full path in out-of-tree builds,
    making the debug information generated by Debian’s buildds rather hard
    to use.

    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>

    • [DH] Makefile
    • [DH] common.mak
    • [DH] configure
    • [DH] library.mak
  • avformat/cache : rename the class name fro Cache to cache

    4 décembre 2019, par Steven Liu
    avformat/cache : rename the class name fro Cache to cache
    

    liuqideMacBook-Pro:build liuqi$ ffmpeg —help full | grep cache
    cannot find cache protocol options.

    after patch :
    bogon:dash liuqi$ ./ffmpeg —help full | grep cache
    cache AVOptions :
    can find the cache AVOptions after patch.

    Signed-off-by : Steven Liu <lq@chinaffmpeg.org>

    • [DH] libavformat/cache.c
  • Merging RGB Channels in FFMPEG [migrated]

    14 octobre 2016, par Draconis

    I have three grayscale videos, representing the red, green, and blue channels from a video. I extracted them using the extractplanes filter, and sent them through different pipelines.

    Now I would like to combine them again. But while extractplanes is working perfectly, mergeplanes is not. My initial attempt was this :

    [r][g][b] mergeplanes=0x001020 [output]

    This interprets my RGB channels as YUV, which is not what I want. My next attempt was this :

    [r][g][b] mergeplanes=0x001020:rgb24 [output]

    But according to the error message, Only planar formats with more than one component are supported. (Same for all other RGB and RGBA pixel formats I tried.)

    Is there another way to put these channels back together ? Or some way to convince mergeplanes to output RGB ?