Recherche avancée

Médias (0)

Mot : - Tags -/alertes

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

Autres articles (98)

  • Les images

    15 mai 2013
  • 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

  • Configuration spécifique pour PHP5

    4 février 2011, par

    PHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
    Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
    Modules spécifiques
    Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)

Sur d’autres sites (8279)

  • Checking processor capabilities in android

    29 avril 2014, par StackOverflowed

    I’m using FFMPEG in an app, and I’m using the following configuration :

    --extra-cflags=' -march=armv7-a -mfloat-abi=softfp -mfpu=neon'

    I’m targeting 4.0+ so I believe armv7-a should be supported by most non Intel devices, and I’m sure the neon extension is supported in most devices as well, but I’m not sure how I can find that out for all 2000+ devices.

    Is there a way to check in Android the processor type and extensions and/or in the Google Play Store to limit the apk to devices with certain processors ?

  • avio : Add avio_read wrapper to simplify error checking

    26 mai 2015, par Vittorio Giovara
    avio : Add avio_read wrapper to simplify error checking
    

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] libavformat/avio_internal.h
    • [DBH] libavformat/aviobuf.c
  • ffmpeg-python - checking if file is video

    14 avril 2021, par Gwen J

    How do I go about identifying if the file is an actual video media file ?&#xA;While doing a probe, it returns a 'codec_type' : 'video' even for a text file.

    &#xA;

    vid_info = ffmpeg.probe(f&#x27;{filepath}/test.txt&#x27;)[&#x27;streams&#x27;];&#xA;

    &#xA;