
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (86)
-
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
MediaSPIP Player : problèmes potentiels
22 février 2011, parLe lecteur ne fonctionne pas sur Internet Explorer
Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)
Sur d’autres sites (10787)
-
Revision a51704d9c7 : vp8 common : change 'HAVE_NEON_ASM' to 'HAVE_NEON' for compiling idct_blk_neon.c.
4 septembre 2014, par Jia JiaChanged Paths :
Modify /vp8/vp8_common.mk
vp8 common : change ’HAVE_NEON_ASM’ to ’HAVE_NEON’ for compiling idct_blk_neon.c.Change-Id : Ib89107fb824b5fe58afef6841104d5a27b2e0f2d
-
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)



-
dca : Move ff_dca_convert_bitstream() to the DCA common code
26 mars 2013, par Diego Biurrundca : Move ff_dca_convert_bitstream() to the DCA common code