Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

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

Autres articles (12)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (6846)

  • avutil/lzo : Fix integer overflow

    20 juin 2014, par Michael Niedermayer
    avutil/lzo : Fix integer overflow
    

    Embargoed-till : 2014-06-27 requested by researcher, but embargo broken by libav today (git and mailing list)

    Fixes : LMS-2014-06-16-4
    Found-by : "Don A. Bailey" <donb@securitymouse.com>
    See : ccda51b14c0fcae2fad73a24872dce75a7964996
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavutil/lzo.c
  • ffmpeg with Videoconverter.js MTS to .mp4 conversion issue

    24 juin 2014, par user3679718

    I’ve been scratching my head over this issue and going through dozens of google search results to find a solution to this, but no luck. I’ve got an issue when trying to convert MTS to mp4 with Videoconverter.js, which uses ffmpeg commands for converting video. I have installed ffmpeg, and run successfully .webm to .mp4 conversions. I’ve changed the Videoconverter.js file that specifies files to be used in the terminal, and I’m using commands from tutorials for MTS conversions (I’ve tried multiple options already), but to no avail. I keep getting "File not found", although it certainly is there, next to .webm which I converted before successfully.
    Anyone know what this might be ?

    Worker has received command
    Received command: -i 00091.MTS -vcodec mpeg4 -b:v 15M -acodec libmp3lame -b:a 192k output.mp4.          Processing with 268435456 bits.
    ffmpeg version 2.2.1 Copyright (c) 2000-2014 the FFmpeg developers
     built on Jun  9 2014 20:24:32 with emcc (Emscripten GCC-like replacement) 1.12.0 (commit  6960d2296299e96d43e694806f5d35799ef8d39c)
     configuration: --cc=emcc --prefix=/Users/bgrinstead/Sites/videoconverter.js/build/ffmpeg/../dist --extra-cflags='-I/Users/bgrinstead/Sites/videoconverter.js/build/ffmpeg/../dist/include -v' --enable-cross-compile --target-os=none --arch=x86_32 --cpu=generic --disable-ffplay --disable-ffprobe --disable-ffserver --disable-asm --disable-doc --disable-devices --disable-pthreads --disable-w32threads --disable-network --disable-hwaccels --disable-parsers --disable-bsfs --disable-debug --disable-protocols --disable-indevs --disable-outdevs --enable-protocol=file --enable-libvpx --enable-gpl --extra-libs='/Users/bgrinstead/Sites/videoconverter.js/build/ffmpeg/../dist/lib/libx264.a /Users/bgrinstead/Sites/videoconverter.js/build/ffmpeg/../dist/lib/libvpx.a'
     libavutil      52. 66.100 / 52. 66.100
     libavcodec     55. 52.102 / 55. 52.102
     libavformat    55. 33.100 / 55. 33.100
     libavdevice    55. 10.100 / 55. 10.100
     libavfilter     4.  2.100 /  4.  2.100
     libswscale      2.  5.102 /  2.  5.102
     libswresample   0. 18.100 /  0. 18.100
     libpostproc    52.  3.100 / 52.  3.100
    00091.MTS: No such file or directory
    Finished processing (took 140ms)
  • Converting GridFS file object to File object to upload via carriewave then process with ffmpeg in Rails

    20 juin 2014, par Ojash

    I have a GridFS file object

    Mongoid::GridFs::Fs::File _id: 53a277dc700ca7ac146f5797, length: 2237337, chunkSize: 261120, uploadDate: 2014-06-19 05:40:44 UTC, md5: "390968a8ef198f8537495468366f67b9", filename: "720p_5.MP4", contentType: "binary/octet-stream", aliases: nil, metadata: nil

    Now I need a Tempfile(or File will do) instance from that

    File:/tmp/fileupload20140620-4601-19via7k

    Since the file that I process is a video file i need to further process it with the ffmpeg to get different versions of the video file

    normally I could get a tmp file but the tempfile size seems to be quite low for a video file and the ffmpeg also gives error, may be the temp file created is not correct. I have no idea what did i do wrong.