Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (50)

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 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 (...)

Sur d’autres sites (9017)

  • Revision 6281 : Un peu mieux sur les documents en Zpip classique ... Il faut tester ...

    3 décembre 2011, par kent1 — Log

    Un peu mieux sur les documents en Zpip classique ... Il faut tester sur mediaspip avec toute sorte de docs

  • Revision 6281 : Un peu mieux sur les documents en Zpip classique ... Il faut tester sur ...

    3 décembre 2011, par kent1 — Log

    Un peu mieux sur les documents en Zpip classique ... Il faut tester sur mediaspip avec toute sorte de docs

  • RAR Is Still A Contender

    31 mai 2012, par Multimedia Mike — Science Projects, bzip2, compression, gzip, lossless, rar, xz

    RAR (Roshal ARchive) is still a popular format in some corners of the internet. In fact, I procured a set of nearly 1500 RAR files that I want to use in a little project. But I didn’t want my program to have to operate directly on the RAR files which meant that I would need to recompress them to another format. Surely, one of the usual lossless compressors commonplace with Linux these days would perform better. Probably not gzip. Maybe not bzip2 either. Perhaps xz, though ?

    Conclusion
    At first, I concluded that xz beat RAR on every single file in the corpus. But then I studied the comparison again and realized it wasn’t quite apples to apples. So I designed a new experiment.

    New conclusion : RAR still beats xz on every sample in this corpus (for the record, the data could be described as executable program data mixed with reduced quality PCM audio samples).

    Methodology
    My experiment involved first reprocessing the archive files into a new resource archive file format and only compressing that file (rather than a set of files) using gzip, bzip2, xz, and rar at the maximum compression settings.

    echo filesize,gzip,bzip2,xz,rar,filename > compressed-sizes.csv
    for f in `ls /path/to/files/*`
    do
      gzip -9 —stdout $f > out.gz
      bzip2 -9 —stdout $f > out.bz2
      xz -9 —stdout —check=crc32 $f > out.xz
      rar a -m5 out.rar $f
      stat —printf "%s," $f out.gz out.bz2 out.rar out.xz >> compressed-sizes.csv
      echo $f >> compressed-sizes.csv
      rm -f out.gz out.bz2 out.xz out.rar
    done
    

    Note that xz gets the option '--check=crc32' since I’m using the XZ Embedded library which requires it. It really doesn’t make a huge different in filesize.

    Experimental Results
    The preceding command line generates compressed-sizes.csv which goes into a Google Spreadsheet (export as CSV).

    Here are the full results of the bake-off, graphed :



    That’s not especially useful. Here are the top 2 contenders compared directly :



    Action
    Obviously, I’m unmoved by the data. There is no way I’m leaving these files in their RAR form for this project, marginal space and bandwidth savings be darned. There are other trade-offs in play here. I know there is free source code available for decompressing RAR files but the license wouldn’t mesh well with GPL source code libraries that form the core of the same project. Plus, the XZ Embedded code is already integrated and painstakingly debugged.

    During this little exercise, I learned of a little site called Maximum Compression which takes experiments like the foregoing to their logical conclusion by comparing over 200 compression programs on a standard data corpus. According to the site’s summary page, there’s a library called PAQ8PX which posts the best overall scores.