Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (97)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (15605)

  • lavc/tiff : Enable decoding of LinearRaw images

    29 août 2019, par Nick Renieris
    lavc/tiff : Enable decoding of LinearRaw images
    

    "LinearRaw" is a value that the PhotometricInterpretation tag can be set
    to on DNG images that contain color information for all channels instead
    of being bayer-encoded ("CFA" value).

    The DNG decoder is complete enough that we can enable this now.

    Sample :
    - http://www.rawsamples.ch/raws/nikon/SCANNER_NIKON_LS5000.DNG

    Signed-off-by : Nick Renieris <velocityra@gmail.com>

    • [DH] libavcodec/tiff.c
  • ProcessBuilder is executing last

    8 juillet 2015, par Ryan

    I have a segment of code something like this

    File f = new File("Audio/Testing/mbgitr.wav");
       try {
           ProcessBuilder pb = new ProcessBuilder("bash/extractAudio.sh", f.getAbsolutePath());
           pb.inheritIO();
           pb.start();
       }catch(IOException e){
           System.out.println("Oh no!");
       }
       System.out.println(new File("Audio/mbgitr.wav").exists());

    The bash file converts the audio file to a different format/sample rate and outputs it to the folder Audio. But whenever I run this script, I get the following output :

    /home/Ryan/Development/Java/Test/Audio/Testing/mbgitr.wav
    mbgitr.wav
    /home/Ryan/Development/Java/Test
    false
    ffmpeg version 2.6.2 Copyright (c) 2000-2015 the FFmpeg developers
    [more ffmpeg output]

    Process finished with exit code 0

    It seems that the line of code testing if the file exists is executing before the code running the script. If I were to run the program again, it would ouput "true" because the file was already created in the last iteration. Is there a way to get the file called by the ProcessBuilder to execute first ? Thanks in advance !

  • Changes to the WebM Open Source License

    4 juin 2010, par noreply@blogger.com (John Luther)

    You’ll see on the WebM license page and in our source code repositories that we’ve made a small change to our open source license. There were a couple of issues that popped up after we released WebM at Google I/O a couple weeks ago, specifically around how the patent clause was written.

    As it was originally written, if a patent action was brought against Google, the patent license terminated. This provision itself is not unusual in an OSS license, and similar provisions exist in the 2nd Apache License and in version 3 of the GPL. The twist was that ours terminated "any" rights and not just rights to the patents, which made our license GPLv3 and GPLv2 incompatible. Also, in doing this, we effectively created a potentially new open source copyright license, something we are loath to do.

    Using patent language borrowed from both the Apache and GPLv3 patent clauses, in this new iteration of the patent clause we’ve decoupled patents from copyright, thus preserving the pure BSD nature of the copyright license. This means we are no longer creating a new open source copyright license, and the patent grant can exist on its own. Additionally, we have updated the patent grant language to make it clearer that the grant includes the right to modify the code and give it to others. (We’ve updated the licensing FAQ to reflect these changes as well.)

    We’ve also added a definition for the "this implementation" language, to make that more clear.

    Thanks for your patience as we worked through this, and we hope you like, enjoy and (most importantly) use WebM and join with us in creating more freedom online. We had a lot of help on these changes, so thanks to our friends in open source and free software who traded many emails, often at odd hours, with us.

    Chris DiBona is the Open Source Programs Manager at Google.