Recherche avancée

Médias (91)

Autres articles (48)

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

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (6835)

  • vulkan_decode : support multiple image views

    21 février, par Lynne
    vulkan_decode : support multiple image views
    

    Enables non-monochrome video decoding using all our existing functions
    in the context of an SDR decoder.

    • [DH] libavcodec/vulkan_av1.c
    • [DH] libavcodec/vulkan_decode.c
    • [DH] libavcodec/vulkan_decode.h
    • [DH] libavcodec/vulkan_h264.c
    • [DH] libavcodec/vulkan_hevc.c
  • Revision 101691 : Le précédent commit autorisait à saisir les valeurs min/max d’un nombre ...

    13 janvier 2017, par maieul@… — Log

    Le précédent commit autorisait à saisir les valeurs min/max d’un nombre
    décimal en mettant une virgule plutôt qu’un point.
    Il faut donc qu’on puisse tester à partir de ces valeurs avec virgule…

  • How do I write a batch file that opens a msys shell and then run commands in the shell ?

    19 septembre 2024, par cxu

    I'm trying to automate the process of building ffmpeg on Windows 10. I'm following the guide here : https://trac.ffmpeg.org/wiki/CompilationGuide/MSVC

    



    Everything works fine when I do it manually, however I want to write a batch file that I can run to go through the entire process automatically.

    



    Building requires me to set up the Visual Studio environment and the MSYS environment. This is where I'm having trouble, since running the MSYS environment opens up a new shell. I want to pass the configure/make/make install commands to the MSYS shell after it is opened.

    



    I've tried the solution here : How to open a new shell in cmd,then run script in a new shell ?

    



    The problem they had looks similar to mine, but the solutions posted there didn't work for me.

    



    Here is the bat file currently :

    



    call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\amd64\vcvars64.bat"
call "C:\workspace\windows\mingw-get\msys\1.0\msys.bat" start cmd.exe /k bscript
pause


    



    and bscript :

    



    ./configure --enable-shared --toolchain=msvc --arch=amd64
make
make install


    



    I've tried all sorts of variations like :

    



    call "C:\workspace\windows\mingw-get\msys\1.0\msys.bat" /k bscript
call "C:\workspace\windows\mingw-get\msys\1.0\msys.bat" bscript
start "C:\workspace\windows\mingw-get\msys\1.0\msys.bat" /k bscript
start "C:\workspace\windows\mingw-get\msys\1.0\msys.bat" bscript


    



    And I've also tried leaving the bscript code in the original batch file.

    



    The configure/make commands will either run in the original cmd window, a new cmd window or wont run at all.

    



    Is there a way to pass commands to the MSYS shell like that ?