Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (50)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

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

Sur d’autres sites (10816)

  • lavc/qsvenc : use the common option "trellis" of AVCodecContext

    27 mars 2019, par Zhong Li
    lavc/qsvenc : use the common option "trellis" of AVCodecContext
    

    Signed-off-by : Zhong Li <zhong.li@intel.com>

    • [DH] libavcodec/qsvenc.c
    • [DH] libavcodec/qsvenc_h264.c
    • [DH] libavcodec/qsvenc_hevc.c
    • [DH] libavcodec/qsvenc_mpeg2.c
  • Revision c3b5ef7600 : Broken loop filter case. Loop filter level moved to common but this case missed

    12 août 2013, par Paul Wilkins

    Changed Paths :
     Modify /vp9/encoder/vp9_onyx_if.c



    Broken loop filter case.

    Loop filter level moved to common but this case missed.

    Change-Id : I7fcb557e46ef4ed8e2b5e9c3e82cb042b55bbd7f

  • Im trying to add Audio to a mute Video and it doesnt work

    15 février 2021, par mybrainisrunningoutofmyears

    I had two approaches :

    &#xA;

    1.ffmpeg-python

    &#xA;

    def addaudtovid(audpath,vidpath,savepath): &#xA;    input_video = ffmpeg.input(vidpath)&#xA;    input_audio = ffmpeg.input(audpath)&#xA;    ffmpeg.concat(input_video, input_audio, v=1, a=1).output(savepath).run()&#xA;

    &#xA;

    here for some reason it "cant find a file"(in the fourth line) but all files exist.&#xA;Tried this too :

    &#xA;

    subprocess.run("ffmpeg -i "&#x2B;vidpath&#x2B;" -i "&#x2B;audpath&#x2B;" -c copy "&#x2B;savepath)&#xA;

    &#xA;

      &#xA;
    1. MoviePy.editor
    2. &#xA;

    &#xA;

    Here the finished Video starts after about 3 seconds of blackscreen, but the Audio already starts at the beginning

    &#xA;

    videoclip = VideoFileClip(vidpath)&#xA;audioclip = AudioFileClip(audpath)&#xA;videoclip.audio = audioclip&#xA;videoclip.write_videofile(savepath)&#xA;

    &#xA;

    The Audio and Video are exactly the same length

    &#xA;

    I am using Windows 10 python 3.8

    &#xA;

    I am happy about any idea how to fix it because I tried everything I could think and google of.

    &#xA;