Recherche avancée

Médias (91)

Autres articles (52)

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (7816)

  • FFmpeg video to still images and back to video lossless

    28 novembre 2012, par Rigoni

    I'm trying to extract an image from an uncompressed AVI video using FFmpeg with the command :

    ffmpeg -i sorce.avi -f image2 -pix_fmt bgr24 images/%1d.bmp

    All is okay, but now I need to convert these images back to a video file.
    I'm trying using this command :

    ffmpeg -f image2 -r 24 -i marked/%1d.bmp -y -vcodec ffv1 -pix_fmt bgr24 test.avi

    But the output video is compressed and poor quality.

    Is there any way to extract the images in RGB format and than back to a lossless video ?

    I also tryed to use -vcodec rawvideo, but the quality still bad.

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