Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (68)

  • 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

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

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

Sur d’autres sites (7887)

  • avcodec/mips : Improve hevc bi 4 tap hv mc msa functions

    6 novembre 2017, par Kaustubh Raste
    avcodec/mips : Improve hevc bi 4 tap hv mc msa functions
    

    Use global mask buffer for appropriate mask load.
    Use immediate unsigned saturation for clip to max saving one vector register.

    Signed-off-by : Kaustubh Raste <kaustubh.raste@imgtec.com>
    Reviewed-by : Manojkumar Bhosale <Manojkumar.Bhosale@imgtec.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/mips/hevc_mc_bi_msa.c
  • Ffmpeg : mixed audio is played louder and louder, how to set a constant intensity ?

    29 août 2020, par JarsOfJam-Scheduler

    I have these items :

    &#xA;

      &#xA;
    • A video (my_video_with_music.webm)
    • &#xA;

    • Three sounds (tmp_music/forest_15s.wav, tmp_music/forest2_15s.wav and tmp_music/creak_15s.wav)
    • &#xA;

    • A background music (tmp_music/original_music.mp3)
    • &#xA;

    &#xA;

    I mix all these files in two steps. First, I mix the video with the background music. Then, I mix this output with the sounds. A video with the music and the sounds, let name it "THE_VIDEO", is output.

    &#xA;

    My problem is that "THE_VIDEO" increases in loudness along the video. At the beginning, it's not very loud. At the end of the video, it's very loud. I don't know why. I would want to have a constant loudness (not too loud, not too low).

    &#xA;

    How can I do it ? Note that the original music file and sounds files don't increase in loudness : they have themselves a constant intensity. So it's actually FFMPEG that increases it when mixing them with the video.

    &#xA;

    Sources

    &#xA;

    Mixing the background music with the video (this command doesn't trigger the bug !) :

    &#xA;

    C:/Users/x/Downloads/ffmpeg/bin/ffmpeg.exe -i my_video.webm -stream_loop -1 -i tmp_music/original_music.mp3 -c:v copy -shortest -fflags &#x2B;shortest -max_interleave_delta 100M  my_video_with_music.webm&#xA;

    &#xA;

    Adding the sounds (this is the command that triggers the bug !) :

    &#xA;

    C:/Users/x/Downloads/ffmpeg/bin/ffmpeg.exe -i my_video_with_music.webm -i tmp_music/forest_15s.wav -i tmp_music/creak_15s.wav -i tmp_music/forest2_15s.wav -filter_complex [1]adelay=7000|7000[a1];[1]adelay=37000|37000[a2];[1]adelay=88000|88000[a3];[2]adelay=118000|118000[a4];[0][a1][a2][a3][a4]amix=5 -c:v copy my_video_with_music_with_songs.webm&#xA;

    &#xA;

  • ffmpeg not working in other directory same encoder

    14 mars 2018, par Moein Hosseini

    I’m using a script to convert mp3 file to ogg file by libopus codec.

    when I use it in my home directory it works using this command :

    ffmpeg -i music.mp3 -c libopus out.ogg

    but when I’m in this directory :

    /home/moein/Desktop/BeatkhorBot/music

    the command does not work and gives me this error :

    Invalid encoder type 'libopus'

    does anyone know how to fix this ?