Recherche avancée

Médias (91)

Autres articles (38)

  • 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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (6423)

  • How to keep compatibility when compiling ffmpeg with android ndk

    2 novembre 2015, par Fido Zhang

    I have successfully compiled ffmpeg as a static library for my project with android-platform 19 which specified in Application.xml as below :

    APP_PLATFORM := android-19

    I test my project on a device(4.4),it runs well. But it will crash on 4.0 devices.

    So I would like to changed the APP_PLATFORM to a lower version like :

    APP_PLATFORM := android-17

    But the ide comes out an error like this.

    libavcodec/ffv1enc.c:631: error: undefined reference to 'log2'

    And when I changed it to a more lower version :

    APP_PLATFORM := android-8

    More errors occured :

    libavcodec/ffv1enc.c:631: error: undefined reference to 'log2'
    libavutil/mem.c:94: error: undefined reference to 'posix_memalign'

    I know the log2 reference is undefined because of missing libm, but as far as I see Android will automatic link to libm when building.http://mobilepearls.com/labs/native-android-api/ndk/docs/STABLE-APIS.html

    So how can I keep compatibility when compiling ffmpeg in order to run my project well on lower version devices.

  • How to set fractional values for `seg_duration` when using ffmpeg's dash muxer ?

    29 décembre 2019, par agconti

    I’m trying to set a fractional value for seg_duration when using ffmepg’s dash muxer like the docs suggest. When I switch between integer decimal values, I don’t get different results. How can I set a fractional value for seg_duration ?

    • E.g. Running my command with seg_duration equal to 1 produces the same minBufferTime as using 0.01.
    • In the source, seg_duration is represented as an int64_t so I don’t see how you can pass a fraction to it.

    Here’s an example ffmpeg command to reproduce :

    ffmpeg -loglevel verbose \
    -i $INGESTION_PATH \
    -seg_duration 0.01 \
    -use_template 1 \
    -use_timeline 0 \
    -f dash $OUTPUT_PATH

    Here’s the snippet from the docs on seg_duration :

    seg_duration duration

    Set the segment length in seconds (fractional value can be set). The value is treated as average segment duration when use_template is enabled and use_timeline is disabled and as minimum segment duration for all the other use cases.

  • FFMPEG python loop filtering H264

    2 mars 2021, par Aron Latis

    Is there any way in which one can opt out the loop filtering phase when decoding a H.264 encoded video ? I have tried reading ffmpeg docs and looking for keywords such as loop or filtering, but nothing concludent came out of it so far.