Recherche avancée

Médias (3)

Mot : - Tags -/pdf

Autres articles (93)

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

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (8123)

  • How do I merge Multiple mp4 video only files with corresponding audio only mp4 files using ffmpeg ? [migrated]

    13 mai 2023, par ccc1302s

    OK, this is my first time asking a question here. It seems that every time I try to find a good linux command it leads me here. So here goes.

    


    Oh and by the way, I'm very much a novice on scripting.

    


    I have a bunch of video and audio only mp4 files and would like to script the merging of both files but here's the thing, there are multiple video and audio files which are separately indicated by either (Video) or (Audio) in the file names.

    


    This is how I've been doing it manually :

    


    ffmpeg -i "Videofile (Video).mp4" -i "Audiofile (Audio).mp4" -preset fast -crf 1 "Output file Name.mp4"


    


    Hope this makes sense.

    


    Thanks

    


  • how to merge two mp4 files (audio & video) with ffmpeg using script ? [closed]

    18 mai 2024, par mayor

    I need a script (in win 10) that will do the following thing :

    


      

    1. Retrieve the name of the directory it is in.
    2. 


    3. In this directory are placed two mp4 files - video and audio separately. The files have different names.
    4. 


    5. Script will merge them using ffmpeg into one mkv (ffmpeg -i ... - i ... -c copy “the name of the directory in which the script and files.mkv”)
    6. 


    7. end
    8. 


    


    The idea is that I put myself this script in some directory, run it and have the job done without typing the command manually.

    


    Thank you.

    


  • Is using QtFFmpegWrapper+QLabel+QTimer a good way to play video in a Qt application ?

    21 décembre 2012, par Vi.

    I'm looking how to portably play video on Qt, but not Phonon.

    Using ffmpeg seems to be a good idea (it should work the same way on all platforms).

    Currently It uses QLabel for video output and does QPixmap::fromImage for each frame ; frames which are decoded and buffered by QtFFmpegWrapper in a background thread. QTimer decides when to show the next frame.

    The whole thing looks a bit hacky (Video ? In a label ?). Am I doing it right ? Is there a better portable way of playing ffmpeg-decoded video in a Qt application ?