Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (108)

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

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

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (7527)

  • How to pass encrypted command to ffmpeg from Windows 10 ?

    25 juillet 2019, par gaamaa

    While we pass commandline to ffmpeg and run it from Windows, others could see those commandline from taskmanager.
    Sometimes the url and password are secret which to be hidden from others.
    How to overcome this ?

    I don’t know ffmpeg coders thought about it and done something for this already.
    If I know C++ or relevant coding, I could add a custom decryption code block inside ffmpeg and use my encryption application to pass the encrypted command line.
    I don’t even know how to compile ffmpeg because its a nightmare even for professionals. (Why so complicated steps to simple compilation of an exe ?)

    Usual command line :

    ffmpeg -i MySource -codec:v h264_nvenc -s:v 1920x1080 -ac 2 -ar 48000 ... xyz ... -r 25 -f mpegts "udp://224.2.2.1:1234?pkt_size=1316"

    My expected commad line line :

    ffmpeg 8B8E108D96EBCA39415889F19E644D3EFA00D35941F383E28A5ED5  9D3A72CF8952C79AF2DA035949525C2D34ADDE5B9479217F5E739B0C515CE
    20A1AE16120E22616
  • MAINTAINERS : Add myself as maintainer for dxva2 and Windows/MSVC

    1er août 2015, par Hendrik Leppkes
    MAINTAINERS : Add myself as maintainer for dxva2 and Windows/MSVC
    
    • [DH] MAINTAINERS
  • configure : Remove carriage return ('\r') in Windows CC_IDENT

    31 janvier 2018, par Xiaohan Wang
    configure : Remove carriage return ('\r') in Windows CC_IDENT
    

    Currently the Windows CC_IDENT is ended with '\r\n'. "head -n1" will not
    remove the '\r' and this is causing building error in Chromium.

    This CL adds "tr -d '\r'" to remove '\r' in the CC_IDENT string. Since in
    most cases '\r' only appears at the end of a string/line, this should
    work in most cases.

    See example :

    printf "hello\r\nworld\r\n" | head -n1 | hd
    00000000 68 65 6c 6c 6f 0d 0a |hello..|

    printf "hello\r\nworld\r\n" | head -n1 | tr -d '\r' | hd
    00000000 68 65 6c 6c 6f 0a |hello.|

    Also note a similar previous change at :
    https://lists.ffmpeg.org/pipermail/ffmpeg-cvslog/2013-October/069950.html

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] configure