Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (49)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (5085)

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

    


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

    


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


    


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

    


        ffmpeg -i track.flac -acodec alac track.m4a...


    


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

    


    New folder will be...

    


    /mnt/music/iTunes/Eminem/2009 Relapse ALAC/track.m4a


    


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

    


    /mnt/music/Artist/Year Album FLAC


    


    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.

    


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

    


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

    &#xA;

    Here is the command that i use :

    &#xA;

    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&#xA;

    &#xA;

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

    &#xA;

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

    &#xA;

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

    &#xA;

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

    &#xA;