Recherche avancée

Médias (0)

Mot : - Tags -/signalement

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (63)

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

  • 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

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

  • How to convert video from mov to mp4 video format through FFMPEG integration in android [closed]

    28 septembre 2012, par Sanat Pandey

    I have a problem that I received a video file from the server which can not be played throgh video view from the app I am making. I don't know what the actaul problem is because all videos are played through same video view but the video received from the server side is not played. So, I think that I have to integrate FFMPEG in our android app, so I can play every video at a runtime conversion. For this I have read much more about FFMPEG Library integration with android through many sites as :

    http://www.roman10.net/how-to-build-android-applications-based-on-ffmpeg-by-an-example/
    Downloaded some projects from GitHUb (https://github.com/appunite/AndroidFFmpeg) but unable to succeed for building the Library through NDK. Some thing I missed and I am working on Windows machine, probably this might be a problem. I want the exact solution regarding this, means step by step solution for building the android project with FFMPEG Library. If you have some useful suggestion then please share with me.

    Thanks in advance.

  • Render video till video duration with filters

    30 juin 2021, par Konduri Sai Aditya

    In the below example, I need to render video with video time duration(i.e mp4)But this causes video execution to an infinite loop.

    


    ffmpeg -i v.mp4 -stream_loop -1  -i w.webm   -vcodec libvpx-vp9 -filter_complex overlay  -y output.mp4


    


    It should also work with vice versa

    


     ffmpeg  -stream_loop -1  -i w.webm   -vcodec libvpx-vp9 -i v.mp4 -filter_complex overlay  -y output.mp4


    


    For the above command, the output video should be rendered till mp4 time duration.

    


    Please help me.

    


  • How to loop and combine video and audio streams of random length into one video file with ffmpeg ?

    8 janvier 2019, par Arkadiy Bolotov

    I have a video file (let’s say 5-10 seconds) and a audio file (5-300 seconds). I would like to loop and merge them into a resulting video of known length (let’s say 50-60 seconds). How would I do that in ffmpeg ?