Recherche avancée

Médias (91)

Autres articles (59)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

Sur d’autres sites (9863)

  • Compile FFMPEG Using Eclipse Android

    3 septembre 2013, par Ivelius

    NDK experts , I need your help...

    My goal is to easily compile ffmpeg library using android NDK and eclipse.

    What I usally do when I want to develop using NDK , is right click on android project in eclipse ->Android Tools -> Add Native support. And Everything works and compiles.
    Every time I want to build my project , I just hit "Build" button (with a hammer icon on it).

    Now I just need to add all ffmpeg libraries and run a simple program like this.
    I downloaded latest ffmpeg libraries from official website.I've extracted downloaded content into JNI library . And when I try to build , I get countless errors. Something like
    "fatal error : libavutil/avconfig.h : No such file or directory" ...

    My Android.mk file looks like this :

    LOCAL_PATH := $(call my-dir)

    include $(CLEAR_VARS)
    include $(call all-subdir-makefiles)

    LOCAL_MODULE    := HELLONDK
    LOCAL_SRC_FILES := hello-ndk.cpp

    include $(BUILD_SHARED_LIBRARY)

    EDIT :
    I've been looking for a solution for a few days before posting this question.

  • Writing video files with dynamic image watermarks on Android

    11 septembre 2014, par mrmoment

    I want to add dynamic watermarks (images, not texts) on video files on Android. For example, a user selects a video file on his phone, after processing, when the video is played, the watermarks are shown. And on different frames the watermark position and image is changing. Is it possible to realize this ?

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