Recherche avancée

Médias (0)

Mot : - Tags -/optimisation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (32)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (6502)

  • configure : Don’t add -fPIC to cflags for target_os=win32

    12 octobre 2017, par Martin Storsjö
    configure : Don’t add -fPIC to cflags for target_os=win32
    

    We skipped adding it to cflags for mingw/cygwin configurations
    where the compiler either complains loudly or even errors out ;
    do the same for target_os=win32, for the case when building with
    clang in msvc mode.

    This wasn’t needed for the actual msvc before, since msvc uses
    msvc_common_flags to filter out this flag from cflags.
    When building with clang in msvc mode, no such filter is used.

    This fixes building shared libraries with clang in msvc mode.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] configure
  • Make definition of _vorbis_window_get() match declaration.

    3 décembre 2013, par Tim Terriberry
    Make definition of _vorbis_window_get() match declaration.
    

    window.c wasn’t actually including window.h, or this would have been
    noticed earlier.

    git-svn-id : http://svn.xiph.org/trunk/vorbis@19028 0101bb08-14d6-0310-b084-bc0e0c8e3800

    • [DH] lib/window.c
    • [DH] lib/window.h
  • video playing with paperclip ffmpeg

    30 mars 2014, par Ameya Savale

    I've been having problems playing uploaded videos in my ruby on rails app.

    So I am using the paperclip-ffmpeg gem to process my videos when uploaded, and I am able to create a thumbnail of the video but I am not able to play the video. When I right click on the video I am able to download and I can play it using the player on my computer but I am not able to play it in my view. Also when I right click on it the options for "play", "skip", etc. are all blocked. Here is my model :

    class Video &lt; ActiveRecord::Base
       has_attached_file :clip, :styles => {
               :medium => { :geometry => "640x480", :format => &#39;flv&#39;},
               :thumb => {:geometry => "100x100#", :format => &#39;jpg&#39;, :time => 10}
           }, :processors => [:ffmpeg]
       do_not_validate_attachment_file_type(:clip)
    end

    And here is my view :

    <table class="table">
                       <tr>
                           <th>Video</th>
                           <th>Title</th>
                           <th>Caption</th>
                       </tr>
                       &lt;% @video.each do |video| %>
                           <tr>
                               <td>
                                   &lt;%= image_tag video.clip.url(:thumb) %>
                                   &lt;%= video_tag video.clip.url(:medium) %>
                               </td>
                               <td>
                                   &lt;%= label_tag video.title %>
                               </td>
                               <td>
                                   &lt;%= label_tag video.caption %>
                               </td>
                           </tr>
                       &lt;% end %>
                   </table>

    I have also tried using the videojs_rails gem but I wasn't able to play the video using that either. I would greatly appreciate it if someone could help me out, I've been searching for an answer everywhere but haven't come across one that has worked for me.

    Thanks in advance