Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (29)

  • 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

  • Changer son thème graphique

    22 février 2011, par

    Le thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
    Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
    Modifier le thème graphique utilisé
    Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
    Il suffit ensuite de se rendre dans l’espace de configuration du (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (6200)

  • how to compile the latest ffmpeg into a lib that can be used in my windows application [closed]

    12 avril 2013, par chinayin

    i download the latest ffmpeg ,then in windows i used the mingw+msys to compiled it to a lib ,but the source code had so many .h,.cpp ,i don't know how to use the lib in my windows application . when i compiled my windows application it always come with an error can not find xxx .h and so on .so if someone who can tell me that how to make a lib and use it in my windows application.i am a new one in ffmpeg ,this problem make me feel so bad. so i come here for an answer . thank you very much . best regards.

  • FFmpeg on windows 7, encode video in mp4 for HTML 5 video fail

    14 avril 2013, par manonthemoon

    I try to encode my video with FFmpeg, to convert to mp4.
    But the video doesn't work on html 5. I don't understand why.

    I found this command on the web and I tried it :

    ffmpeg.exe -i wildlife.wmv -b 1500k -vpre slow -vpre baseline -vcode libx264 \
      -g 30 wildlife.mp4
    

    But it fails, and I have this error :

    File for preset 'slow' not found

    I check the folder "presets" and the preset is on the folder, so I don't understand why it's telling me this error.
    I tried with the complete path, it fails too.

  • Encode a movie with Unicode filename in Windows using Popen

    15 avril 2013, par Tetsu

    I want to encode a movie through IO.popen by ruby(1.9.3) in windows 7.
    If the file name contains only ascii strings, encoding proceed normally.
    But with unicode filename the script returns "No such file or directory" error.
    Like following code.

    #-*- encoding: utf-8 -*-
    command = "ffmpeg -i ü.rm"
    IO.popen(command){|pipe|
     pipe.each{|line|
       p line
     }
    }

    I couldn't find whether the problem causes by ffmpeg or ruby.
    How can fix this problem ?