
Recherche avancée
Autres articles (84)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
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 (...)
Sur d’autres sites (15684)
-
Debug Assertion Failed on dllinit.cpp Line703 by using own regular DLL
20 mars 2013, par user2190325I'm creating a Regular DLL(mylib.dll and mylib.lib) that using libx264.dll(dynamic linking by import lib) and libfaac.lib(static linking).
mylib.dll created and has no build errors, but Debug Assertion Failed message popped up at runtime in dllinit.cpp:Line703.How to solve above DLL-hells ?
-
can't see ffmpeg on phpinfo after install
18 décembre 2017, par Erfan.MI have installed the Ffmpeg extension on Xampp (I have windows 10-pro 64x-but I use 32x xampp) and Apache gives me this error log :
PHP Warning: PHP Startup: Unable to load dynamic library 'E:\\xampp\\php\\ext\\php_ffmpeg.dll' - %1 is not a valid Win32 application.\r\n in Unknown on line 0
and I can’t see
ffmpeg
in thephpinfo()
output. -
waveforms arent as smooth as they should be
25 mars 2019, par GROVER.So I’ve been trying to create a little clone of SoundClouds ’peaks’ waveform. I have noticed that their waveforms are a lot more streamlined
compared to my sudden shifts in ’loudness’. The dynamic range between peaks never seems to be too steep, and they always represent the perceived loudness of each part of the track pretty well.
Here’s an example :
Notice how all the ’drops’ are fairly distinguishable to the ’breakdowns’ in their waveform, but mine is all over the place (apart from the last drop and breakdown, which are kind of similar). There are some minor similarities, but the ’jaggedness’ is still very prominent even in those areas.
I’m using wav2json as a peaks converter (which is run through the command line and programmed in
C++
). This is is an example of how I use it :/*
* --channels: mids and min
* --db-min (minimum level in dB to capture): -35dB
* --db-max (pretty self explanatory): 6dB
* -d: use logarithmic instead of linear scale
* -s (number of peaks to generate): 1800
* -o (output file): outputfile.json
* -p (precision of floats): 0
* -n: no header
*/
exec("wav2json inputfile.wav -s 1800 --channels mid min -d --db-min -35 --db-max 6 -p 0 -o outputfile.json -n");
$fp = fopen($tmpOutput, "r");
$json = fread($fp, filesize($tmpOutput));
// get mids and min from the generated peaks file
$mid = json_decode($json, true)["mid"];
$min = json_decode($json, true)["min"];
fclose($fp);
unlink($tmpOutput);
/*
* from here I just combine each mid and min value together and divide by two
*
* then I normalise all the peaks (instead of each value being between -0.293 to
* 1.766(just as an example), it is between 0 and 100)
*/What I’m trying to figure out - and have been trying to for the last few months - is how to get each peak more streamlined and to have the dynamic range of each one look how it actually sounds.
What I have tried :
- ffmpeg eqing
- actually eqing the highs and lows in a daw and then comparing waveforms
- using various parameters for wav2json (db min and max, linear etc.)
- using various compressors and multiband compressors on the track
All help is appreciated,
Cheers.