Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (108)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (12429)

  • Revision 3382 : Amélioration des forums On enlève les numéros des rubriques dans la ...

    5 mai 2010, par kent1 — Log

    Amélioration des forums On enlève les numéros des rubriques dans la navigation

  • Revision 3385 : On suit le commit 3384 en fonction de la conf on affiche ou pas les ...

    5 mai 2010, par kent1 — Log

    On suit le commit 3384 en fonction de la conf on affiche ou pas les téléchargements des documents

  • Compile ffmpeg with librtmp

    22 avril 2013, par HighFlyingFantasy

    When compiling ffmpeg for OSX, I can simply use the :

    ./configure --enable-librtmp --enable-gpl

    command and get a build that can I/O with an rtmp stream.

    If I attempt to compile for iOS using :

    ./configure \
    --disable-ffmpeg \
    --disable-ffplay \
    --disable-ffprobe \
    --disable-ffserver \
    --disable-mmx \
    --enable-gpl \
    --enable-shared \
    --enable-librtmp \
    --enable-avresample \
    --enable-cross-compile \
    --enable-pic \
    --sysroot="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs /iPhoneOS6.1.sdk" \
    --target-os=darwin \
    --cc="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/llvm-gcc-4.2" \
    --extra-cflags="-arch armv7s -mfpu=neon -miphoneos-version-min=6.1" \
    --extra-ldflags="-arch armv7s -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.1.sdk -miphoneos-version-min=6.1" \
    --arch=arm \
    --cpu=cortex-a9 \
    --prefix=compiled/armv7s

    it errors out saying ERROR: librtmp cannot be found. Specifically :

       /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/llvm-gcc-4.2 -arch armv7s -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.1.sdk -miphoneos-version-min=6.1 --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.1.sdk -Wl,-dynamic,-search_paths_first -I/usr/local/include -L/usr/local/lib -o /var/folders/4m/8hcrycqx777_ksz6d32nrn_m0000gp/T//ffconf.b2zp97z8 /var/folders/4m/8hcrycqx777_ksz6d32nrn_m0000gp/T//ffconf.VhdlpSe1.o -lrtmp -lz -lssl -lcrypto -lm -lbz2 -lz
    ld: warning: ld: warning: ignoring file /usr/local/lib/librtmp.dylib, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (armv7s): /usr/local/lib/librtmp.dylibignoring file /usr/local/lib/libz.a, file was built for archive which is not the architecture being linked (armv7s): /usr/local/lib/libz.a

    Undefined symbols for architecture armv7s:
     "_RTMP_Socket", referenced from:
         _check_RTMP_Socket in ffconf.VhdlpSe1.o
        (maybe you meant: _check_RTMP_Socket)
    ld: symbol(s) not found for architecture armv7s
    collect2: ld returned 1 exit status
    ERROR: librtmp not found

    I have already compiled openssl for ios using ios-openssl found on github and librtmp through rtmpdump