Recherche avancée

Médias (91)

Autres articles (65)

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

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (10652)

  • Building FFMPEG with librtmp for android

    30 juillet 2013, par Andrew

    I'm trying to build all-in-one static binary of FFMPEG with NDK r7b and everything works fine untill i try to build it with RTMP support.

    I'm usind sources from https://github.com/guardianproject/android-ffmpeg with librtmp2.4 and custom config like this

    .configure \
    --target-os=linux \
    --cross-prefix=arm-linux-androideabi- \
    --arch=arm \
    --sysroot=/home/andrey/android-ndk-r7b/platforms/android-3/arch-arm \
    --enable-static \
    --disable-shared \
    --disable-symver \
    --enable-small \
    --disable-devices \
    --disable-avdevice \
    --enable-gpl \
    --enable-librtmp \
    --prefix=../build/ffmpeg/armeabi \
    --extra-cflags=-I../rtmpdump/librtmp \
    --extra-ldflags=-L../rtmpdump/librtmp \

    and rtmpdump directory lays on the same level as ffmpeg.
    As i understand last two strings in my config says where compiler may find sources of librtmp.
    But all i get is ERROR: librtmp not found

    I'm not expereienced with NDK and obviosly i missing some important part but i can't find it by myself.

  • MPEG-TS, Android and FFMPEG

    31 janvier 2013, par STeN

    I am receiving the MPEG-TS (MPEG transport stream) packets with the multiplexed H.264 video and AAC audio streams. I need to be able to show the audio and video on the Android phone. My assumption is that I need :

    • MPEG-TS de-multiplexer
    • AAC decoder
    • H.264 decoder
    • Synchronize the audio and video playback

    Assuming that I am right then (in Android 2.x) MPEG-TS de-multiplexer is not part of the OS and must be ported, both AAC and H.264 decoder are part of the Android OS, but I am not sure if they have interface, which allows passing the data in buffers and if they allow mutual timing synchronization. In the worst case those components must be ported here as well.

    Can you give me some advices where to start ? I was thinking about the FFMPEG porting. Are there any other ways ?

    Regards,
    STeN

  • how to use ffmpeg on android

    25 avril 2016, par Alex Seen

    I want to create video file from Jpeg and audio file.
    I’ve compiled FFMpeg to android and I’ve got libffmpeg.so, and obj folder with ithers resources.

    But how to use it ?
    What I need to do for use command like : "ffmpeg -i image.jpeg -i audio.mp3 out.avi"
    Please help.