Recherche avancée

Médias (0)

Mot : - Tags -/flash

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

Autres articles (36)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

Sur d’autres sites (7302)

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