Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (112)

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

  • ffmpeg on android : playing MPEG2 TS udp multicast stream

    27 août 2013, par user1513822

    I want to make android media player using ffmpeg.
    (catch MPEG2 TS multicast stream via WIFI network and decode it)
    I checked followings :

    • My iptime AP supports WIFI multicast protocol.
      (send multicast stream in wired PC, and wifi connected PC can receive it)
    • My Android phone can receive multicast stream via WIFI.
      I coded NDK socket programming which is join udp multicast group and receive packets
      (I added multicast access grant to AndroidManifest.xml)
    • FFMPEG library is ported to android and it can play local media file.

    But when I try to open network stream using FFMPEG library, avformat_open_input() function returns fail.

    gFormatCtx = avformat_alloc_context();
    av_register_all();
    avcodec_register_all();
    avformat_network_init();
    if(avformat_open_input(&gFormatCtx,"udp://@239.100.100.100:4000",NULL,NULL) != 0)
       return -2;

    this code always return "-2".
    If I use "av_dict_set()" api, which option should I use ?

    av_dict_set(&options, "udp_multicast", "mpegtsraw", 0);

    please let me know what should I check for avformat_open_input error ?

    thanks.

  • lavfi/mp : remove mp=phase

    3 septembre 2013, par Paul B Mahol
    lavfi/mp : remove mp=phase
    

    The filter was ported to a native libavfilter filter.

    Signed-off-by : Paul B Mahol <onemda@gmail.com>

    • [DH] doc/filters.texi
    • [DH] libavfilter/Makefile
    • [DH] libavfilter/libmpcodecs/vf_phase.c
    • [DH] libavfilter/version.h
    • [DH] libavfilter/vf_mp.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 !