Recherche avancée

Médias (0)

Mot : - Tags -/content

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (48)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

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

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

  • avfilter : add D2TS, TS2D, TS2T as a common macro in internal.h

    1er juin 2020, par Limin Wang
    avfilter : add D2TS, TS2D, TS2T as a common macro in internal.h
    

    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>

    • [DH] libavfilter/aeval.c
    • [DH] libavfilter/af_volume.c
    • [DH] libavfilter/f_select.c
    • [DH] libavfilter/f_sendcmd.c
    • [DH] libavfilter/internal.h
    • [DH] libavfilter/setpts.c
    • [DH] libavfilter/vf_delogo.c
    • [DH] libavfilter/vf_eq.c
    • [DH] libavfilter/vf_hue.c
    • [DH] libavfilter/vf_rotate.c
    • [DH] libavfilter/vf_scale.c
    • [DH] libavfilter/vf_vignette.c
  • avutil/common : Add saturated add/sub operations for int64_t.

    1er mai 2020, par Dale Curtis
    avutil/common : Add saturated add/sub operations for int64_t.
    

    Many places are using their own custom code for handling overflow
    around timestamps or other int64_t values. There are enough of these
    now that having some common saturated math functions seems sound.

    Signed-off-by : Dale Curtis <dalecurtis@chromium.org>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavutil/common.h
  • How to find what 2 sounds have in common ?

    22 mai 2020, par ThomazPom

    Thank you for your time.

    &#xA;&#xA;

    I have a video, with 2 audios tracks (same lenght) (audio1 : en, audio2 : jap).

    &#xA;&#xA;

    I try to figure how to export an audio where theses track are identical (blank sound otherwise) or better, the times periods where these have sound in commmon

    &#xA;&#xA;

    I think ffmpeg is a good start and i use it occasionally, but this one is a bit too hard for me.

    &#xA;&#xA;

    Any ideas ?

    &#xA;&#xA;

    Many thanks,&#xA;Sorry for my aproximate english.

    &#xA;&#xA;

    Thomaz

    &#xA;&#xA;

    ->EDIT&#xA;Got it with scypi.

    &#xA;&#xA;

    from scipy.io.wavfile import read, write&#xA;en = read("000001_output_en.wav")&#xA;jap = read("000001_output_jp.wav")&#xA;out=(en[1]*en[1]==jap[1])&#xA;write("output_processed.wav",en[0],out)&#xA;

    &#xA;&#xA;

    to find their common silences :

    &#xA;&#xA;

    from scipy.io.wavfile import read, write&#xA;en = read("000001_output_en.wav")&#xA;jap = read("000001_output_jp.wav")&#xA;out=(en[1]*jap[1])&#xA;write("output_processed.wav",en[0],out)&#xA;

    &#xA;