Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (70)

  • Qualité du média après traitement

    21 juin 2013, par

    Le bon réglage du logiciel qui traite les média est important pour un équilibre entre les partis ( bande passante de l’hébergeur, qualité du média pour le rédacteur et le visiteur, accessibilité pour le visiteur ). Comment régler la qualité de son média ?
    Plus la qualité du média est importante, plus la bande passante sera utilisée. Le visiteur avec une connexion internet à petit débit devra attendre plus longtemps. Inversement plus, la qualité du média est pauvre et donc le média devient dégradé voire (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • MediaSPIP : Modification des droits de création d’objets et de publication définitive

    11 novembre 2010, par

    Par défaut, MediaSPIP permet de créer 5 types d’objets.
    Toujours par défaut les droits de création et de publication définitive de ces objets sont réservés aux administrateurs, mais ils sont bien entendu configurables par les webmestres.
    Ces droits sont ainsi bloqués pour plusieurs raisons : parce que le fait d’autoriser à publier doit être la volonté du webmestre pas de l’ensemble de la plateforme et donc ne pas être un choix par défaut ; parce qu’avoir un compte peut servir à autre choses également, (...)

Sur d’autres sites (9373)

  • Opening Video with opencv3 and python on Amazon EC2

    11 octobre 2016, par stml

    I successfully set up python and opencv3 on an t2.micro instance by following these instructions : http://stackoverflow.com/a/38867965/1213715

    The script which worked on my local machine no longer works. The problem seems to be with importing video. The start of my code now looks like this :

    import numpy as np
    import cv2

    cap = cv2.VideoCapture('/home/ec2-user/test.mov')

    if(cap.isOpened() == False):
       print "Can't open video"
       exit()

    This exits every time. I have tried different paths and different video formats (including .avi).

    In other threads, I read that ffmpeg is essential to cv2 video functions, and successfully installed this using the instructions at https://forums.aws.amazon.com/thread.jspa?messageID=524523. I can now run ffmpeg from the command line - but it has not changed the cv2 output.

    Do I need to link ffmpeg to cv2 somehow, or do I need to recompile entirely - and if so, what change should I make to the original installation instructions ?

    Python version 2.7.12

    Opencv version 3.1.0

  • Merge commit ’e47b8bbf0b54599d44b9330eb4d68cdde4f6d298’

    26 juin 2016, par Hendrik Leppkes
    Merge commit ’e47b8bbf0b54599d44b9330eb4d68cdde4f6d298’
    

    * commit ’e47b8bbf0b54599d44b9330eb4d68cdde4f6d298’ :
    avcodec : Bump micro version after changing public JPEG 2000 defines

    Merged-by : Hendrik Leppkes <h.leppkes@gmail.com>

    • [DH] doc/APIchanges
    • [DH] libavcodec/version.h
  • Android, AOSP tree, external project (ffmpeg) is built for AMD64

    22 avril 2015, par kagali-san

    I’m trying to build ffmpeg4android on current AOSP tree (from /external), which is lunch-configured to aosp_arm-eng and set to PLATFORM_VERSION=4.2.

    Resulting files are generated for AMD64 (host native) architecture, even though the major rest of tree is built (as expected) ARM :

    readelf -a android/aosp_arm-eng/ffplay|egrep "Class :|Machine :"
    Class : ELF64 Machine :
    Advanced Micro Devices X86-64

    versus

    readelf -a
    aosp/out/target/product/generic/symbols/system/lib/libril.so | egrep "Class :|Machine :"

    Class : ELF32
    Machine : ARM


    I will probably switch to other ways of getting ffmpeg-arm (presumably the one described here) ; the reason of asking this question is to understand, at which build stage does cross-compilation environment breaks.