Recherche avancée

Médias (91)

Autres articles (62)

  • 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

  • Emballe Médias : Mettre en ligne simplement des documents

    29 octobre 2010, par

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

  • Prérequis à l’installation

    31 janvier 2010, par

    Préambule
    Cet article n’a pas pour but de détailler les installations de ces logiciels mais plutôt de donner des informations sur leur configuration spécifique.
    Avant toute chose SPIPMotion tout comme MediaSPIP est fait pour tourner sur des distributions Linux de type Debian ou dérivées (Ubuntu...). Les documentations de ce site se réfèrent donc à ces distributions. Il est également possible de l’utiliser sur d’autres distributions Linux mais aucune garantie de bon fonctionnement n’est possible.
    Il (...)

Sur d’autres sites (5367)

  • Nginx video streaming - ffmpeg convert to flv, but requsted is mp4

    18 juin 2012, par abrahab

    I am converting videos from different sources with ffmpeg to mp4 with libx264 codec.
    The following command (simplified) :
    ffmpeg -i 1.mp4 -y -f mp4 -vcodec libx264 -crf 28 -threads 2 -strict experimental -acodec aac -ab 56k -ar 44100 -ac 2 temp.mp4

    Then, I can not stream the output file (500 Internal Server Error) with nginx mp4-streaming solution (aka http pseudo streaming). My system administrator found, that if rename file to flv it stream well, so, seems the output file is not mp4, but flv ? Why ? How to correctly convert ? Or, please, suggest how to stream video properly ? I think that mp4 is much better then flv... therefore I choose mp4.

    In other words, the problem is to stream output file like mp4.

    ps i also need to be sure that this video will always work at ipad after convertation. thanks and sorry for my bad english.

    EDIT : I found that if convert video with the same string but without -vcodec libx264 - nginx can serve the output .mp4 file well. where may be the problem ?

  • ffmpeg - Incompatible sample format '(null)'

    17 juin 2012, par abrahab

    I convert videos from different sources with ffmpeg to mp4 with libx264 codec. After conversation time to time I got incorrect format error when trying to load already converted video with ffmpeg : Incompatible sample format '(null)' for codec 'aac', auto-selecting format 's16'

    Seems, it is audio stream problem with aac codec ? How to fix or how to convert videos to mp4 to be sure that I will not get the following error ? Maybe somehow need to specify audio format at the ffmpeg convert command ?

    ps. Video must work at Iphone/Ipad.
    pps. the main problem, that such videos with the following error can not be pseudo-streamed with nginx (got 500 Error)
    ppps. and sorry for my bad english, please, correct my text if need. thanks.

    Some additional info from file :

     Duration: 00:00:10.30, start: 0.000000, bitrate: 614 kb/s
       Stream #0.0(rus): Video: h264 (High), yuv420p, 1024x576, 567 kb/s, 23.98 fps, 23.98 tbr, 24k tbn, 47.95 tbc
       Metadata:
         creation_time   : 1970-01-01 00:00:00
       Stream #0.1(rus): Audio: aac, 22050 Hz, stereo, s16, 57 kb/s
       Metadata:
         creation_time   : 1970-01-01 00:00:00
  • 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.