Recherche avancée

Médias (0)

Mot : - Tags -/interaction

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (43)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-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 2011

    Documentation 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, par

    Unlike 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 Zern

    Changed 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
    doc/infra : Document trac backup system
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] doc/infra.txt
  • How to merge 1 video and 8 channel audio with 5.1+ 2.0 mapping

    5 mai 2022, par jiiiin

    I want to convert a mov video with 8 channels of audio into 25 frames video.&#xA;I have a command that outputs one 25fps video and eight wav audio.

    &#xA;

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

    &#xA;

    I want to merge the results(1 mov video + 8 wav audio). but I can't find an answer.&#xA;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.

    &#xA;