Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (53)

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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (9899)

  • avocdec/cavsdsp : Fix undefined pointer arithmetic

    27 septembre 2022, par Andreas Rheinhardt
    avocdec/cavsdsp : Fix undefined pointer arithmetic
    

    src2 is used in CAVS_SUBPIX_HV iff FULL is true (it is exactly
    for the egpr functions) ; otherwise it might be NULL. So check
    for FULL before doing pointer arithmetic.
    Fixes a "src/libavcodec/cavsdsp.c:524:1 : runtime error : applying
    non-zero offset 8 to null pointer" from UBSan.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/cavsdsp.c
  • nohup >/dev/null alternative for windows

    24 décembre 2014, par Abdullah Al Mamun

    I’m running a php script which is not working properly in my windows OS but this is supposed to work in linux.

    I figured it out that nohup is not an associated tool with windows.

    $ffmpeg = 'C:\ffmpeg\bin\ffmpeg';
    $command = "nohup >/dev/null 2>&amp;1 ".$ffmpeg." -i {$input_path} {$ffmpeg_string} -stats -y {$output_path} 2> {$log_path} >/dev/null &amp;";
    exec( $command );

    So what could be my best alternatives if I want to run this code on windows.
    Detailed explanation will be greatly appreciated as I don’t know much about background process.

    nohup on windows, exec without waiting for finish

  • Compiling ffmpeg for android on windows OS

    22 octobre 2015, par Srini5

    After searching a lot on web I didn’t got any proper tutorial which can explain step by step approach of compiling ffmpeg for android on a windows OS. Lots of people suggested to drop windows and compile it on a Ubuntu machine. And I got many tutorial on how to compile on a Linux based machine using android NDK. Is there any tutorial or blog post which can explain how to do it on a windows machine. Or anybody know how to do the same in a windows machine.