VideoHelp Forum




+ Reply to Thread
Page 4 of 4
FirstFirst ... 2 3 4
Results 91 to 95 of 95
  1. cheto mal duhaldedaftpunk's Avatar
    Join Date
    Aug 2024
    Location
    Argenchina
    Search Comp PM
    Originally Posted by manolito View Post
    Whatever, thank you again for taking care of us FFmpeg retro users, much appreciated...
    Ma' right ya there. He, THE MAN, the one & only: he did it again. Cheto mal... I mean, in english: OUTSTANDING. One more time, thank you auto, or should I say thank you dacti?; whatever¹, thanks!


    𝕱𝖗𝖔𝖒 𝖙𝖍𝖊 𝖉𝖊𝖕𝖙𝖍𝖘 𝖔𝖋 𝖙𝖍𝖊 𝕾𝖊𝖛𝖊𝖓 𝕽𝖊𝖘𝖎𝖘𝖙𝖆𝖓𝖈𝖊


    ¹ I also wanted to finish my msg with a whatever
    Quote Quote  
  2. Member
    Join Date
    Feb 2004
    Location
    United States
    Search Comp PM
    Originally Posted by manolito View Post
    Since this is a new major FFmpeg release I looked for some significant changes for this new version at the FFmpeg site, but I gave up. Could you autline some important improvements of this new major version compared to the latest 7.xx versions?
    The changelog shows the main differences since 7.1 but they may not seem very significant if you were using the development build in post #33
    as you already had many of those changes. Of course with any new builds I have updated all the included libraries which means bug fixes
    and general improvements. This being a release build also means the api is stable and a lot of deprecated code was removed so the libraries
    included all use the same stable base.
    PB
    Quote Quote  
  3. Member manolito's Avatar
    Join Date
    Jun 2009
    Location
    Germany
    Search Comp PM
    Thanks a lot for the explanation...
    Quote Quote  
  4. Originally Posted by autodidact View Post
    FFmpeg 8.0 for Windows 7.
    Thank You Very Much!

    Btw - this what i use to verify changes between builds - i use WinMerge ( https://winmerge.org/ ) to compare result with older builds (yes, this is something else than changelog but it allow to keep more or less functional history).

    Code:
    @rem
    @echo off
    @echo --------------- > ff_help_full.txt
    @echo ffmpeg version >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @ffmpeg.exe -hide_banner -version >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo ffmpeg -buildconf >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @ffmpeg.exe -hide_banner -buildconf >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo * >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo ffmpeg -pix_fmts >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @ffmpeg.exe -hide_banner -pix_fmts >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo * >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo ffmpeg -sample_fmts >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @ffmpeg.exe -hide_banner -sample_fmts >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo * >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo ffmpeg -filters >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @ffmpeg.exe -hide_banner -filters >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo * >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo ffmpeg -formats >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @ffmpeg.exe -hide_banner -formats >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo * >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo ffmpeg -codecs >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @ffmpeg.exe -hide_banner -codecs >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo * >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo ffmpeg -decoders >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @ffmpeg.exe -hide_banner -decoders >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo * >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo ffmpeg -encoders >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @ffmpeg.exe -hide_banner -encoders >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo ffmpeg -bsfs >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @ffmpeg.exe -hide_banner -bsfs >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo * >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo ffmpeg -devices >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @ffmpeg.exe -hide_banner -devices >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo * >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo ffmpeg -sources device >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @ffmpeg.exe -hide_banner -sources device >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo * >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo ffmpeg -sinks device >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @ffmpeg.exe -hide_banner -sinks device >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo * >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo ffmpeg -hwaccels >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @ffmpeg.exe -hide_banner -hwaccels >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo * >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo ffmpeg -protocols >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @ffmpeg.exe -hide_banner -protocols >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo * >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo ffmpeg -layouts >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @ffmpeg.exe -hide_banner -layouts >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo * >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo ffmpeg full help >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @ffmpeg.exe -hide_banner -h full >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo * >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo ffmpeg -colors >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @ffmpeg.exe -hide_banner -colors >> ff_help_full.txt
    @echo --------------- >> ff_help_full.txt
    @echo * EOH * >> ff_help_full.txt
    
    @timeout 30
    
    @rem ffmpeg -version > ff_version.txt
    @rem ffmpeg -buildconf > ff_buildconf.txt
    @rem ffmpeg -formats > ff_formats.txt
    @rem ffmpeg -codecs >  ff_codecs.txt
    @rem ffmpeg -decoders >  ff_decoders.txt
    @rem ffmpeg -encoders >  ff_encoders.txt
    @rem ffmpeg -bsfs >  ff_bsfs.txt
    @rem ffmpeg -protocols > ff_protocols.txt
    @rem ffmpeg -filters > ff_filters.txt
    @rem ffmpeg -pix_fmts >  ff_pixelformats.txt
    @rem ffmpeg -layouts > ff_layouts.txt
    @rem ffmpeg -sample_fmts > ff_audiosampleformats.txt
    @rem ffmpeg -colors >  ff_colornames.txt
    @rem ffmpeg -h full > ff_help_full.txt
    Last edited by pandy; 25th Aug 2025 at 12:45.
    Quote Quote  
  5. I wanted to add my thanks to autodidact as well for his work providing these ffmpeg versions.
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!