Recherche avancée

Médias (91)

Autres articles (16)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

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

  • Merge (video and audio) with (background music) with ffmpeg

    9 mars 2021, par Sudesh

    I have video file input.mp4 that contain video and two audio source - speaking, and music.mp3 that contain background music. Now, I want to merge them.

    


    Here is the command that i use :

    


    ffmpeg -i input.mp4 -i music.mp3 -c:v copy -filter_complex "[0:a]aformat = fltp:44100:stereo,apad[0a];[1] aformat=fltp:44100:stereo,volume=1.5[1a];[0a] [1a] amerge[a]" -map 0:v -map "[a]" -ac 2 -y -shortest output.mp4


    


    input file
https://d9f35555a8b3e9044c8d-95c21efaab8093d23d4124e599a618ee.ssl.cf5.rackcdn.com/mub_audio/1e03dc67-5079-46d5-b692-d69bbb6ee3e3.mp4

    


    audio file
https://d9f35555a8b3e9044c8d-95c21efaab8093d23d4124e599a618ee.ssl.cf5.rackcdn.com/mub_audio/a6cab88a63eb11eb8d8b901b0efa6f1d.mp3

    


    you can check the output file here
https://d9f35555a8b3e9044c8d-95c21efaab8093d23d4124e599a618ee.ssl.cf5.rackcdn.com/mub_audio/6e6e79ef-a732-49d9-8317-4ba97c05a352.mp4

    


    The input file has a pause after every sentence. But in output, that pause duration doesn't have any background music.
What can be the reason ? what is the solution for it ?

    


  • avformat/pp_bnk : treat music files as stereo

    13 novembre 2020, par Zane van Iperen
    avformat/pp_bnk : treat music files as stereo
    

    These files are technically a series of planar mono tracks.
    If the "music" flag is set, merge the packets from the two
    mono tracks, essentially replicating :

    [0:a:0][0:a:1]join=inputs=2:channel_layout=stereo[a]

    Signed-off-by : Zane van Iperen <zane@zanevaniperen.com>

    • [DH] libavformat/pp_bnk.c
  • Bash : Create copy of music files in different format and folder

    13 mai 2021, par Brett Sjoholm

    I'm trying to create a bash scipt to simply automate finding my flac files and creating an alac copy of them in a separate folder. Just so I have my little itunes folder. Want to automate because so many.

    &#xA;

    So I find my flac folders within my Eminem folder....

    &#xA;

    :~$ find /mnt/music/Eminem -type d -name *FLAC&#xA;    /mnt/music/Eminem/2009 Relapse FLAC&#xA;    /mnt/music/Eminem/1996 Infinite FLAC&#xA;    /mnt/music/Eminem/1999 The Slim Shady LP FLAC&#xA;    /mnt/music/Eminem/2000 Marshall Mathers LP FLAC&#xA;

    &#xA;

    Now instead of going into each folder and converting manually using something like

    &#xA;

        ffmpeg -i track.flac -acodec alac track.m4a...&#xA;

    &#xA;

    How do I, within a bash script, take these multiple folders. Create an ALAC copy of the contents in /mnt/music/iTunes using FFMpeg ?

    &#xA;

    New folder will be...

    &#xA;

    /mnt/music/iTunes/Eminem/2009 Relapse ALAC/track.m4a&#xA;

    &#xA;

    All flac folders have FLAC at the end in the same folder structure.

    &#xA;

    /mnt/music/Artist/Year Album FLAC&#xA;

    &#xA;

    I understand most of the locating, copying, converting, manually terminal command stuff but when it comes to putting it into a bash script. I don't understand how I take the output of each command and use it for another. The list of folder for example. Don't know how to automate doing all the steps for each.

    &#xA;

    Kind of long winded but any help will be much appreciated. Even some videos you recommend for learning.

    &#xA;