
Recherche avancée
Autres articles (48)
-
Gestion générale des documents
13 mai 2011, parMé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, parCette 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, parMediaSPIP 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 Wangavfilter : 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 Curtisavutil/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> -
How to find what 2 sounds have in common ?
22 mai 2020, par ThomazPomThank you for your time.



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



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



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



Any ideas ?



Many thanks,
Sorry for my aproximate english.



Thomaz



->EDIT
Got it with scypi.



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




to find their common silences :



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