Recherche avancée

Médias (91)

Autres articles (104)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

Sur d’autres sites (10780)

  • how to redirect adb screenrecord output to pc(windows/linux) storage

    30 novembre 2018, par asullaherc

    In linux, I use following code to cast android screen to pc, it work well

    adb shell "screenrecord --time-limit 1 --output-format=h264 -; screenrecord --time-limit 180 --output-format=h264 -" | ffplay -

    so I think exist way to redirect screenrecord output to pc storage, so I try following code

    adb shell "screenrecord --time-limit 1 --output-format=h264 -; screenrecord --time-limit 180 --output-format=h264 -" >> /tmp/t.mp4

    but the output video file cannot be opened by vlc and google-chrome, how to fix it ?

    ffplay is belongs ffmpeg, so I guess exist similar cli in ffmpeg to output input video streaming into video file

  • jpeg2000dec : Use correct printf length modifier for pointer differences

    13 mai 2013, par Diego Biurrun
    jpeg2000dec : Use correct printf length modifier for pointer differences
    

    Also eliminate an unnecessary cast. Fixes the following warning :
    jpeg2000dec.c:1200:20 : warning : format ‘%lX’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘long long unsigned int’

    • [DBH] libavcodec/jpeg2000dec.c
  • avformat/tls_openssl : fix warnings when openssl is lower version

    15 juin, par Jack Lau
    avformat/tls_openssl : fix warnings when openssl is lower version
    

    api doc : https://docs.openssl.org/1.0.2/man3/BIO_s_mem

    In higher versions (openssl 1.0.2 and higher),
    the function signature is BIO *BIO_new_mem_buf(const void *buf, int len),
    so passing a const string doesn't cause an warnings.
    However, in lower versions of OpenSSL,
    the function signature becomes BIO *BIO_new_mem_buf(void *buf, int len),
    which leads to warnings.

    OpenSSL guarantees that it will not modify the string,
    so it's safe to cast the pem_str to (void *) to avoid this warning.

    Signed-off-by : Jack Lau <jacklau1222@qq.com>
    Signed-off-by : Zhao Zhili <zhilizhao@tencent.com>

    • [DH] libavformat/tls_openssl.c