Recherche avancée

Médias (91)

Autres articles (72)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (5316)

  • How can I play audio file(.mp3, .flac, .wav) and then loop over it (mix every few seconds) another audio file(wav) using ffmpeg

    11 mars 2019, par lukistar

    I got two different commands.

    ffmpeg -i input.mp3 -i second.mp3 -filter_complex "[0:a]atrim=end=10,asetpts=N/SR/TB[begin];[0:a]atrim=start=10,asetpts=N/SR/TB[end];[begin][1:a][end]concat=n=3:v=0:a=1[a]" -map "[a]" output

    This command inserts second.mp3 into input.mp3. It seems to always keep the parameters of input.mp3. It inserts it in exact 10 seconds of input.mp3.

    Here is the second command :

    ffmpeg -i input.mp3 -i second.mp3 -filter_complex "[1:a]adelay=10000|10000[1a];[0:a][1a]amix=duration:first" output

    This command is closer to my final goal. It plays input.mp3 and in exact 10 seconds it plays along second.mp3 without stopping input.mp3’s sound.(I think that’s called mixing ?)

    My final goal is to create final.mp3.

    Its duration must always equal input.mp3 duration. It must keep the samplerate, the count of channels, etc of input.mp3

    When playing final.mp3, it must play the whole input.mp3.
    But each 10-15 seconds, it must play second.mp3 without stopping input.mp3.(mix)
    It could be said that I must use "Second command" but in a loop.
    It would be great if there is one-line command for that in ffmpeg.
    I am working with flac, mp3 and wav and both of the commands were suitable for that.

    For example :

    input.mp3 could be 40 seconds long.

    second.mp3 could be 2 seconds long.

    When I play final.mp3 it will be 40 seconds long, but each 10-15 seconds(on random) it will play second.mp3 at the same time as input.mp3.

    Sadly I have no experience with ffmpeg, both of the commands I got are answers to questions here in stackoverflow. Hope somebody can help me. Thank you !

  • Audio merging using ffmpeg : Error decoding a SILK frame

    29 janvier 2018, par arjuncc

    I am using following command to merge two audio files with ffmpeg. On the output file one of the audio is not audible. When these audios are taken separately both files are audible(mka file).

    ffmpeg  -i file1.mka -i file2.mka -filter_complex "[1]adelay=12509.000000|12509.000000[d];[0][d]amix=inputs=2" -strict
    -2 output_audio.webm

    I am getting following error in log

    [opus @ 000000fba65e22c0] Error decoding a SILK frame.
    [opus @ 000000fba65e22c0] Error decoding an Opus frame.
    [opus @ 000000fba65e22c0] LBRR frames is not implemented. Update your FFmpeg ver
    sion to the newest one from Git. If the problem still occurs, it means that your
    file has a feature which has not been implemented.

    I have had a hint form this and this link but It was also not helpful.

    Finally I converted file ’file2.mka’ into mp3 and merged with the first file, at that time audio is clear, also the synching is perfect. So I suppose data is not lost, It should be an issue with codec. Can anyone help ?
    I have also tried below command but no luck

    ffmpeg  -i file1.mka -i file2.mka -filter_complex "[1]adelay=12509.000000|12509.000000[d];[0][d]amix=inputs=2" -map 0:0 -c:a libopus -map 1:0  -strict -2 output_audio.webm

    Full implementation is given in this link

  • Adding audio into mp4 file with ffmpeg [on hold]

    18 avril 2015, par minto

    I want embed audio in .MP4 video file. Video does not contain any audio.

    MP3 audio track may be shorten or longer than actual MP4 video lenght, so I want loop audio when I will use shorter audio track, or truncate it when audio track is longer than video. Looping audio isn’t so important, though.

    How to make this correctly with ffmpeg ?