Recherche avancée

Médias (0)

Mot : - Tags -/tags

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

Autres articles (71)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (6117)

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