Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (91)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

  • avcodec/vc1 : fix B predictor validity for 4-MV MBs

    14 janvier 2019, par Jerome Borsboom
    avcodec/vc1 : fix B predictor validity for 4-MV MBs
    

    The B predictor for 4-MV MBs in interlace field pictures is not used
    for blocks 0 and 2 when the picture is 1 MB wide.

    Signed-off-by : Jerome Borsboom <jerome.borsboom@carpalis.nl>

    • [DH] libavcodec/vc1_pred.c
  • fftools/thread_queue : count receive-finished streams as finished

    18 octobre 2023, par Anton Khirnov
    fftools/thread_queue : count receive-finished streams as finished
    

    This ensures that tq_receive() will always return EOF after all streams
    were receive-finished, even though the sending side might not have
    closed them yet. This may allow the receiver to avoid manually tracking
    which streams it has already closed.

    • [DH] fftools/thread_queue.c
  • Supporting all video formats in android

    4 novembre 2014, par Amanni

    I am building an app which allows users to upload videos from different devices including android and iOS then stream them from server with VideoView during playback. I end up with different video formats and get the inevitable "Cannot play this video" error on several occasions.

    Some research says that videos with format .mp4 and codec H.264 can work on all devices, so I have a few things I am working on.

    1. Convert all videos on server side to the above mentioned format and codec
    2. Use ffmpeg to convert the videos in app during playback
    3. Use VLC sdk which supports a wide range of video formats

    I am not sure which if these is the best solution, I have not worked with videos a lot in the past on Android and I am not sure what the pros and cons maybe or if indeed these are viable solutions or if this problem already has a known solution.