Recherche avancée

Médias (3)

Mot : - Tags -/pdf

Autres articles (65)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (8499)

  • opencv opencv camera and ffmpeg open Microphone

    8 octobre 2016, par H S T

    I use opencv open camera and obtain video and push stream. Then I want add audio and push it. When I use ffmpeg function

    avformat_open_input(&ifmt_ctx, psDevName, ifmt, NULL),
    program break.

    So can I use opencv open camera and use ffmepg open Microphone ?

    I want to write anchor push streaming client and must use opencv open camera.

  • the ffmpeg library cannot open camera on android

    27 septembre 2013, par GilGaMesh

    I have successfully ported ffmpeg 2.0.1 lib to android. The code to open camera is very simple :

    AVFormatContext *fmt_ctx = NULL;
    AVInputFormat *input_fmt;

    input_fmt = av_find_input_format("video4linux2");
    if (input_fmt == NULL)
       return -1;

    char f_name[] = "/dev/video0";
    if ((ret = avformat_open_input(&fmt_ctx, f_name, input_fmt, NULL)) < 0)        // stuck here
    {
       LOG_D("can not open camera, ret = %d", ret);
       return ret;
    }

    the strange thing is the ret value is always negative with the following logcat output by av_log :

    09-26 15:27:48.901: E/Codec-FFMpeg(17716): ioctl(VIDIOC_G_PARM): Invalid argument

    I change the f_name to /dev/video1 and /dev/video2 (these files indeed exist on my tablet, and my tablet has 2 cameras) and the problems remains.
    Do i forget anything before calling avformat_open_input() ? Thank you !

  • avformat/utils : add missing brackets around arguments in av_realloc() call

    22 novembre 2016, par James Almer
    avformat/utils : add missing brackets around arguments in av_realloc() call
    

    Found-by : Neil Birkbeck <neil.birkbeck@gmail.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/utils.c