
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (84)
-
Menus personnalisés
14 novembre 2010, parMediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
Menus créés à l’initialisation du site
Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...) -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 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 (...)
Sur d’autres sites (11317)
-
How to batch convert .ogg files to .wav using a command line utility ? [duplicate]
20 mars 2023, par yevtI have a bunch of files :



dir/file1.ogg
dir/file2.ogg
...




How could I convert them to .wav files



dir/wav/file1.wav
dir/wav/file2.wav
...




by using a console command ? Now I'm using OSX, but I need the answer for Windows as well.


-
There are audio gaps when I join multiple .ts files into a single .mp4 file
2 juin 2020, par woopwoop399After I merge multiple .ts files into a single .mp4 file, when I play this file, I hear short gaps in audio. The gap happens always at same places, but has only about 50% chance of happening, it feels like video player doesn't manage to decode something in time. This gap happens when I play the file with mpc-hc videoplayer, but doesn't happen with vlc player. I'd switch, but mpc-hc worked flawlessly for every file I opened so far for years, so I think the .mp4 file is somehow malformed.



I used this command
ffmpeg -f concat -safe 0 -i mylist.txt -c copy sm22413936-ts.mp4
, all necessary files are here https://files.catbox.moe/9cl0pm.zip


I asked about this here previously https://superuser.com/questions/1520894/there-are-audio-gaps-when-i-join-multiple-ts-files-into-a-single-mp4-file , but first solution required reencoding, and my solution caused desync really noticeable on long videos.



I suspect that this .mp4 is muxed wrong or something, maybe I need to remux it somehow.


-
Adjust volume of both input audio files while concat using ffmpeg
1er avril 2020, par Mozhgan JavadzadehI am using the following command to concatenate(append second wav to end of first wav) two audio files (input can be any audio : mp3,wav etc) into one output.mp3 , and it works fine :



ffmpeg -y -i first.wav -i second.wav -filter_complex "[0:0][1:0]concat=n=2:v=0:a=1[out]" -map "[out]" output.mp3




but how can adjust volume for each of input audios separately so my output.mp3 will have two audio files with different volume that i set ? for example i want my output contains volume 0.5 for first audio and volume 1 for second audio.be aware that i don't want mix two audio files , Just concatenate two audio files into output with different volume.