
Recherche avancée
Autres articles (22)
-
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 (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 is the first MediaSPIP stable release.
Its official release date is June 21, 2013 and is announced here.
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 (...) -
Création définitive du canal
12 mars 2010, parLorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
A la validation, vous recevez un email vous invitant donc à créer votre canal.
Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)
Sur d’autres sites (4233)
-
mmaldec : Add mpeg2 decoding support
21 octobre 2015, par Julian Scheelmmaldec : Add mpeg2 decoding support
Register mmaldec as mpeg2 decoder. Supporting mpeg2 in mmaldec is just a
matter of setting the correct MMAL_ENCODING on the input port. To ease the
addition of further supported mmal codecs a macro is introduced to generate
the decoder and decoder class structs.Signed-off-by : Julian Scheel <julian@jusst.de>
Signed-off-by : wm4 <nfxjfg@googlemail.com> -
lavf : Remove a now useless parameter to ffurl_register_protocol
29 octobre 2013, par Martin Storsjölavf : Remove a now useless parameter to ffurl_register_protocol
This was added in 9b07a2dc02e9 as an ABI hack to allow older
code built with lavf 52 to register protocols even if the size
of the URLProtocol struct was increased. Later, registering
protocols from outside of lavf was removed and this workaround
isn’t needed any longer since lavf 53.This removes an unchecked malloc and a memory leak for the cases
when this workaround actually was used - which it hasn’t since
lavf 53.Signed-off-by : Martin Storsjö <martin@martin.st>
-
avcodec : do not use init_static_data on some codecs
2 février 2018, par Muhammad Faizavcodec : do not use init_static_data on some codecs
They don't modify AVCodec, no needs to call it at register. They will be
wasteful if these codecs are unused. Instead, call static data initialization
at codecs' init.Benchmark :
old : 51281340 decicycles in avcodec_register_all, 1 runs, 0 skips
new : 6738960 decicycles in avcodec_register_all, 1 runs, 0 skipsReviewed-by : wm4 <nfxjfg@googlemail.com>
Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by : Muhammad Faiz <mfcc64@gmail.com>