
Recherche avancée
Autres articles (55)
-
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 (...) -
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 (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (5882)
-
Ffmpeg mixing audio only for n number of videos using offset with an altered duration
26 août 2022, par TurgutI want to mix audio stream of n amount of video files with ffmpeg, with certain parameters such as :


- 

- Duration : I want to specify how long each audio is going to play for each output. For example if I specify
ffmpeg -i -d:5 first.mp4 -i second.mp4
it should play the audio fromfirst.mp4
for 5 seconds (I don't know if-d:5
is a real tag it's just an example I've made ). - Starting point : I want to specify when a given file is going start on the output, I probably need to use
-itsoffset 5
but I don't know if it's the right one in terms of interacting with other commands, in on itself it works fine. For example :ffmpeg -i -isoffset 5 first.mp -i second.mp4
causes thesecond.mp4
to start immediately, and first.mp4 to start after 5 seconds. - Segmentation : This is the tricky one, I want to specify at which point the input's audio should start. It's like the
-ss
flag but the problem is it's not working together with-itsoffset
. For example when I sayffmpeg -i -ss 5 first.mp4 -i second.mp4
both files should start immediately on the output, butfirst.mp4
should start on it's 5 seconds. So the 5th second offirst.mp4
is heard at the 1st second of the output.








This is what I'm trying to achieve, my problem is that I don't know how to implement 'duration' and
-ss
is not working together with-itsoffset
.

At the end I should have something similar to this :


ffmpeg -y -d 5 -itsoffset 3.5 -i first.mp4 -d 10 -ss 10 -itsoffset 5.3 -i 3 -vn -copyts -async 1 -filter_complex amix=inputs=2 out.mp



Which should result in an audio that sounds like this : The first 3.5 seconds are empty, no audio is heard. Then
first.mp4
is heard from it's beginning for 5 seconds. When the outputs timestamp reaches 5.3, the 10th seconds ofsecond.mp4
is heard (whilefirst.mp4
is still playing, it's supposed to play until 8.5, so I should hear both files at the same time.) for 10 seconds.

I can't find an example of this and some sources are out-of date.


- Duration : I want to specify how long each audio is going to play for each output. For example if I specify
-
Ffmpeg mixing audio only for n number of videos using offset and altered duraion
26 août 2022, par TurgutI want to mix audio stream of n amount of video files with ffmpeg, with certain parameters such as :


- 

- Duration : I want to specify how long each audio is going to play for each output. For example if I specify
ffmpeg -i -d:5 first.mp4 -i second.mp4
it should play the audio fromfirst.mp4
for 5 seconds (I don't know if-d:5
is a real tag it's just an example I've made ). - Starting point : I want to specify when a given file is going start on the output, I probably need to use
-itsoffset 5
but I don't know if it's the right one in terms of interacting with other commands, in on itself it works fine. For example :ffmpeg -i -isoffset 5 first.mp -i second.mp4
causes thesecond.mp4
to start immediately, and first.mp4 to start after 5 seconds. - Segmentation : This is the tricky one, I want to specify at which point the input's audio should start. It's like the
-ss
flag but the problem is it's not working together with-itsoffset
. For example when I sayffmpeg -i -ss 5 first.mp4 -i second.mp4
both files should start immediately on the output, butfirst.mp4
should start on it's 5 seconds. So the 5th second offirst.mp4
is heard at the 1st second of the output.








This is what I'm trying to achieve, my problem is that I don't know how to implement 'duration' and
-ss
is not working together with-itsoffset
.

At the end I should have something similar to this :


ffmpeg -y -d 5 -itsoffset 3.5 -i first.mp4 -d 10 -ss 10 -itsoffset 5.3 -i 3 -vn -copyts -async 1 -filter_complex amix=inputs=2 out.mp



Which should result in an audio that sounds like this : The first 3.5 seconds are empty, no audio is heard. Then
first.mp4
is heard from it's beginning for 5 seconds. When the outputs timestamp reaches 5.3, the 10th seconds ofsecond.mp4
is heard (whilefirst.mp4
is still playing, it's supposed to play until 8.5, so I should hear both files at the same time.) for 10 seconds.

I can't find an example of this and some sources are out-of date.


- Duration : I want to specify how long each audio is going to play for each output. For example if I specify
-
doc/APIchanges : mention correct version number
8 septembre 2024, par Niklas Haas