
Recherche avancée
Autres articles (22)
-
Initialisation de MediaSPIP (préconfiguration)
20 février 2010, parLors de l’installation de MediaSPIP, celui-ci est préconfiguré pour les usages les plus fréquents.
Cette préconfiguration est réalisée par un plugin activé par défaut et non désactivable appelé MediaSPIP Init.
Ce plugin sert à préconfigurer de manière correcte chaque instance de MediaSPIP. Il doit donc être placé dans le dossier plugins-dist/ du site ou de la ferme pour être installé par défaut avant de pouvoir utiliser le site.
Dans un premier temps il active ou désactive des options de SPIP qui ne le (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
Liste des distributions compatibles
26 avril 2011, parLe tableau ci-dessous correspond à la liste des distributions Linux compatible avec le script d’installation automatique de MediaSPIP. Nom de la distributionNom de la versionNuméro de version Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
Si vous souhaitez nous aider à améliorer cette liste, vous pouvez nous fournir un accès à une machine dont la distribution n’est pas citée ci-dessus ou nous envoyer le (...)
Sur d’autres sites (3707)
-
avcodec/flac_parser : Use native endianness when possible
6 octobre 2019, par Andreas Rheinhardtavcodec/flac_parser : Use native endianness when possible
FLAC sync codes contain a byte equal to 0xFF and so the function that
searches for sync codes first searched for this byte. It did this by
checking four bytes at once ; these bytes have been read via AV_RB32, but
the test works just as well with native endianness.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-
Merge remote-tracking branch ’qatar/master’
25 octobre 2013, par Michael NiedermayerMerge remote-tracking branch ’qatar/master’
* qatar/master :
fft-test : Remove possibility of returning restricted exit code
dct-test : Remove possibility of returning a restricted exit code
base64-test : Remove posibility of returning restricted exit codes
tree-test : Don’t return restricted exit codesConflicts :
libavutil/base64.cSee : b2fdf3fc35b6dca8ac7f6d46bd73ea5eb1339193
See : f80ca1cb002c53927fa3edaff5082bfba24d6193
See : cbbd0ac764b43df081898a2c3548a2fee1faca53
See : 5dfdffeb6fe9c43a496a4c1949cf9162474c7418
Merged-by : Michael Niedermayer <michaelni@gmx.at> -
FFPLAY Fade In and Out Audio
22 novembre 2018, par Nadav TasherI have a working script that plays different audios every 45 minutes.
The audios change on a daily basis, so i cant manually fade them in/out in audacity.In the script,i have the following command :
ffplay -i /home/nadav/Ringtone1.mp3 -ss 00:00:7 -t 20 -nodisp -autoexit
and i want to make it fade in from 0 to max in 5 seconds then fade out from max to 0 in 5 seconds (at the end).
i do know the length of the audio.
anybody knows a simple filter that will work ? everything i found does not...
e.g.
-vf 'fade=in:0:30,fade=out:960:30' -af 'afade=in:st=0:d=1,afade=out:st=32:d=1'