Recherche avancée

Médias (91)

Autres articles (49)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • L’utiliser, en parler, le critiquer

    10 avril 2011

    La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
    Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
    Une liste de discussion est disponible pour tout échange entre utilisateurs.

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

  • Create a video file of multiple images [closed]

    2 juillet 2012, par idish

    I am trying to create a video in android that displays the chosen images by me. one by another. I've heard of ffmpeg and Dolphin player open source code. I'd like to know the cons and pros of them. Is ffmpeg is easy to work with ? and what about the Dolphin player ?
    Another thing I undestand is that ffmpeg is programmed by command line ?
    Anyway, I would like to hear some reviews about ffmpeg or the Dolphin Player.
    Is it possible to embed the ffmpeg to my mono for android application ?

    Thank you.

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

  • How to overlay one video on another and then if one video finishes then fullscreen the other video [FFMPEG]

    2 février 2020, par siddhesh amrale

    ffmpeg -i s2.mp4 -vf "movie=s1small.mp4 [inner];[in][inner] overlay=100:100 [out]" merge.mp4

    s1 dimension : 420x320

    s2 dimension : 1280x720

    I want the other video to fullscreen if one video ends.