Recherche avancée

Médias (1)

Mot : - Tags -/publishing

Autres articles (94)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • 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

Sur d’autres sites (15256)

  • Revision 87422 : l’option popup ne fonctionnait pas, il manquait les options window.open

    12 février 2015, par pierre.troller@… — Log

    l’option popup ne fonctionnait pas, il manquait les options window.open

  • 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
  • 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(&amp;fmt_ctx, f_name, input_fmt, NULL)) &lt; 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 !