Recherche avancée

Médias (91)

Autres articles (57)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • MediaSPIP v0.2

    21 juin 2013, par

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

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

Sur d’autres sites (9666)

  • Refactored @-options handling to save bytes.

    11 juin 2013, par blueimp
    Refactored @-options handling to save bytes.
    

    If an option is set to @, the global option of the same name as the key
    will be used, e.g. :
    acceptFileTypes : '@', // acceptFileTypes

    If the options set contains a property prefix, the global options key
    will be the prefix plus the option key, concatenated in camel-case
    spelling, e.g. :
    prefix : 'loadImage',
    acceptFileTypes : '@', // loadImageAcceptFileTypes

    If the prefix is set to true, the action of the options set will be
    used as key.

  • lavc/vp8dsp : save one R-V GPR

    25 mai 2024, par Rémi Denis-Courmont
    lavc/vp8dsp : save one R-V GPR
    

    This saves one instruction and frees up A5, which will be repurposed in
    later changes. Unfortunately, we need to add quite a lot of alternative
    code for this.

    • [DH] libavcodec/riscv/vp8dsp_rvv.S
  • save FFMPEG screenshot output file to variable

    4 mai 2013, par dodgerogers747

    How can i get the output file of this FFMPEG code saved to a variable ?

     def take_screenshot
       logger.debug "Trying to grab a screenshot from #{self.file}"
       system "ffmpeg -i #{self.file} -ss 00:00:02 -vframes 1 #{Rails.root}/public/uploads/tmp/screenshots/#{File.basename(self.file)}.jpg"
       self.save!
     end

    I have tried :
    self.screenshot = system "ffmpeg -i #{self.file} -ss 00:00:02 -vframes 1 #{Rails.root}/public/uploads/tmp/screenshots/#{File.basename(self.file)}.jpg"

    but this doesn't save anything.

    thanks in advance !