
Recherche avancée
Autres articles (43)
-
Publier sur MédiaSpip
13 juin 2013Puis-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 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 (...) -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (4726)
-
Revision f8630c78d1 : configure : remove php test + the remnants in the build system & README the doc
10 mai 2014, par James ZernChanged Paths :
Modify /README
Modify /configure
Modify /docs.mk
configure : remove php test+ the remnants in the build system & README
the documentation that required php was removed in :
50fa585 Removing examples code generation and making them static.Change-Id : Ibf00dca9ab2715fc21e8de358807b63d1445662c
-
doc/infra : Document trac backup system
19 novembre 2024, par Michael Niedermayer -
How to merge 1 video and 8 channel audio with 5.1+ 2.0 mapping
5 mai 2022, par jiiiinI want to convert a mov video with 8 channels of audio into 25 frames video.
I have a command that outputs one 25fps video and eight wav audio.


ffmpeg -r 25 -i "%~1" \
 -c:v prores_ks -profile:v 1 -an -map 0:v:0 25.mov \
 -filter:a atempo=1.0427 -ar 48k -c:a pcm_s24le -map 0:a:0 out1.wav \
 -filter:a atempo=1.0427 -ar 48k -c:a pcm_s24le -map 0:a:1 out2.wav \
 -filter:a atempo=1.0427 -ar 48k -c:a pcm_s24le -map 0:a:2 out3.wav \
 -filter:a atempo=1.0427 -ar 48k -c:a pcm_s24le -map 0:a:3 out4.wav \
 -filter:a atempo=1.0427 -ar 48k -c:a pcm_s24le -map 0:a:4 out5.wav \
 -filter:a atempo=1.0427 -ar 48k -c:a pcm_s24le -map 0:a:5 out6.wav \
 -filter:a atempo=1.0427 -ar 48k -c:a pcm_s24le -map 0:a:6 out7.wav \
 -filter:a atempo=1.0427 -ar 48k -c:a pcm_s24le -map 0:a:7 out8.wav



I want to merge the results(1 mov video + 8 wav audio). but I can't find an answer.
I want to merge these into .mov videos on 8 channels(5.1 / L R C LFE LS RS + 2.0 L R stereo) audio channels.