
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (47)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Selection of projects using MediaSPIP
2 mai 2011, parThe 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 (...) -
Submit enhancements and plugins
13 avril 2011If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.
Sur d’autres sites (6257)
-
how to cut audio file and merge with video file in android ?
23 octobre 2017, par Mayank SugandhiI 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 HugoCurrent 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 AbatoI’m using
ffmpeg
within a Python script (usingmmpeg-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) :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.