
Recherche avancée
Médias (91)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
avec chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
sans chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
config chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (9)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Contribute to documentation
13 avril 2011Documentation 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 (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (2180)
-
Changing volume halfway through video using FFmpeg ?
10 avril 2019, par EssemI’m trying to use the
fluent-ffmpeg
NPM module in an application to decrease the volume of the audio in the first half of a video, then increase the volume when it reaches the midway point. I’ve wrote this code to try to do that :const ffmpeg = require("fluent-ffmpeg");
ffmpeg("test.mp4")
.audioFilters("volume=enable='between(t,0,t/2)':volume='0.25'", "volume=enable='between(t,t/2,t)':volume='1'")
.save("output.mp4");However, whenever I run this code, the volume levels of
output.mp4
are exactly the same astest.mp4
. What do I do ? -
Is it possible to change volume with no reencode with ffmpeg ?
30 juin 2023, par John SmithI just had this question because I used the following command with ffmpeg :



ffmpeg -i input.wav -filter:a "volume=0.2" output.wav




Following the documentation here : https://trac.ffmpeg.org/wiki/AudioVolume



However, when I created the new file, the output was half the size of the input and the bitrate of the audio track was reduced as well.



So my questions are :



- 

- Is the bitrate supposed to decrease with decreasing and increasing volume like so ?
- Is it possible to change volume without reencoding with ffmpeg ?






-
Why do the results of my "ffmpeg -ss -to" split have audio but no video ?
10 avril 2018, par BenKnghtI am trying to split clips into short intervals (that I am reading in from a csv) using ffmpeg. The commands that I’m using look like this :
ffmpeg -i filename.mp4 -ss 00:00:00.030000 -to 00:00:02.030000
-pix_fmt yuv420p -c copy new_filename.mp4This successfully splits the parent mp4 into many smaller mp4s, but the smaller files lose some or all of their video. Most of them end up being just audio. Some have video - but only for about half of the clip (the rest is black). The audio is always there. Any ideas why this might be happening ?
A couple notes : I’m using ffmpeg 3.0.2. Also, I am creating this command as a Python list and running it with the following call
subprocess.run(cmd, stderr=subprocess.STDOUT)