
Recherche avancée
Autres articles (80)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation"
Sur d’autres sites (8690)
-
Matomo will now pay researchers 5,000 USD for a critical security vulnerability
7 mai 2020, par Matomo Core Team -
ffmpeg critical noise occured after silence remove filtering
31 mars 2020, par SY KIMI’ve tried to remove silence duration in my audio file.
and it seems like working well..
but some problem rose up like the picutre i attached.ffmpeg -i "D://mono_test/silenceremove_test_raw.mp3" -filter:a silenceremove=1:0:-66dB -b:a 192k "D://mono_test/silenceremove_test.mp3"
after silence remove filtering(in ffmpeg), some noise occured like picture(just left channel in the file). already control all parameters about silenceremove method, but the problem doesn’t disappear.
any Ideas ?
please help me..
thnx.add full ffmpeg log here
ffmpeg version N-93986-gd3f236b300 Copyright (c) 2000-2019 the FFmpeg C:\Users\drunk>ffmpeg -i "D://mono_test/silenceremove_test_raw.mp3" -filter:a silenceremove=1:0:-66dB -b:a 192k "D://mono_test/silenceremove_test.mp3"
ffmpeg version N-93986-gd3f236b300 Copyright (c) 2000-2019 the FFmpeg developers
built with gcc 8.3.1 (GCC) 20190414
configuration: --enable-gpl --enable-version3 --enable-sdl2 --enable-fontconfig --enable-gnutls --enable-iconv --enable-libass --enable-libdav1d --enable-libbluray --enable-libfreetype --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libtheora --enable-libtwolame --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxml2 --enable-libzimg --enable-lzma --enable-zlib --enable-gmp --enable-libvidstab --enable-libvorbis --enable-libvo-amrwbenc --enable-libmysofa --enable-libspeex --enable-libxvid --enable-libaom --enable-libmfx --enable-amf --enable-ffnvcodec --enable-cuvid --enable-d3d11va --enable-nvenc --enable-nvdec --enable-dxva2 --enable-avisynth --enable-libopenmpt
libavutil 56. 28.100 / 56. 28.100
libavcodec 58. 52.102 / 58. 52.102
libavformat 58. 27.103 / 58. 27.103
libavdevice 58. 7.100 / 58. 7.100
libavfilter 7. 55.100 / 7. 55.100
libswscale 5. 4.101 / 5. 4.101
libswresample 3. 4.100 / 3. 4.100
libpostproc 55. 4.100 / 55. 4.100
Input #0, mp3, from 'D://mono_test/silenceremove_test_raw.mp3':
Metadata:
title : 190604_0026.mp3
album : TASCAM DR-07MK2
genre : Other
encoder : Lavf58.27.103
id3v2_priv.XMP : <?xpacket begin="\xef\xbb\xbf" id="W5M0MpCehiHzreSzNTczkc9d"?>\x0a\x0a \x0a \x0a\x0a \x0a /drive.google.com/open?id=1r-V-xesdO8pQ9_HGMweBUm6b0QRxwql2" rel="nofollow noreferrer">https://drive.google.com/open?id=1r-V-xesdO8pQ9_HGMweBUm6b0QRxwql2
<p>silenceremove_test_raw.mp3 <- this file is original data before silenceremove process.</p> -
Which Platform/Language to choose for Video Management System [closed]
5 décembre 2019, par Vivek BuddhadevWe have started on a new project, Which enables for the multiple IP cameras(Around 1000 Cameras) to record as well as available for live streaming.
Like https://www.security.honeywell.com/uk/product-repository/maxpro-vms
Initially, we have tried using
ffmpeg
commands that saves data in chunks :ffmpeg -i {rtsp_url} -fflags flush_packets -max_delay 2 -flags -global_header \
-hls_time 2 -hls_list_size 3 -vcodec copy -y /var/www/html/Cam01.m3u8Then we have started http server and using node.js we are displaying the stream.
But as we are adding more cameras into it, the performance is going down.
Kindly suggest if there is any other way to achieve this functionality which help us to fulfill the above requirement.