Recherche avancée

Médias (91)

Autres articles (26)

  • 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

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (3621)

  • how to cut audio file and merge with video file in android ?

    23 octobre 2017, par Mayank Sugandhi

    I want to cut audio and merge an audio file with video programmatically in android.

    I don’t know how to work with FFMPEG , can anyone tell me how to start with or another solution ?

    Any Help ?

  • Combining a movie file with a text file

    12 décembre 2012, par Hugo

    Current Status : I have a movie I recorded on a microscopy and a .txt file with two columns : time and temperature. This file is synchronous with the video.
    I would like to 'edit' the video so there is a text box with the temperature that would update as the movie plays.

    My approach, for the moment, is to use ffmpeg. I managed to draw some text and it seems all is working as intended.

    The problem is : I can't find any reference on how to update that text dynamically. I am using some Python to read the file and launch ffmpeg with subprocess.

    I would like to ask if anyone knows some workaround for this. Maybe some other approach.

  • mmpeg changing the bitrate and file size of resulting file

    17 août 2019, par Paco Abato

    I’m using ffmpeg within a Python script (using mmpeg-python) in order to change metadata values but the bitrates and file size are also changed in the resulting video (bitrates are ’Velocidad de datos’ and ’Velocidad de bits’, sorry for non-english GUI) :

    enter image description here

    The command I use is the following (removed the metadata part because the result is the same : the bitrate and the file size being changed) :

    import ffmpeg

    ifile = 'borrar.mp4'
    ofile = 'res.mp4'
    ffmpeg.input(ifile).output(ofile).run()

    How to preserve bitrates and so an aproximate file size.

    Thanks in advance.