Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (112)

  • 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 ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • 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

Sur d’autres sites (7513)

  • test/ : Remove two redundant scripts

    11 février 2016, par Erik de Castro Lopo
    test/ : Remove two redundant scripts
    

    * test_bin.sh looks like it was a personal use script for the original
    developer Josh Coalson and referenced directories outside the actual
    repository.
    * test_wrapper.sh was trivial and un-used.

    • [DH] test/Makefile.am
    • [DH] test/test_bins.sh
    • [DH] test/test_wrapper.sh
  • Converting Video files in a Azure Webjob with ffMpeg

    13 décembre 2016, par Kevin Phifer

    I’m having trouble using ffMpeg in an Azure webjob.

    I found the following article (How to call ffmpeg.exe to convert audio files on Windows Azure ?) and it is exactly what I want to do, however, I cannot get ffMpeg to execute and it gives no error message.

    To diagnose the problem, I have boiled it down to its essentials by uploading ffMpeg, a video file to convert, and batch file to run it :

    files in directory

    The script in run.cmd is simply :

    del output.mp4
    ffmpeg -i screencast.wmv -c:v libx264 -r 15 output.mp4

    This works on my personal machine, but ran as a webjob I get results below.

    [12/08/2015 15:42:39 > bf9dd6: SYS INFO] Status changed to Initializing
    [12/08/2015 15:42:39 > bf9dd6: SYS INFO] Job directory change detected: Job file 'ffmpegtest\output.mp4' exists in source directory but not in working directory.
    [12/08/2015 15:42:47 > bf9dd6: SYS INFO] Run script 'run.cmd' with script host - 'WindowsScriptHost'
    [12/08/2015 15:42:48 > bf9dd6: SYS INFO] Status changed to Running<br />
    [12/08/2015 15:42:48 > bf9dd6: INFO]
    [12/08/2015 15:42:48 > bf9dd6: INFO] D:\local\Temp\jobs\triggered\ffMpeg\y1bdnb1e.03k\ffmpegtest>del output.mp4
    [12/08/2015 15:42:48 > bf9dd6: INFO]
    [12/08/2015 15:42:48 > bf9dd6: INFO] D:\local\Temp\jobs\triggered\ffMpeg\y1bdnb1e.03k\ffmpegtest>ffmpeg -i screencast.wmv -c:v libx264 -r 15 output.mp4
    [12/08/2015 15:42:49 > bf9dd6: SYS INFO] Status changed to Failed
    [12/08/2015 15:42:49 > bf9dd6: SYS ERR ] Job failed due to exit code -1073741515

    Edit :
    Additionally, it was suggested that I run using Kudu console. Still no luck :
    Kudu Screenshot

    Solution :
    I ended up needing to run the 32 version of ffMpeg and not the 64 bit. Thanks so much @mathewc !

  • How to incorporate screencasting into a rails project

    13 mars 2015, par ruby_newbie

    I am working on a personal project and I want to incorporate screencasting with it. I want the screencast to be able to record the entire screen not just the page in a web browser so I think JS is out as a solution. I have searched and found a few clues but nothing concrete as to how i can make it happen short of learning Java. Here is what I have tried :

    Rmov :https://rubygems.org/gems/rmov I cant get bundler to run bundle with this gem but this has the exact functionality I want. I think it has to do with quicktime being 32 bit but I am not sure. I opened an issue on Github in hopes to resolve it.

    I saw this post : http://devblog.avdi.org/2013/01/21/my-screencasting-process/ which links to this script : https://github.com/avdi/Xcast/blob/master/Xcast
    but I am failing on the require ’highline/system_extensions’ line (require cannot load such file).

    I found this : http://rvideo.rubyforge.org/ but I am still confused as to how to implement it. FFMPEG seems promising though and like it may be the tool I am looking for.

    Does anyone know of a tool that would allow me to do this or a good tutorial that explains this process in detail ? Any help is appreciated and let me know if you need any more info that I can provide.