mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 00:24:14 +01:00
FFMpeg: add binaries
This commit is contained in:
parent
9d0a52e857
commit
b52fbdf53d
41 changed files with 962 additions and 0 deletions
242
FFMpegCore/FFMPEG/bin/presets/ffprobe.xsd
Normal file
242
FFMpegCore/FFMPEG/bin/presets/ffprobe.xsd
Normal file
|
@ -0,0 +1,242 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
|
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
||||||
|
targetNamespace="http://www.ffmpeg.org/schema/ffprobe"
|
||||||
|
xmlns:ffprobe="http://www.ffmpeg.org/schema/ffprobe">
|
||||||
|
|
||||||
|
<xsd:element name="ffprobe" type="ffprobe:ffprobeType"/>
|
||||||
|
|
||||||
|
<xsd:complexType name="ffprobeType">
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="packets" type="ffprobe:packetsType" minOccurs="0" maxOccurs="1" />
|
||||||
|
<xsd:element name="frames" type="ffprobe:framesType" minOccurs="0" maxOccurs="1" />
|
||||||
|
<xsd:element name="streams" type="ffprobe:streamsType" minOccurs="0" maxOccurs="1" />
|
||||||
|
<xsd:element name="programs" type="ffprobe:programsType" minOccurs="0" maxOccurs="1" />
|
||||||
|
<xsd:element name="chapters" type="ffprobe:chaptersType" minOccurs="0" maxOccurs="1" />
|
||||||
|
<xsd:element name="format" type="ffprobe:formatType" minOccurs="0" maxOccurs="1" />
|
||||||
|
<xsd:element name="error" type="ffprobe:errorType" minOccurs="0" maxOccurs="1" />
|
||||||
|
<xsd:element name="program_version" type="ffprobe:programVersionType" minOccurs="0" maxOccurs="1" />
|
||||||
|
<xsd:element name="library_versions" type="ffprobe:libraryVersionsType" minOccurs="0" maxOccurs="1" />
|
||||||
|
</xsd:sequence>
|
||||||
|
</xsd:complexType>
|
||||||
|
|
||||||
|
<xsd:complexType name="packetsType">
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="packet" type="ffprobe:packetType" minOccurs="0" maxOccurs="unbounded"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
</xsd:complexType>
|
||||||
|
|
||||||
|
<xsd:complexType name="framesType">
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="frame" type="ffprobe:frameType" minOccurs="0" maxOccurs="unbounded"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
</xsd:complexType>
|
||||||
|
|
||||||
|
<xsd:complexType name="packetType">
|
||||||
|
<xsd:attribute name="codec_type" type="xsd:string" use="required" />
|
||||||
|
<xsd:attribute name="stream_index" type="xsd:int" use="required" />
|
||||||
|
<xsd:attribute name="pts" type="xsd:long" />
|
||||||
|
<xsd:attribute name="pts_time" type="xsd:float" />
|
||||||
|
<xsd:attribute name="dts" type="xsd:long" />
|
||||||
|
<xsd:attribute name="dts_time" type="xsd:float" />
|
||||||
|
<xsd:attribute name="duration" type="xsd:long" />
|
||||||
|
<xsd:attribute name="duration_time" type="xsd:float" />
|
||||||
|
<xsd:attribute name="convergence_duration" type="xsd:long" />
|
||||||
|
<xsd:attribute name="convergence_duration_time" type="xsd:float" />
|
||||||
|
<xsd:attribute name="size" type="xsd:long" use="required" />
|
||||||
|
<xsd:attribute name="pos" type="xsd:long" />
|
||||||
|
<xsd:attribute name="flags" type="xsd:string" use="required" />
|
||||||
|
<xsd:attribute name="data" type="xsd:string" />
|
||||||
|
</xsd:complexType>
|
||||||
|
|
||||||
|
<xsd:complexType name="frameType">
|
||||||
|
<xsd:attribute name="media_type" type="xsd:string" use="required"/>
|
||||||
|
<xsd:attribute name="key_frame" type="xsd:int" use="required"/>
|
||||||
|
<xsd:attribute name="pts" type="xsd:long" />
|
||||||
|
<xsd:attribute name="pts_time" type="xsd:float"/>
|
||||||
|
<xsd:attribute name="pkt_pts" type="xsd:long" />
|
||||||
|
<xsd:attribute name="pkt_pts_time" type="xsd:float"/>
|
||||||
|
<xsd:attribute name="pkt_dts" type="xsd:long" />
|
||||||
|
<xsd:attribute name="pkt_dts_time" type="xsd:float"/>
|
||||||
|
<xsd:attribute name="pkt_duration" type="xsd:long" />
|
||||||
|
<xsd:attribute name="pkt_duration_time" type="xsd:float"/>
|
||||||
|
<xsd:attribute name="pkt_pos" type="xsd:long" />
|
||||||
|
<xsd:attribute name="pkt_size" type="xsd:int" />
|
||||||
|
|
||||||
|
<!-- audio attributes -->
|
||||||
|
<xsd:attribute name="sample_fmt" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="nb_samples" type="xsd:long" />
|
||||||
|
<xsd:attribute name="channels" type="xsd:int" />
|
||||||
|
<xsd:attribute name="channel_layout" type="xsd:string"/>
|
||||||
|
|
||||||
|
<!-- video attributes -->
|
||||||
|
<xsd:attribute name="width" type="xsd:long" />
|
||||||
|
<xsd:attribute name="height" type="xsd:long" />
|
||||||
|
<xsd:attribute name="pix_fmt" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="sample_aspect_ratio" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="pict_type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="coded_picture_number" type="xsd:long" />
|
||||||
|
<xsd:attribute name="display_picture_number" type="xsd:long" />
|
||||||
|
<xsd:attribute name="interlaced_frame" type="xsd:int" />
|
||||||
|
<xsd:attribute name="top_field_first" type="xsd:int" />
|
||||||
|
<xsd:attribute name="repeat_pict" type="xsd:int" />
|
||||||
|
</xsd:complexType>
|
||||||
|
|
||||||
|
<xsd:complexType name="streamsType">
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="stream" type="ffprobe:streamType" minOccurs="0" maxOccurs="unbounded"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
</xsd:complexType>
|
||||||
|
|
||||||
|
<xsd:complexType name="programsType">
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="program" type="ffprobe:programType" minOccurs="0" maxOccurs="unbounded"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
</xsd:complexType>
|
||||||
|
|
||||||
|
<xsd:complexType name="streamDispositionType">
|
||||||
|
<xsd:attribute name="default" type="xsd:int" use="required" />
|
||||||
|
<xsd:attribute name="dub" type="xsd:int" use="required" />
|
||||||
|
<xsd:attribute name="original" type="xsd:int" use="required" />
|
||||||
|
<xsd:attribute name="comment" type="xsd:int" use="required" />
|
||||||
|
<xsd:attribute name="lyrics" type="xsd:int" use="required" />
|
||||||
|
<xsd:attribute name="karaoke" type="xsd:int" use="required" />
|
||||||
|
<xsd:attribute name="forced" type="xsd:int" use="required" />
|
||||||
|
<xsd:attribute name="hearing_impaired" type="xsd:int" use="required" />
|
||||||
|
<xsd:attribute name="visual_impaired" type="xsd:int" use="required" />
|
||||||
|
<xsd:attribute name="clean_effects" type="xsd:int" use="required" />
|
||||||
|
<xsd:attribute name="attached_pic" type="xsd:int" use="required" />
|
||||||
|
</xsd:complexType>
|
||||||
|
|
||||||
|
<xsd:complexType name="streamType">
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="disposition" type="ffprobe:streamDispositionType" minOccurs="0" maxOccurs="1"/>
|
||||||
|
<xsd:element name="tag" type="ffprobe:tagType" minOccurs="0" maxOccurs="unbounded"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
|
||||||
|
<xsd:attribute name="index" type="xsd:int" use="required"/>
|
||||||
|
<xsd:attribute name="codec_name" type="xsd:string" />
|
||||||
|
<xsd:attribute name="codec_long_name" type="xsd:string" />
|
||||||
|
<xsd:attribute name="profile" type="xsd:string" />
|
||||||
|
<xsd:attribute name="codec_type" type="xsd:string" />
|
||||||
|
<xsd:attribute name="codec_time_base" type="xsd:string" use="required"/>
|
||||||
|
<xsd:attribute name="codec_tag" type="xsd:string" use="required"/>
|
||||||
|
<xsd:attribute name="codec_tag_string" type="xsd:string" use="required"/>
|
||||||
|
<xsd:attribute name="extradata" type="xsd:string" />
|
||||||
|
|
||||||
|
<!-- video attributes -->
|
||||||
|
<xsd:attribute name="width" type="xsd:int"/>
|
||||||
|
<xsd:attribute name="height" type="xsd:int"/>
|
||||||
|
<xsd:attribute name="has_b_frames" type="xsd:int"/>
|
||||||
|
<xsd:attribute name="sample_aspect_ratio" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="display_aspect_ratio" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="pix_fmt" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="level" type="xsd:int"/>
|
||||||
|
<xsd:attribute name="timecode" type="xsd:string"/>
|
||||||
|
|
||||||
|
<!-- audio attributes -->
|
||||||
|
<xsd:attribute name="sample_fmt" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="sample_rate" type="xsd:int"/>
|
||||||
|
<xsd:attribute name="channels" type="xsd:int"/>
|
||||||
|
<xsd:attribute name="bits_per_sample" type="xsd:int"/>
|
||||||
|
|
||||||
|
<xsd:attribute name="id" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="r_frame_rate" type="xsd:string" use="required"/>
|
||||||
|
<xsd:attribute name="avg_frame_rate" type="xsd:string" use="required"/>
|
||||||
|
<xsd:attribute name="time_base" type="xsd:string" use="required"/>
|
||||||
|
<xsd:attribute name="start_pts" type="xsd:long"/>
|
||||||
|
<xsd:attribute name="start_time" type="xsd:float"/>
|
||||||
|
<xsd:attribute name="duration_ts" type="xsd:long"/>
|
||||||
|
<xsd:attribute name="duration" type="xsd:float"/>
|
||||||
|
<xsd:attribute name="bit_rate" type="xsd:int"/>
|
||||||
|
<xsd:attribute name="nb_frames" type="xsd:int"/>
|
||||||
|
<xsd:attribute name="nb_read_frames" type="xsd:int"/>
|
||||||
|
<xsd:attribute name="nb_read_packets" type="xsd:int"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
|
||||||
|
<xsd:complexType name="programType">
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="tag" type="ffprobe:tagType" minOccurs="0" maxOccurs="unbounded"/>
|
||||||
|
<xsd:element name="streams" type="ffprobe:streamsType" minOccurs="0" maxOccurs="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
|
||||||
|
<xsd:attribute name="program_id" type="xsd:int" use="required"/>
|
||||||
|
<xsd:attribute name="program_num" type="xsd:int" use="required"/>
|
||||||
|
<xsd:attribute name="nb_streams" type="xsd:int" use="required"/>
|
||||||
|
<xsd:attribute name="start_time" type="xsd:float"/>
|
||||||
|
<xsd:attribute name="start_pts" type="xsd:long"/>
|
||||||
|
<xsd:attribute name="end_time" type="xsd:float"/>
|
||||||
|
<xsd:attribute name="end_pts" type="xsd:long"/>
|
||||||
|
<xsd:attribute name="pmt_pid" type="xsd:int" use="required"/>
|
||||||
|
<xsd:attribute name="pcr_pid" type="xsd:int" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
|
||||||
|
<xsd:complexType name="formatType">
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="tag" type="ffprobe:tagType" minOccurs="0" maxOccurs="unbounded"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
|
||||||
|
<xsd:attribute name="filename" type="xsd:string" use="required"/>
|
||||||
|
<xsd:attribute name="nb_streams" type="xsd:int" use="required"/>
|
||||||
|
<xsd:attribute name="format_name" type="xsd:string" use="required"/>
|
||||||
|
<xsd:attribute name="format_long_name" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="start_time" type="xsd:float"/>
|
||||||
|
<xsd:attribute name="duration" type="xsd:float"/>
|
||||||
|
<xsd:attribute name="size" type="xsd:long"/>
|
||||||
|
<xsd:attribute name="bit_rate" type="xsd:long"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
|
||||||
|
<xsd:complexType name="tagType">
|
||||||
|
<xsd:attribute name="key" type="xsd:string" use="required"/>
|
||||||
|
<xsd:attribute name="value" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
|
||||||
|
<xsd:complexType name="errorType">
|
||||||
|
<xsd:attribute name="code" type="xsd:int" use="required"/>
|
||||||
|
<xsd:attribute name="string" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
|
||||||
|
<xsd:complexType name="programVersionType">
|
||||||
|
<xsd:attribute name="version" type="xsd:string" use="required"/>
|
||||||
|
<xsd:attribute name="copyright" type="xsd:string" use="required"/>
|
||||||
|
<xsd:attribute name="build_date" type="xsd:string" use="required"/>
|
||||||
|
<xsd:attribute name="build_time" type="xsd:string" use="required"/>
|
||||||
|
<xsd:attribute name="compiler_type" type="xsd:string" use="required"/>
|
||||||
|
<xsd:attribute name="compiler_version" type="xsd:string" use="required"/>
|
||||||
|
<xsd:attribute name="configuration" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
|
||||||
|
<xsd:complexType name="chaptersType">
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="chapter" type="ffprobe:chapterType" minOccurs="0" maxOccurs="unbounded"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
</xsd:complexType>
|
||||||
|
|
||||||
|
<xsd:complexType name="chapterType">
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="tag" type="ffprobe:tagType" minOccurs="0" maxOccurs="unbounded"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
|
||||||
|
<xsd:attribute name="id" type="xsd:int" use="required"/>
|
||||||
|
<xsd:attribute name="time_base" type="xsd:string" use="required"/>
|
||||||
|
<xsd:attribute name="start" type="xsd:int" use="required"/>
|
||||||
|
<xsd:attribute name="start_time" type="xsd:float"/>
|
||||||
|
<xsd:attribute name="end" type="xsd:int" use="required"/>
|
||||||
|
<xsd:attribute name="end_time" type="xsd:float" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
|
||||||
|
<xsd:complexType name="libraryVersionType">
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
<xsd:attribute name="major" type="xsd:int" use="required"/>
|
||||||
|
<xsd:attribute name="minor" type="xsd:int" use="required"/>
|
||||||
|
<xsd:attribute name="micro" type="xsd:int" use="required"/>
|
||||||
|
<xsd:attribute name="version" type="xsd:int" use="required"/>
|
||||||
|
<xsd:attribute name="ident" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
|
||||||
|
<xsd:complexType name="libraryVersionsType">
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="library_version" type="ffprobe:libraryVersionType" minOccurs="0" maxOccurs="unbounded"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:schema>
|
19
FFMpegCore/FFMPEG/bin/presets/libvpx-1080p.ffpreset
Normal file
19
FFMpegCore/FFMPEG/bin/presets/libvpx-1080p.ffpreset
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
vcodec=libvpx
|
||||||
|
|
||||||
|
g=120
|
||||||
|
lag-in-frames=16
|
||||||
|
deadline=good
|
||||||
|
cpu-used=0
|
||||||
|
vprofile=1
|
||||||
|
qmax=51
|
||||||
|
qmin=11
|
||||||
|
slices=4
|
||||||
|
b=2M
|
||||||
|
|
||||||
|
#ignored unless using -pass 2
|
||||||
|
maxrate=24M
|
||||||
|
minrate=100k
|
||||||
|
auto-alt-ref=1
|
||||||
|
arnr-maxframes=7
|
||||||
|
arnr-strength=5
|
||||||
|
arnr-type=centered
|
19
FFMpegCore/FFMPEG/bin/presets/libvpx-1080p50_60.ffpreset
Normal file
19
FFMpegCore/FFMPEG/bin/presets/libvpx-1080p50_60.ffpreset
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
vcodec=libvpx
|
||||||
|
|
||||||
|
g=120
|
||||||
|
lag-in-frames=25
|
||||||
|
deadline=good
|
||||||
|
cpu-used=0
|
||||||
|
vprofile=1
|
||||||
|
qmax=51
|
||||||
|
qmin=11
|
||||||
|
slices=4
|
||||||
|
b=2M
|
||||||
|
|
||||||
|
#ignored unless using -pass 2
|
||||||
|
maxrate=24M
|
||||||
|
minrate=100k
|
||||||
|
auto-alt-ref=1
|
||||||
|
arnr-maxframes=7
|
||||||
|
arnr-strength=5
|
||||||
|
arnr-type=centered
|
18
FFMpegCore/FFMPEG/bin/presets/libvpx-360p.ffpreset
Normal file
18
FFMpegCore/FFMPEG/bin/presets/libvpx-360p.ffpreset
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
vcodec=libvpx
|
||||||
|
|
||||||
|
g=120
|
||||||
|
lag-in-frames=16
|
||||||
|
deadline=good
|
||||||
|
cpu-used=0
|
||||||
|
vprofile=0
|
||||||
|
qmax=63
|
||||||
|
qmin=0
|
||||||
|
b=768k
|
||||||
|
|
||||||
|
#ignored unless using -pass 2
|
||||||
|
maxrate=1.5M
|
||||||
|
minrate=40k
|
||||||
|
auto-alt-ref=1
|
||||||
|
arnr-maxframes=7
|
||||||
|
arnr-strength=5
|
||||||
|
arnr-type=centered
|
19
FFMpegCore/FFMPEG/bin/presets/libvpx-720p.ffpreset
Normal file
19
FFMpegCore/FFMPEG/bin/presets/libvpx-720p.ffpreset
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
vcodec=libvpx
|
||||||
|
|
||||||
|
g=120
|
||||||
|
lag-in-frames=16
|
||||||
|
deadline=good
|
||||||
|
cpu-used=0
|
||||||
|
vprofile=0
|
||||||
|
qmax=51
|
||||||
|
qmin=11
|
||||||
|
slices=4
|
||||||
|
b=2M
|
||||||
|
|
||||||
|
#ignored unless using -pass 2
|
||||||
|
maxrate=24M
|
||||||
|
minrate=100k
|
||||||
|
auto-alt-ref=1
|
||||||
|
arnr-maxframes=7
|
||||||
|
arnr-strength=5
|
||||||
|
arnr-type=centered
|
19
FFMpegCore/FFMPEG/bin/presets/libvpx-720p50_60.ffpreset
Normal file
19
FFMpegCore/FFMPEG/bin/presets/libvpx-720p50_60.ffpreset
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
vcodec=libvpx
|
||||||
|
|
||||||
|
g=120
|
||||||
|
lag-in-frames=25
|
||||||
|
deadline=good
|
||||||
|
cpu-used=0
|
||||||
|
vprofile=0
|
||||||
|
qmax=51
|
||||||
|
qmin=11
|
||||||
|
slices=4
|
||||||
|
b=2M
|
||||||
|
|
||||||
|
#ignored unless using -pass 2
|
||||||
|
maxrate=24M
|
||||||
|
minrate=100k
|
||||||
|
auto-alt-ref=1
|
||||||
|
arnr-maxframes=7
|
||||||
|
arnr-strength=5
|
||||||
|
arnr-type=centered
|
24
FFMpegCore/FFMPEG/bin/presets/libvpx-ultrafast.ffpreset
Normal file
24
FFMpegCore/FFMPEG/bin/presets/libvpx-ultrafast.ffpreset
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
coder=0
|
||||||
|
flags=-loop
|
||||||
|
cmp=+chroma
|
||||||
|
partitions=-parti8x8-parti4x4-partp8x8-partb8x8
|
||||||
|
me_method=dia
|
||||||
|
subq=0
|
||||||
|
me_range=16
|
||||||
|
g=250
|
||||||
|
keyint_min=25
|
||||||
|
sc_threshold=0
|
||||||
|
i_qfactor=0.71
|
||||||
|
b_strategy=0
|
||||||
|
qcomp=0.6
|
||||||
|
qmin=10
|
||||||
|
qmax=51
|
||||||
|
qdiff=4
|
||||||
|
bf=0
|
||||||
|
refs=1
|
||||||
|
directpred=1
|
||||||
|
trellis=0
|
||||||
|
flags2=-bpyramid-mixed_refs-wpred-dct8x8+fastpskip-mbtree
|
||||||
|
wpredp=0
|
||||||
|
aq_mode=0
|
||||||
|
rc_lookahead=0
|
4
FFMpegCore/FFMPEG/bin/presets/libx264-baseline.ffpreset
Normal file
4
FFMpegCore/FFMPEG/bin/presets/libx264-baseline.ffpreset
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
coder=0
|
||||||
|
bf=0
|
||||||
|
flags2=-wpred-dct8x8
|
||||||
|
wpredp=0
|
23
FFMpegCore/FFMPEG/bin/presets/libx264-fast.ffpreset
Normal file
23
FFMpegCore/FFMPEG/bin/presets/libx264-fast.ffpreset
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
coder=1
|
||||||
|
flags=+loop
|
||||||
|
cmp=+chroma
|
||||||
|
partitions=+parti8x8+parti4x4+partp8x8+partb8x8
|
||||||
|
me_method=hex
|
||||||
|
subq=6
|
||||||
|
me_range=16
|
||||||
|
g=250
|
||||||
|
keyint_min=25
|
||||||
|
sc_threshold=40
|
||||||
|
i_qfactor=0.71
|
||||||
|
b_strategy=1
|
||||||
|
qcomp=0.6
|
||||||
|
qmin=10
|
||||||
|
qmax=51
|
||||||
|
qdiff=4
|
||||||
|
bf=3
|
||||||
|
refs=2
|
||||||
|
directpred=1
|
||||||
|
trellis=1
|
||||||
|
flags2=+bpyramid+mixed_refs+wpred+dct8x8+fastpskip
|
||||||
|
wpredp=2
|
||||||
|
rc_lookahead=30
|
|
@ -0,0 +1,23 @@
|
||||||
|
coder=1
|
||||||
|
flags=+loop
|
||||||
|
cmp=+chroma
|
||||||
|
partitions=-parti8x8-parti4x4-partp8x8-partb8x8
|
||||||
|
me_method=dia
|
||||||
|
subq=2
|
||||||
|
me_range=16
|
||||||
|
g=250
|
||||||
|
keyint_min=25
|
||||||
|
sc_threshold=40
|
||||||
|
i_qfactor=0.71
|
||||||
|
b_strategy=1
|
||||||
|
qcomp=0.6
|
||||||
|
qmin=10
|
||||||
|
qmax=51
|
||||||
|
qdiff=4
|
||||||
|
bf=3
|
||||||
|
refs=1
|
||||||
|
directpred=1
|
||||||
|
trellis=0
|
||||||
|
flags2=+bpyramid-mixed_refs+wpred-dct8x8+fastpskip
|
||||||
|
wpredp=2
|
||||||
|
rc_lookahead=30
|
23
FFMpegCore/FFMPEG/bin/presets/libx264-faster.ffpreset
Normal file
23
FFMpegCore/FFMPEG/bin/presets/libx264-faster.ffpreset
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
coder=1
|
||||||
|
flags=+loop
|
||||||
|
cmp=+chroma
|
||||||
|
partitions=+parti8x8+parti4x4+partp8x8+partb8x8
|
||||||
|
me_method=hex
|
||||||
|
subq=4
|
||||||
|
me_range=16
|
||||||
|
g=250
|
||||||
|
keyint_min=25
|
||||||
|
sc_threshold=40
|
||||||
|
i_qfactor=0.71
|
||||||
|
b_strategy=1
|
||||||
|
qcomp=0.6
|
||||||
|
qmin=10
|
||||||
|
qmax=51
|
||||||
|
qdiff=4
|
||||||
|
bf=3
|
||||||
|
refs=2
|
||||||
|
directpred=1
|
||||||
|
trellis=1
|
||||||
|
flags2=+bpyramid-mixed_refs+wpred+dct8x8+fastpskip
|
||||||
|
wpredp=1
|
||||||
|
rc_lookahead=20
|
|
@ -0,0 +1,23 @@
|
||||||
|
coder=1
|
||||||
|
flags=+loop
|
||||||
|
cmp=+chroma
|
||||||
|
partitions=-parti8x8-parti4x4-partp8x8-partb8x8
|
||||||
|
me_method=dia
|
||||||
|
subq=2
|
||||||
|
me_range=16
|
||||||
|
g=250
|
||||||
|
keyint_min=25
|
||||||
|
sc_threshold=40
|
||||||
|
i_qfactor=0.71
|
||||||
|
b_strategy=1
|
||||||
|
qcomp=0.6
|
||||||
|
qmin=10
|
||||||
|
qmax=51
|
||||||
|
qdiff=4
|
||||||
|
bf=3
|
||||||
|
refs=1
|
||||||
|
directpred=1
|
||||||
|
trellis=0
|
||||||
|
flags2=+bpyramid-mixed_refs+wpred-dct8x8+fastpskip
|
||||||
|
wpredp=1
|
||||||
|
rc_lookahead=20
|
7
FFMpegCore/FFMPEG/bin/presets/libx264-ipod320.ffpreset
Normal file
7
FFMpegCore/FFMPEG/bin/presets/libx264-ipod320.ffpreset
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
coder=0
|
||||||
|
bf=0
|
||||||
|
flags2=-wpred-dct8x8
|
||||||
|
level=13
|
||||||
|
maxrate=768000
|
||||||
|
bufsize=3000000
|
||||||
|
wpredp=0
|
8
FFMpegCore/FFMPEG/bin/presets/libx264-ipod640.ffpreset
Normal file
8
FFMpegCore/FFMPEG/bin/presets/libx264-ipod640.ffpreset
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
coder=0
|
||||||
|
bf=0
|
||||||
|
refs=1
|
||||||
|
flags2=-wpred-dct8x8
|
||||||
|
level=30
|
||||||
|
maxrate=10000000
|
||||||
|
bufsize=10000000
|
||||||
|
wpredp=0
|
20
FFMpegCore/FFMPEG/bin/presets/libx264-lossless_fast.ffpreset
Normal file
20
FFMpegCore/FFMPEG/bin/presets/libx264-lossless_fast.ffpreset
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
coder=0
|
||||||
|
flags=+loop
|
||||||
|
cmp=+chroma
|
||||||
|
partitions=-parti8x8+parti4x4+partp8x8-partp4x4-partb8x8
|
||||||
|
me_method=hex
|
||||||
|
subq=3
|
||||||
|
me_range=16
|
||||||
|
g=250
|
||||||
|
keyint_min=25
|
||||||
|
sc_threshold=40
|
||||||
|
i_qfactor=0.71
|
||||||
|
b_strategy=1
|
||||||
|
qcomp=0.6
|
||||||
|
qmin=10
|
||||||
|
qmax=51
|
||||||
|
qdiff=4
|
||||||
|
directpred=1
|
||||||
|
flags2=+fastpskip
|
||||||
|
cqp=0
|
||||||
|
wpredp=0
|
21
FFMpegCore/FFMPEG/bin/presets/libx264-lossless_max.ffpreset
Normal file
21
FFMpegCore/FFMPEG/bin/presets/libx264-lossless_max.ffpreset
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
coder=1
|
||||||
|
flags=+loop
|
||||||
|
cmp=+chroma
|
||||||
|
partitions=+parti8x8+parti4x4+partp8x8+partp4x4-partb8x8
|
||||||
|
me_method=esa
|
||||||
|
subq=8
|
||||||
|
me_range=16
|
||||||
|
g=250
|
||||||
|
keyint_min=25
|
||||||
|
sc_threshold=40
|
||||||
|
i_qfactor=0.71
|
||||||
|
b_strategy=1
|
||||||
|
qcomp=0.6
|
||||||
|
qmin=10
|
||||||
|
qmax=51
|
||||||
|
qdiff=4
|
||||||
|
refs=16
|
||||||
|
directpred=1
|
||||||
|
flags2=+mixed_refs+dct8x8+fastpskip
|
||||||
|
cqp=0
|
||||||
|
wpredp=2
|
|
@ -0,0 +1,20 @@
|
||||||
|
coder=1
|
||||||
|
flags=+loop
|
||||||
|
cmp=+chroma
|
||||||
|
partitions=-parti8x8+parti4x4+partp8x8+partp4x4-partb8x8
|
||||||
|
me_method=hex
|
||||||
|
subq=5
|
||||||
|
me_range=16
|
||||||
|
g=250
|
||||||
|
keyint_min=25
|
||||||
|
sc_threshold=40
|
||||||
|
i_qfactor=0.71
|
||||||
|
b_strategy=1
|
||||||
|
qcomp=0.6
|
||||||
|
qmin=10
|
||||||
|
qmax=51
|
||||||
|
qdiff=4
|
||||||
|
directpred=1
|
||||||
|
flags2=+fastpskip
|
||||||
|
cqp=0
|
||||||
|
wpredp=2
|
21
FFMpegCore/FFMPEG/bin/presets/libx264-lossless_slow.ffpreset
Normal file
21
FFMpegCore/FFMPEG/bin/presets/libx264-lossless_slow.ffpreset
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
coder=1
|
||||||
|
flags=+loop
|
||||||
|
cmp=+chroma
|
||||||
|
partitions=+parti8x8+parti4x4+partp8x8+partp4x4-partb8x8
|
||||||
|
me_method=umh
|
||||||
|
subq=6
|
||||||
|
me_range=16
|
||||||
|
g=250
|
||||||
|
keyint_min=25
|
||||||
|
sc_threshold=40
|
||||||
|
i_qfactor=0.71
|
||||||
|
b_strategy=1
|
||||||
|
qcomp=0.6
|
||||||
|
qmin=10
|
||||||
|
qmax=51
|
||||||
|
qdiff=4
|
||||||
|
refs=2
|
||||||
|
directpred=1
|
||||||
|
flags2=+dct8x8+fastpskip
|
||||||
|
cqp=0
|
||||||
|
wpredp=2
|
|
@ -0,0 +1,21 @@
|
||||||
|
coder=1
|
||||||
|
flags=+loop
|
||||||
|
cmp=+chroma
|
||||||
|
partitions=+parti8x8+parti4x4+partp8x8+partp4x4-partb8x8
|
||||||
|
me_method=umh
|
||||||
|
subq=8
|
||||||
|
me_range=16
|
||||||
|
g=250
|
||||||
|
keyint_min=25
|
||||||
|
sc_threshold=40
|
||||||
|
i_qfactor=0.71
|
||||||
|
b_strategy=1
|
||||||
|
qcomp=0.6
|
||||||
|
qmin=10
|
||||||
|
qmax=51
|
||||||
|
qdiff=4
|
||||||
|
refs=4
|
||||||
|
directpred=1
|
||||||
|
flags2=+mixed_refs+dct8x8+fastpskip
|
||||||
|
cqp=0
|
||||||
|
wpredp=2
|
|
@ -0,0 +1,19 @@
|
||||||
|
coder=0
|
||||||
|
flags=+loop
|
||||||
|
cmp=+chroma
|
||||||
|
partitions=-parti8x8-parti4x4-partp8x8-partp4x4-partb8x8
|
||||||
|
me_method=dia
|
||||||
|
subq=0
|
||||||
|
me_range=16
|
||||||
|
g=250
|
||||||
|
keyint_min=25
|
||||||
|
sc_threshold=40
|
||||||
|
i_qfactor=0.71
|
||||||
|
b_strategy=1
|
||||||
|
qcomp=0.6
|
||||||
|
qmin=10
|
||||||
|
qmax=51
|
||||||
|
qdiff=4
|
||||||
|
directpred=1
|
||||||
|
flags2=+fastpskip
|
||||||
|
cqp=0
|
1
FFMpegCore/FFMPEG/bin/presets/libx264-main.ffpreset
Normal file
1
FFMpegCore/FFMPEG/bin/presets/libx264-main.ffpreset
Normal file
|
@ -0,0 +1 @@
|
||||||
|
flags2=-dct8x8
|
22
FFMpegCore/FFMPEG/bin/presets/libx264-medium.ffpreset
Normal file
22
FFMpegCore/FFMPEG/bin/presets/libx264-medium.ffpreset
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
coder=1
|
||||||
|
flags=+loop
|
||||||
|
cmp=+chroma
|
||||||
|
partitions=+parti8x8+parti4x4+partp8x8+partb8x8
|
||||||
|
me_method=hex
|
||||||
|
subq=7
|
||||||
|
me_range=16
|
||||||
|
g=250
|
||||||
|
keyint_min=25
|
||||||
|
sc_threshold=40
|
||||||
|
i_qfactor=0.71
|
||||||
|
b_strategy=1
|
||||||
|
qcomp=0.6
|
||||||
|
qmin=10
|
||||||
|
qmax=51
|
||||||
|
qdiff=4
|
||||||
|
bf=3
|
||||||
|
refs=3
|
||||||
|
directpred=1
|
||||||
|
trellis=1
|
||||||
|
flags2=+bpyramid+mixed_refs+wpred+dct8x8+fastpskip
|
||||||
|
wpredp=2
|
|
@ -0,0 +1,22 @@
|
||||||
|
coder=1
|
||||||
|
flags=+loop
|
||||||
|
cmp=+chroma
|
||||||
|
partitions=-parti8x8-parti4x4-partp8x8-partb8x8
|
||||||
|
me_method=dia
|
||||||
|
subq=2
|
||||||
|
me_range=16
|
||||||
|
g=250
|
||||||
|
keyint_min=25
|
||||||
|
sc_threshold=40
|
||||||
|
i_qfactor=0.71
|
||||||
|
b_strategy=1
|
||||||
|
qcomp=0.6
|
||||||
|
qmin=10
|
||||||
|
qmax=51
|
||||||
|
qdiff=4
|
||||||
|
bf=3
|
||||||
|
refs=1
|
||||||
|
directpred=1
|
||||||
|
trellis=0
|
||||||
|
flags2=+bpyramid-mixed_refs+wpred-dct8x8+fastpskip
|
||||||
|
wpredp=2
|
23
FFMpegCore/FFMPEG/bin/presets/libx264-placebo.ffpreset
Normal file
23
FFMpegCore/FFMPEG/bin/presets/libx264-placebo.ffpreset
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
coder=1
|
||||||
|
flags=+loop
|
||||||
|
cmp=+chroma
|
||||||
|
partitions=+parti8x8+parti4x4+partp8x8+partp4x4+partb8x8
|
||||||
|
me_method=tesa
|
||||||
|
subq=10
|
||||||
|
me_range=24
|
||||||
|
g=250
|
||||||
|
keyint_min=25
|
||||||
|
sc_threshold=40
|
||||||
|
i_qfactor=0.71
|
||||||
|
b_strategy=2
|
||||||
|
qcomp=0.6
|
||||||
|
qmin=10
|
||||||
|
qmax=51
|
||||||
|
qdiff=4
|
||||||
|
bf=16
|
||||||
|
refs=16
|
||||||
|
directpred=3
|
||||||
|
trellis=2
|
||||||
|
flags2=+bpyramid+mixed_refs+wpred+dct8x8-fastpskip
|
||||||
|
wpredp=2
|
||||||
|
rc_lookahead=60
|
|
@ -0,0 +1,23 @@
|
||||||
|
coder=1
|
||||||
|
flags=+loop
|
||||||
|
cmp=+chroma
|
||||||
|
partitions=+parti8x8+parti4x4+partp8x8+partp4x4+partb8x8
|
||||||
|
me_method=tesa
|
||||||
|
subq=10
|
||||||
|
me_range=24
|
||||||
|
g=250
|
||||||
|
keyint_min=25
|
||||||
|
sc_threshold=40
|
||||||
|
i_qfactor=0.71
|
||||||
|
b_strategy=2
|
||||||
|
qcomp=0.6
|
||||||
|
qmin=10
|
||||||
|
qmax=51
|
||||||
|
qdiff=4
|
||||||
|
bf=16
|
||||||
|
refs=16
|
||||||
|
directpred=3
|
||||||
|
trellis=2
|
||||||
|
flags2=+bpyramid+mixed_refs+wpred+dct8x8-fastpskip
|
||||||
|
wpredp=2
|
||||||
|
rc_lookahead=60
|
23
FFMpegCore/FFMPEG/bin/presets/libx264-slow.ffpreset
Normal file
23
FFMpegCore/FFMPEG/bin/presets/libx264-slow.ffpreset
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
coder=1
|
||||||
|
flags=+loop
|
||||||
|
cmp=+chroma
|
||||||
|
partitions=+parti8x8+parti4x4+partp8x8+partb8x8
|
||||||
|
me_method=umh
|
||||||
|
subq=8
|
||||||
|
me_range=16
|
||||||
|
g=250
|
||||||
|
keyint_min=25
|
||||||
|
sc_threshold=40
|
||||||
|
i_qfactor=0.71
|
||||||
|
b_strategy=2
|
||||||
|
qcomp=0.6
|
||||||
|
qmin=10
|
||||||
|
qmax=51
|
||||||
|
qdiff=4
|
||||||
|
bf=3
|
||||||
|
refs=5
|
||||||
|
directpred=3
|
||||||
|
trellis=1
|
||||||
|
flags2=+bpyramid+mixed_refs+wpred+dct8x8+fastpskip
|
||||||
|
wpredp=2
|
||||||
|
rc_lookahead=50
|
|
@ -0,0 +1,23 @@
|
||||||
|
coder=1
|
||||||
|
flags=+loop
|
||||||
|
cmp=+chroma
|
||||||
|
partitions=-parti8x8-parti4x4-partp8x8-partb8x8
|
||||||
|
me_method=dia
|
||||||
|
subq=2
|
||||||
|
me_range=16
|
||||||
|
g=250
|
||||||
|
keyint_min=25
|
||||||
|
sc_threshold=40
|
||||||
|
i_qfactor=0.71
|
||||||
|
b_strategy=2
|
||||||
|
qcomp=0.6
|
||||||
|
qmin=10
|
||||||
|
qmax=51
|
||||||
|
qdiff=4
|
||||||
|
bf=3
|
||||||
|
refs=1
|
||||||
|
directpred=3
|
||||||
|
trellis=0
|
||||||
|
flags2=+bpyramid-mixed_refs+wpred-dct8x8+fastpskip
|
||||||
|
wpredp=2
|
||||||
|
rc_lookahead=50
|
23
FFMpegCore/FFMPEG/bin/presets/libx264-slower.ffpreset
Normal file
23
FFMpegCore/FFMPEG/bin/presets/libx264-slower.ffpreset
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
coder=1
|
||||||
|
flags=+loop
|
||||||
|
cmp=+chroma
|
||||||
|
partitions=+parti8x8+parti4x4+partp8x8+partp4x4+partb8x8
|
||||||
|
me_method=umh
|
||||||
|
subq=9
|
||||||
|
me_range=16
|
||||||
|
g=250
|
||||||
|
keyint_min=25
|
||||||
|
sc_threshold=40
|
||||||
|
i_qfactor=0.71
|
||||||
|
b_strategy=2
|
||||||
|
qcomp=0.6
|
||||||
|
qmin=10
|
||||||
|
qmax=51
|
||||||
|
qdiff=4
|
||||||
|
bf=3
|
||||||
|
refs=8
|
||||||
|
directpred=3
|
||||||
|
trellis=2
|
||||||
|
flags2=+bpyramid+mixed_refs+wpred+dct8x8+fastpskip
|
||||||
|
wpredp=2
|
||||||
|
rc_lookahead=60
|
|
@ -0,0 +1,23 @@
|
||||||
|
coder=1
|
||||||
|
flags=+loop
|
||||||
|
cmp=+chroma
|
||||||
|
partitions=-parti8x8-parti4x4-partp8x8-partb8x8
|
||||||
|
me_method=dia
|
||||||
|
subq=2
|
||||||
|
me_range=16
|
||||||
|
g=250
|
||||||
|
keyint_min=25
|
||||||
|
sc_threshold=40
|
||||||
|
i_qfactor=0.71
|
||||||
|
b_strategy=2
|
||||||
|
qcomp=0.6
|
||||||
|
qmin=10
|
||||||
|
qmax=51
|
||||||
|
qdiff=4
|
||||||
|
bf=3
|
||||||
|
refs=1
|
||||||
|
directpred=3
|
||||||
|
trellis=0
|
||||||
|
flags2=+bpyramid-mixed_refs+wpred-dct8x8+fastpskip
|
||||||
|
wpredp=2
|
||||||
|
rc_lookahead=60
|
23
FFMpegCore/FFMPEG/bin/presets/libx264-superfast.ffpreset
Normal file
23
FFMpegCore/FFMPEG/bin/presets/libx264-superfast.ffpreset
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
coder=1
|
||||||
|
flags=+loop
|
||||||
|
cmp=+chroma
|
||||||
|
partitions=+parti8x8+parti4x4-partp8x8-partb8x8
|
||||||
|
me_method=dia
|
||||||
|
subq=1
|
||||||
|
me_range=16
|
||||||
|
g=250
|
||||||
|
keyint_min=25
|
||||||
|
sc_threshold=40
|
||||||
|
i_qfactor=0.71
|
||||||
|
b_strategy=1
|
||||||
|
qcomp=0.6
|
||||||
|
qmin=10
|
||||||
|
qmax=51
|
||||||
|
qdiff=4
|
||||||
|
bf=3
|
||||||
|
refs=1
|
||||||
|
directpred=1
|
||||||
|
trellis=0
|
||||||
|
flags2=+bpyramid-mixed_refs+wpred+dct8x8+fastpskip-mbtree
|
||||||
|
wpredp=0
|
||||||
|
rc_lookahead=0
|
|
@ -0,0 +1,23 @@
|
||||||
|
coder=1
|
||||||
|
flags=+loop
|
||||||
|
cmp=+chroma
|
||||||
|
partitions=-parti8x8-parti4x4-partp8x8-partb8x8
|
||||||
|
me_method=dia
|
||||||
|
subq=1
|
||||||
|
me_range=16
|
||||||
|
g=250
|
||||||
|
keyint_min=25
|
||||||
|
sc_threshold=40
|
||||||
|
i_qfactor=0.71
|
||||||
|
b_strategy=1
|
||||||
|
qcomp=0.6
|
||||||
|
qmin=10
|
||||||
|
qmax=51
|
||||||
|
qdiff=4
|
||||||
|
bf=3
|
||||||
|
refs=1
|
||||||
|
directpred=1
|
||||||
|
trellis=0
|
||||||
|
flags2=+bpyramid-mixed_refs+wpred-dct8x8+fastpskip-mbtree
|
||||||
|
wpredp=0
|
||||||
|
rc_lookahead=0
|
24
FFMpegCore/FFMPEG/bin/presets/libx264-ultrafast.ffpreset
Normal file
24
FFMpegCore/FFMPEG/bin/presets/libx264-ultrafast.ffpreset
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
coder=0
|
||||||
|
flags=-loop
|
||||||
|
cmp=+chroma
|
||||||
|
partitions=-parti8x8-parti4x4-partp8x8-partb8x8
|
||||||
|
me_method=dia
|
||||||
|
subq=0
|
||||||
|
me_range=16
|
||||||
|
g=250
|
||||||
|
keyint_min=25
|
||||||
|
sc_threshold=0
|
||||||
|
i_qfactor=0.71
|
||||||
|
b_strategy=0
|
||||||
|
qcomp=0.6
|
||||||
|
qmin=10
|
||||||
|
qmax=51
|
||||||
|
qdiff=4
|
||||||
|
bf=0
|
||||||
|
refs=1
|
||||||
|
directpred=1
|
||||||
|
trellis=0
|
||||||
|
flags2=-bpyramid-mixed_refs-wpred-dct8x8+fastpskip-mbtree
|
||||||
|
wpredp=0
|
||||||
|
aq_mode=0
|
||||||
|
rc_lookahead=0
|
|
@ -0,0 +1,24 @@
|
||||||
|
coder=0
|
||||||
|
flags=-loop
|
||||||
|
cmp=+chroma
|
||||||
|
partitions=-parti8x8-parti4x4-partp8x8-partb8x8
|
||||||
|
me_method=dia
|
||||||
|
subq=0
|
||||||
|
me_range=16
|
||||||
|
g=250
|
||||||
|
keyint_min=25
|
||||||
|
sc_threshold=0
|
||||||
|
i_qfactor=0.71
|
||||||
|
b_strategy=0
|
||||||
|
qcomp=0.6
|
||||||
|
qmin=10
|
||||||
|
qmax=51
|
||||||
|
qdiff=4
|
||||||
|
bf=0
|
||||||
|
refs=1
|
||||||
|
directpred=1
|
||||||
|
trellis=0
|
||||||
|
flags2=-bpyramid-mixed_refs-wpred-dct8x8+fastpskip-mbtree
|
||||||
|
wpredp=0
|
||||||
|
aq_mode=0
|
||||||
|
rc_lookahead=0
|
23
FFMpegCore/FFMPEG/bin/presets/libx264-veryfast.ffpreset
Normal file
23
FFMpegCore/FFMPEG/bin/presets/libx264-veryfast.ffpreset
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
coder=1
|
||||||
|
flags=+loop
|
||||||
|
cmp=+chroma
|
||||||
|
partitions=+parti8x8+parti4x4+partp8x8+partb8x8
|
||||||
|
me_method=hex
|
||||||
|
subq=2
|
||||||
|
me_range=16
|
||||||
|
g=250
|
||||||
|
keyint_min=25
|
||||||
|
sc_threshold=40
|
||||||
|
i_qfactor=0.71
|
||||||
|
b_strategy=1
|
||||||
|
qcomp=0.6
|
||||||
|
qmin=10
|
||||||
|
qmax=51
|
||||||
|
qdiff=4
|
||||||
|
bf=3
|
||||||
|
refs=1
|
||||||
|
directpred=1
|
||||||
|
trellis=0
|
||||||
|
flags2=+bpyramid-mixed_refs+wpred+dct8x8+fastpskip
|
||||||
|
wpredp=0
|
||||||
|
rc_lookahead=10
|
|
@ -0,0 +1,23 @@
|
||||||
|
coder=1
|
||||||
|
flags=+loop
|
||||||
|
cmp=+chroma
|
||||||
|
partitions=-parti8x8-parti4x4-partp8x8-partb8x8
|
||||||
|
me_method=dia
|
||||||
|
subq=2
|
||||||
|
me_range=16
|
||||||
|
g=250
|
||||||
|
keyint_min=25
|
||||||
|
sc_threshold=40
|
||||||
|
i_qfactor=0.71
|
||||||
|
b_strategy=1
|
||||||
|
qcomp=0.6
|
||||||
|
qmin=10
|
||||||
|
qmax=51
|
||||||
|
qdiff=4
|
||||||
|
bf=3
|
||||||
|
refs=1
|
||||||
|
directpred=1
|
||||||
|
trellis=0
|
||||||
|
flags2=+bpyramid-mixed_refs+wpred-dct8x8+fastpskip
|
||||||
|
wpredp=0
|
||||||
|
rc_lookahead=10
|
23
FFMpegCore/FFMPEG/bin/presets/libx264-veryslow.ffpreset
Normal file
23
FFMpegCore/FFMPEG/bin/presets/libx264-veryslow.ffpreset
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
coder=1
|
||||||
|
flags=+loop
|
||||||
|
cmp=+chroma
|
||||||
|
partitions=+parti8x8+parti4x4+partp8x8+partp4x4+partb8x8
|
||||||
|
me_method=umh
|
||||||
|
subq=10
|
||||||
|
me_range=24
|
||||||
|
g=250
|
||||||
|
keyint_min=25
|
||||||
|
sc_threshold=40
|
||||||
|
i_qfactor=0.71
|
||||||
|
b_strategy=2
|
||||||
|
qcomp=0.6
|
||||||
|
qmin=10
|
||||||
|
qmax=51
|
||||||
|
qdiff=4
|
||||||
|
bf=8
|
||||||
|
refs=16
|
||||||
|
directpred=3
|
||||||
|
trellis=2
|
||||||
|
flags2=+bpyramid+mixed_refs+wpred+dct8x8+fastpskip
|
||||||
|
wpredp=2
|
||||||
|
rc_lookahead=60
|
|
@ -0,0 +1,23 @@
|
||||||
|
coder=1
|
||||||
|
flags=+loop
|
||||||
|
cmp=+chroma
|
||||||
|
partitions=-parti8x8-parti4x4-partp8x8-partb8x8
|
||||||
|
me_method=dia
|
||||||
|
subq=2
|
||||||
|
me_range=24
|
||||||
|
g=250
|
||||||
|
keyint_min=25
|
||||||
|
sc_threshold=40
|
||||||
|
i_qfactor=0.71
|
||||||
|
b_strategy=2
|
||||||
|
qcomp=0.6
|
||||||
|
qmin=10
|
||||||
|
qmax=51
|
||||||
|
qdiff=4
|
||||||
|
bf=8
|
||||||
|
refs=1
|
||||||
|
directpred=3
|
||||||
|
trellis=0
|
||||||
|
flags2=+bpyramid-mixed_refs+wpred-dct8x8+fastpskip
|
||||||
|
wpredp=2
|
||||||
|
rc_lookahead=60
|
BIN
FFMpegCore/FFMPEG/bin/x64/ffmpeg.exe
Normal file
BIN
FFMpegCore/FFMPEG/bin/x64/ffmpeg.exe
Normal file
Binary file not shown.
BIN
FFMpegCore/FFMPEG/bin/x64/ffprobe.exe
Normal file
BIN
FFMpegCore/FFMPEG/bin/x64/ffprobe.exe
Normal file
Binary file not shown.
BIN
FFMpegCore/FFMPEG/bin/x86/ffmpeg.exe
Normal file
BIN
FFMpegCore/FFMPEG/bin/x86/ffmpeg.exe
Normal file
Binary file not shown.
BIN
FFMpegCore/FFMPEG/bin/x86/ffprobe.exe
Normal file
BIN
FFMpegCore/FFMPEG/bin/x86/ffprobe.exe
Normal file
Binary file not shown.
Loading…
Reference in a new issue