Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (76)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

  • 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 ;

Sur d’autres sites (6538)

  • Creating standalone tool-chain for android NDK

    13 avril 2014, par vijay

    I am trying to build latest FFmpeg along with halfninja's code for android since some of the options are not available in older versions.I updated FFmpeg packages and tried to run ./create_toolchain.sh.

    I am getting the following error :

    user@user:~/Android/android-ffmpeg-x264/Project/jni$ ./create_toolchain.sh
       ~/Android/android-ffmpeg-x264/Project/jni ~/Android/android-ffmpeg-x264/Project/jni
       /home/user/android/tools:/home/user/android/platform-tools:/usr/lib/lightdm/lightdm:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/home/user/android/tools:/home/user/android/platform-tools:/home/user/Android/android-ndk-r8e:/home/user/Android/android-ffmpeg-x264/Project/jni/toolchain/bin
       Host system 'linux-x86' is not supported by the source NDK!
       Try --system=<name> with one of:  linux-x86_64
    </name>

    My android NDK version is android-ndk-r8e.
    I am facing problems in building latest version of FFmpeg by creating standalone toolchain.

    Any help is appreciated.

  • Revision 17072 : bug de largeur sur sur une image en mode image

    2 février 2011, par cedric -
  • Why Opencv image comparisson doesn't work ?

    6 mai 2018, par yash17

    We are using the following method for image comparison.

    1.Image is captured using ffmpeg,of udp streaming on vlc.

    2.A portion of an image is cropped,using y:y+h::x:x+w co-ordinates of the image.

    3.The cropped image is compared with a reference image using opencv2

    Previously we used to get image comparison results perfectly for these method and code,whereas from last couple of executions,the same code is not giving us proper results on extraction.It gives us same image result for even different images.

    from PIL import Image
    import cv2
    import os
    import sys
    import numpy as np
    import time
    import subprocess
    from Keycode import send
    p = subprocess.Popen("ffmpeg -y -i udp://@xxx.xx.xx.xx:xxxx -vframes 1     -q:v 1 sign.png",shell=True)
    output = p.communicate()[0]

    image1=cv2.imread('sign.png')
    crop1= image1[451:491, 496:531]
    i1 = cv2.imwrite('crop1.png',crop1)
    i2 =cv2.imread('sign_ref.png')
    difference = cv2.subtract(i1, i2)
    result = not np.any(difference)