Recherche avancée

Médias (0)

Mot : - Tags -/serveur

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

Autres articles (38)

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

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

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

Sur d’autres sites (3859)

  • How to add multiple audio files at specific times, on a silence audio file using ffmpeg ?

    11 février 2020, par boblapointe

    I need to overlay audio files at specific times, on an existing silence.mp3. Something like that :

    [----[...audio1...]----------[...audio2...]---------------]

    I’ve tried the following but it doesn’t work :

    ffmpeg -y -i silence.mp3 -itsoffset 4 -i audio1.mp3 -itsoffset 30 -i audio2.mp3 -c:a copy final.mp3

    Any help would be appriciated. Thank you.

  • avfilter : move window function generation into separate file

    28 décembre 2015, par Paul B Mahol
    avfilter : move window function generation into separate file
    

    Signed-off-by : Paul B Mahol <onemda@gmail.com>

    • [DH] libavfilter/Makefile
    • [DH] libavfilter/avf_showfreqs.c
    • [DH] libavfilter/window_func.c
    • [DH] libavfilter/window_func.h
  • Add two MP3 files to an MP4 file using ffmpeg

    26 septembre 2019, par sigur7

    I am using ffmpeg on Windows and getting the following error as I try to add two MP3

    Stream specifier '' in filtergraph description [1]adelay=1|1[b];[2]adelay=100|100[c];[0][b][c]amix=3 matches no streams.

    using the following command

    ffmpeg -i vidwithnoaudio.mp4 -i audio0.mp3 -i audio1.mp3 -filter_complex "[1]adelay=1|1[b];[2]adelay=100|100[c];[0][b][c]amix=3" vidwithaudio.mp4

    Here is an alternative command I have found I am trying to edit into working with this :

    ffmpeg -i 1.mp4 -i 1.3gp -i 2.3gp -i 1.mp3
     -filter_complex "[2]adelay=10000|10000[s2];[3:a][1:a][s2]amix=3[a]"
     -map 0:v -map "[a]" -c:v copy result.mp4