Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (69)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • 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

Sur d’autres sites (9182)

  • Single FFMpeg command to merge 2 audio with 1 video

    26 avril 2019, par YadavK

    I have a requirement like i have to merge 2 audio with single video. I found lots of solutions but none of them provide just the single command for the requirement.

    Here is the solution for that :

    -i sample_video.mp4 -i sample_audio1.mp3 -i sample_audio2.mp3 -filter_complex [1][2]amix=inputs=2[a] -map 0:v -map [a] -c:v copy Output.mp4

    you can also set the audio range like 8sec - 20 sec then use the below command

    -i sample_video.mp4 -i sample_audio1.mp3 -i -ss 8 -t 20 sample_audio2.mp3 -filter_complex [1][2]amix=inputs=2[a] -map 0:v -map [a] -c:v copy Output.mp4

    the above sample will merge second audio from 8 sec to 20 sec only as we specify the range -ss 8 -t 20

  • Trancsode and generate waveform data file in ffmpeg with a single command

    19 mai 2019, par user1152226

    I am trying to transcode and generate a waveform data file in the same command. I cannot figure out how to generate 2 output files from a single input. I want an mp4 file, and the waveform data file. The waveform data needs to be generated from the output of the transcoding step (ie, after the stream has already been transcoded)

    The following does not work :

    ffmpeg -i "https://mp3l.jamendo.com/?trackid=862797&format=mp31" -map 0:a -c:a libfdk_aac out1.mp4 -f data data.txt
    Output file #1 does not contain any stream
  • How to keep a buffer of an rtsp stream to a single file, overwriting itself continuously ?

    30 mai 2019, par Wublide

    I want to keep the last 60 seconds of an rtsp stream recordedcontinuously to a single file.

    As now I use the segment muxer way but it’s not what fits my case. I have read something about circular buffer, fifo or named pipes but I’m a beginner on all of that and I don’t have a clue about this.

    This is what I have now

    /usr/bin/ffmpeg -i rtsp://streamaddress/ -c copy -map 0 -f segment -segment_time 10 -segment_wrap 7 -segment_format mp4 output.mp4