Recherche avancée

Médias (91)

Autres articles (11)

  • 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 (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Les thèmes de MediaSpip

    4 juin 2013

    3 thèmes sont proposés à l’origine par MédiaSPIP. L’utilisateur MédiaSPIP peut rajouter des thèmes selon ses besoins.
    Thèmes MediaSPIP
    3 thèmes ont été développés au départ pour MediaSPIP : * SPIPeo : thème par défaut de MédiaSPIP. Il met en avant la présentation du site et les documents média les plus récents ( le type de tri peut être modifié - titre, popularité, date) . * Arscenic : il s’agit du thème utilisé sur le site officiel du projet, constitué notamment d’un bandeau rouge en début de page. La structure (...)

Sur d’autres sites (3762)

  • Ducking music using FFmpeg

    24 février, par angel_30

    I want to duck a music audio with a speech audio using FFmpeg (ducking is commonly used to lower background music anytime a person speaks, then raises it when that person finishes speaking). How can I do it with FFmpeg or any other tools (if any) ?

    


    There was an FFmpeg filter called sidechaincompress which merges the two, but it doesn't "duck" them. It takes 2 audio inputs, 1st input to be compressed depending on the signal of 2nd input and later compressed signal to be merged with 2nd input :

    


    ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"


    


  • Flutter : Saved Audio Not Accessible in Music Player Apps

    17 juillet 2024, par Husen

    I'm developing a Flutter app that generates MP3 audio files.
I can successfully save these files to the device storage. However, they're not showing up in any music player apps.
I'm using the path_provider package to get a suitable directory for saving the audio files.

    


    How can I make the saved MP3 files discoverable by music player apps ?

    


  • How to i add a background music to a video in React Native ?

    23 août 2023, par James

    How do I add background music to a video in React Native ? using ffmpeg-kit ? https://github.com/arthenica/ffmpeg-kit/tree/main/react-native

    


    I have a video in my project root folder, But the audio I want to add is a remote URL stored in the cloud music link is https://storage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4

    


    Can anyone give me a basic example to do this in React Native ?