Recherche avancée

Médias (91)

Autres articles (46)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (7158)

  • Create a glitch effect at arbitrary points in time using ffmpeg

    21 décembre 2020, par Soren Wray

    I know how to blend two videos into a single video of cross-fading clips with a glitch effect, e.g. every 2.7 seconds, with this command string :

    


    ffmpeg -i input1.mkv -i input2.mkv -filter_complex "[0][1]blend=all_expr='if(mod(trunc(T/2.7),2),min(1,2*(T-2.7*trunc(T/2.7))),max(0,4-8*(T-2.7*trunc(T/2.7))))*A+if(mod(trunc(T/2.7),2),max(0,4-8*(T-2.7*trunc(T/2.7))),min(1,2*(T-2.7*trunc(T/2.7))))*B';[0]volume='if(mod(trunc(t/2.7),2),min(1,2*(t-2.7*trunc(t/2.7))),max(0,4-8*(t-2.7*trunc(t/2.7))))':eval=frame[a]; [1]volume='if(mod(trunc(t/2.7),2),max(0,4-8*(t-2.7*trunc(t/2.7))),min(1,2*(t-2.7*trunc(t/2.7))))':eval=frame[b];[a][b]amix" output.mkv


    


    I would like a similar method, but for a set of arbitrary points in time. I believe a bash script, based on the above command, perhaps with an array of pre-selected cuts, could do the trick, but I lack the expertise.

    


  • add background music for last 5 second or fade in last 5 seconds a mp4 video

    30 décembre 2019, par Akhi

    I want to add background music for last 5 second in a mp4 video.how ? or fade in last 5 seconds. first time fade out then fade in for last 5 seconds.Please help.
    I tried

    ffmpeg -y -r 30 -i a.mp4 -i nn.mp3 -filter_complex "[0:a]volume=0,asplit[0a][0acf];
    [1:a]adelay=15s|15s[1a];
    [0a][1a]amix=inputs=2:duration=first:dropout_transition=0,volume=2,afifo[outro];
    [0acf]atrim=0:16,afifo[0acf];
    [outro][0acf]acrossfade=d=20[outro];
    [0:a][outro]amix=duration=first:weights=\'2 1\'[a]" -map 0:v -c:v copy -map [a] output.mp4
  • android - how to play two audio file at same time

    29 janvier 2016, par Sajad Norouzi

    I wanna create an karaoke android app. so far, user can listen to the song and record his voice. now I want to let user some editing like setting volume of his voice or setting Reverb effect. I have some library like ffmpeg and sox on android and don’t have problem for mixing two audio, but for setting volume or Reverb wanna play two audio file simultaneously using mediaplayer, however it’s not possible because android doesn’t let us play two audio file with mediaplayer at same time even with two different object of mediaplayer. so, what is the solution ?