polly-ffmpeg 0.1.9 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +4 -0
- data/VERSION.yml +4 -0
- data/features/ffmpeg.feature +9 -0
- data/features/steps/ffmpeg_steps.rb +0 -0
- data/features/support/env.rb +11 -0
- data/ffmpeg.gemspec +41 -5
- data/lib/ffmpeg/file_extensions.rb +150 -0
- data/lib/ffmpeg/video_advanced_options.rb +275 -0
- data/rdoc/classes/FFMpeg.html +299 -0
- data/rdoc/classes/FFMpeg/AudioOptions.html +341 -0
- data/rdoc/classes/FFMpeg/ClassMethods.html +140 -0
- data/rdoc/classes/FFMpeg/HelperMethods.html +141 -0
- data/rdoc/classes/FFMpeg/MainOptions.html +647 -0
- data/rdoc/classes/FFMpeg/VideoOptions.html +846 -0
- data/rdoc/classes/FFMpegCommand.html +216 -0
- data/rdoc/classes/FileExtensions.html +118 -0
- data/rdoc/created.rid +1 -0
- data/rdoc/files/README_textile.html +153 -0
- data/rdoc/files/lib/ffmpeg/audio_options_rb.html +101 -0
- data/rdoc/files/lib/ffmpeg/class_methods_rb.html +101 -0
- data/rdoc/files/lib/ffmpeg/ffmpeg_command_rb.html +101 -0
- data/rdoc/files/lib/ffmpeg/file_extensions_rb.html +101 -0
- data/rdoc/files/lib/ffmpeg/helper_methods_rb.html +101 -0
- data/rdoc/files/lib/ffmpeg/main_options_rb.html +101 -0
- data/rdoc/files/lib/ffmpeg/video_options_rb.html +101 -0
- data/rdoc/files/lib/ffmpeg_rb.html +114 -0
- data/rdoc/fr_class_index.html +34 -0
- data/rdoc/fr_file_index.html +35 -0
- data/rdoc/fr_method_index.html +85 -0
- data/rdoc/index.html +24 -0
- data/rdoc/rdoc-style.css +208 -0
- data/spec/video_advanced_options_spec.rb +349 -0
- metadata +39 -3
@@ -0,0 +1,101 @@
|
|
1
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
2
|
+
<!DOCTYPE html
|
3
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
4
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
5
|
+
|
6
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
7
|
+
<head>
|
8
|
+
<title>File: main_options.rb</title>
|
9
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
10
|
+
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
11
|
+
<link rel="stylesheet" href="../../.././rdoc-style.css" type="text/css" media="screen" />
|
12
|
+
<script type="text/javascript">
|
13
|
+
// <![CDATA[
|
14
|
+
|
15
|
+
function popupCode( url ) {
|
16
|
+
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
|
17
|
+
}
|
18
|
+
|
19
|
+
function toggleCode( id ) {
|
20
|
+
if ( document.getElementById )
|
21
|
+
elem = document.getElementById( id );
|
22
|
+
else if ( document.all )
|
23
|
+
elem = eval( "document.all." + id );
|
24
|
+
else
|
25
|
+
return false;
|
26
|
+
|
27
|
+
elemStyle = elem.style;
|
28
|
+
|
29
|
+
if ( elemStyle.display != "block" ) {
|
30
|
+
elemStyle.display = "block"
|
31
|
+
} else {
|
32
|
+
elemStyle.display = "none"
|
33
|
+
}
|
34
|
+
|
35
|
+
return true;
|
36
|
+
}
|
37
|
+
|
38
|
+
// Make codeblocks hidden by default
|
39
|
+
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
|
40
|
+
|
41
|
+
// ]]>
|
42
|
+
</script>
|
43
|
+
|
44
|
+
</head>
|
45
|
+
<body>
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
<div id="fileHeader">
|
50
|
+
<h1>main_options.rb</h1>
|
51
|
+
<table class="header-table">
|
52
|
+
<tr class="top-aligned-row">
|
53
|
+
<td><strong>Path:</strong></td>
|
54
|
+
<td>lib/ffmpeg/main_options.rb
|
55
|
+
</td>
|
56
|
+
</tr>
|
57
|
+
<tr class="top-aligned-row">
|
58
|
+
<td><strong>Last Update:</strong></td>
|
59
|
+
<td>Fri Aug 07 15:27:15 +0200 2009</td>
|
60
|
+
</tr>
|
61
|
+
</table>
|
62
|
+
</div>
|
63
|
+
<!-- banner header -->
|
64
|
+
|
65
|
+
<div id="bodyContent">
|
66
|
+
|
67
|
+
|
68
|
+
|
69
|
+
<div id="contextContent">
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
</div>
|
74
|
+
|
75
|
+
|
76
|
+
</div>
|
77
|
+
|
78
|
+
|
79
|
+
<!-- if includes -->
|
80
|
+
|
81
|
+
<div id="section">
|
82
|
+
|
83
|
+
|
84
|
+
|
85
|
+
|
86
|
+
|
87
|
+
|
88
|
+
|
89
|
+
|
90
|
+
<!-- if method_list -->
|
91
|
+
|
92
|
+
|
93
|
+
</div>
|
94
|
+
|
95
|
+
|
96
|
+
<div id="validator-badges">
|
97
|
+
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
98
|
+
</div>
|
99
|
+
|
100
|
+
</body>
|
101
|
+
</html>
|
@@ -0,0 +1,101 @@
|
|
1
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
2
|
+
<!DOCTYPE html
|
3
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
4
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
5
|
+
|
6
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
7
|
+
<head>
|
8
|
+
<title>File: video_options.rb</title>
|
9
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
10
|
+
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
11
|
+
<link rel="stylesheet" href="../../.././rdoc-style.css" type="text/css" media="screen" />
|
12
|
+
<script type="text/javascript">
|
13
|
+
// <![CDATA[
|
14
|
+
|
15
|
+
function popupCode( url ) {
|
16
|
+
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
|
17
|
+
}
|
18
|
+
|
19
|
+
function toggleCode( id ) {
|
20
|
+
if ( document.getElementById )
|
21
|
+
elem = document.getElementById( id );
|
22
|
+
else if ( document.all )
|
23
|
+
elem = eval( "document.all." + id );
|
24
|
+
else
|
25
|
+
return false;
|
26
|
+
|
27
|
+
elemStyle = elem.style;
|
28
|
+
|
29
|
+
if ( elemStyle.display != "block" ) {
|
30
|
+
elemStyle.display = "block"
|
31
|
+
} else {
|
32
|
+
elemStyle.display = "none"
|
33
|
+
}
|
34
|
+
|
35
|
+
return true;
|
36
|
+
}
|
37
|
+
|
38
|
+
// Make codeblocks hidden by default
|
39
|
+
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
|
40
|
+
|
41
|
+
// ]]>
|
42
|
+
</script>
|
43
|
+
|
44
|
+
</head>
|
45
|
+
<body>
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
<div id="fileHeader">
|
50
|
+
<h1>video_options.rb</h1>
|
51
|
+
<table class="header-table">
|
52
|
+
<tr class="top-aligned-row">
|
53
|
+
<td><strong>Path:</strong></td>
|
54
|
+
<td>lib/ffmpeg/video_options.rb
|
55
|
+
</td>
|
56
|
+
</tr>
|
57
|
+
<tr class="top-aligned-row">
|
58
|
+
<td><strong>Last Update:</strong></td>
|
59
|
+
<td>Fri Aug 07 15:27:15 +0200 2009</td>
|
60
|
+
</tr>
|
61
|
+
</table>
|
62
|
+
</div>
|
63
|
+
<!-- banner header -->
|
64
|
+
|
65
|
+
<div id="bodyContent">
|
66
|
+
|
67
|
+
|
68
|
+
|
69
|
+
<div id="contextContent">
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
</div>
|
74
|
+
|
75
|
+
|
76
|
+
</div>
|
77
|
+
|
78
|
+
|
79
|
+
<!-- if includes -->
|
80
|
+
|
81
|
+
<div id="section">
|
82
|
+
|
83
|
+
|
84
|
+
|
85
|
+
|
86
|
+
|
87
|
+
|
88
|
+
|
89
|
+
|
90
|
+
<!-- if method_list -->
|
91
|
+
|
92
|
+
|
93
|
+
</div>
|
94
|
+
|
95
|
+
|
96
|
+
<div id="validator-badges">
|
97
|
+
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
98
|
+
</div>
|
99
|
+
|
100
|
+
</body>
|
101
|
+
</html>
|
@@ -0,0 +1,114 @@
|
|
1
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
2
|
+
<!DOCTYPE html
|
3
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
4
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
5
|
+
|
6
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
7
|
+
<head>
|
8
|
+
<title>File: ffmpeg.rb</title>
|
9
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
10
|
+
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
11
|
+
<link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
|
12
|
+
<script type="text/javascript">
|
13
|
+
// <![CDATA[
|
14
|
+
|
15
|
+
function popupCode( url ) {
|
16
|
+
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
|
17
|
+
}
|
18
|
+
|
19
|
+
function toggleCode( id ) {
|
20
|
+
if ( document.getElementById )
|
21
|
+
elem = document.getElementById( id );
|
22
|
+
else if ( document.all )
|
23
|
+
elem = eval( "document.all." + id );
|
24
|
+
else
|
25
|
+
return false;
|
26
|
+
|
27
|
+
elemStyle = elem.style;
|
28
|
+
|
29
|
+
if ( elemStyle.display != "block" ) {
|
30
|
+
elemStyle.display = "block"
|
31
|
+
} else {
|
32
|
+
elemStyle.display = "none"
|
33
|
+
}
|
34
|
+
|
35
|
+
return true;
|
36
|
+
}
|
37
|
+
|
38
|
+
// Make codeblocks hidden by default
|
39
|
+
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
|
40
|
+
|
41
|
+
// ]]>
|
42
|
+
</script>
|
43
|
+
|
44
|
+
</head>
|
45
|
+
<body>
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
<div id="fileHeader">
|
50
|
+
<h1>ffmpeg.rb</h1>
|
51
|
+
<table class="header-table">
|
52
|
+
<tr class="top-aligned-row">
|
53
|
+
<td><strong>Path:</strong></td>
|
54
|
+
<td>lib/ffmpeg.rb
|
55
|
+
</td>
|
56
|
+
</tr>
|
57
|
+
<tr class="top-aligned-row">
|
58
|
+
<td><strong>Last Update:</strong></td>
|
59
|
+
<td>Sun Aug 16 00:05:10 +0200 2009</td>
|
60
|
+
</tr>
|
61
|
+
</table>
|
62
|
+
</div>
|
63
|
+
<!-- banner header -->
|
64
|
+
|
65
|
+
<div id="bodyContent">
|
66
|
+
|
67
|
+
|
68
|
+
|
69
|
+
<div id="contextContent">
|
70
|
+
|
71
|
+
|
72
|
+
<div id="requires-list">
|
73
|
+
<h3 class="section-bar">Required files</h3>
|
74
|
+
|
75
|
+
<div class="name-list">
|
76
|
+
ffmpeg/class_methods
|
77
|
+
ffmpeg/main_options
|
78
|
+
ffmpeg/file_extensions
|
79
|
+
ffmpeg/video_options
|
80
|
+
ffmpeg/audio_options
|
81
|
+
ffmpeg/ffmpeg_command
|
82
|
+
ffmpeg/helper_methods
|
83
|
+
</div>
|
84
|
+
</div>
|
85
|
+
|
86
|
+
</div>
|
87
|
+
|
88
|
+
|
89
|
+
</div>
|
90
|
+
|
91
|
+
|
92
|
+
<!-- if includes -->
|
93
|
+
|
94
|
+
<div id="section">
|
95
|
+
|
96
|
+
|
97
|
+
|
98
|
+
|
99
|
+
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
<!-- if method_list -->
|
104
|
+
|
105
|
+
|
106
|
+
</div>
|
107
|
+
|
108
|
+
|
109
|
+
<div id="validator-badges">
|
110
|
+
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
111
|
+
</div>
|
112
|
+
|
113
|
+
</body>
|
114
|
+
</html>
|
@@ -0,0 +1,34 @@
|
|
1
|
+
|
2
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
3
|
+
<!DOCTYPE html
|
4
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
5
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
6
|
+
|
7
|
+
<!--
|
8
|
+
|
9
|
+
Classes
|
10
|
+
|
11
|
+
-->
|
12
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
13
|
+
<head>
|
14
|
+
<title>Classes</title>
|
15
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
16
|
+
<link rel="stylesheet" href="rdoc-style.css" type="text/css" />
|
17
|
+
<base target="docwin" />
|
18
|
+
</head>
|
19
|
+
<body>
|
20
|
+
<div id="index">
|
21
|
+
<h1 class="section-bar">Classes</h1>
|
22
|
+
<div id="index-entries">
|
23
|
+
<a href="classes/FFMpeg.html">FFMpeg</a><br />
|
24
|
+
<a href="classes/FFMpeg/AudioOptions.html">FFMpeg::AudioOptions</a><br />
|
25
|
+
<a href="classes/FFMpeg/ClassMethods.html">FFMpeg::ClassMethods</a><br />
|
26
|
+
<a href="classes/FFMpeg/HelperMethods.html">FFMpeg::HelperMethods</a><br />
|
27
|
+
<a href="classes/FFMpeg/MainOptions.html">FFMpeg::MainOptions</a><br />
|
28
|
+
<a href="classes/FFMpeg/VideoOptions.html">FFMpeg::VideoOptions</a><br />
|
29
|
+
<a href="classes/FFMpegCommand.html">FFMpegCommand</a><br />
|
30
|
+
<a href="classes/FileExtensions.html">FileExtensions</a><br />
|
31
|
+
</div>
|
32
|
+
</div>
|
33
|
+
</body>
|
34
|
+
</html>
|
@@ -0,0 +1,35 @@
|
|
1
|
+
|
2
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
3
|
+
<!DOCTYPE html
|
4
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
5
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
6
|
+
|
7
|
+
<!--
|
8
|
+
|
9
|
+
Files
|
10
|
+
|
11
|
+
-->
|
12
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
13
|
+
<head>
|
14
|
+
<title>Files</title>
|
15
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
16
|
+
<link rel="stylesheet" href="rdoc-style.css" type="text/css" />
|
17
|
+
<base target="docwin" />
|
18
|
+
</head>
|
19
|
+
<body>
|
20
|
+
<div id="index">
|
21
|
+
<h1 class="section-bar">Files</h1>
|
22
|
+
<div id="index-entries">
|
23
|
+
<a href="files/README_textile.html">README.textile</a><br />
|
24
|
+
<a href="files/lib/ffmpeg_rb.html">lib/ffmpeg.rb</a><br />
|
25
|
+
<a href="files/lib/ffmpeg/audio_options_rb.html">lib/ffmpeg/audio_options.rb</a><br />
|
26
|
+
<a href="files/lib/ffmpeg/class_methods_rb.html">lib/ffmpeg/class_methods.rb</a><br />
|
27
|
+
<a href="files/lib/ffmpeg/ffmpeg_command_rb.html">lib/ffmpeg/ffmpeg_command.rb</a><br />
|
28
|
+
<a href="files/lib/ffmpeg/file_extensions_rb.html">lib/ffmpeg/file_extensions.rb</a><br />
|
29
|
+
<a href="files/lib/ffmpeg/helper_methods_rb.html">lib/ffmpeg/helper_methods.rb</a><br />
|
30
|
+
<a href="files/lib/ffmpeg/main_options_rb.html">lib/ffmpeg/main_options.rb</a><br />
|
31
|
+
<a href="files/lib/ffmpeg/video_options_rb.html">lib/ffmpeg/video_options.rb</a><br />
|
32
|
+
</div>
|
33
|
+
</div>
|
34
|
+
</body>
|
35
|
+
</html>
|
@@ -0,0 +1,85 @@
|
|
1
|
+
|
2
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
3
|
+
<!DOCTYPE html
|
4
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
5
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
6
|
+
|
7
|
+
<!--
|
8
|
+
|
9
|
+
Methods
|
10
|
+
|
11
|
+
-->
|
12
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
13
|
+
<head>
|
14
|
+
<title>Methods</title>
|
15
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
16
|
+
<link rel="stylesheet" href="rdoc-style.css" type="text/css" />
|
17
|
+
<base target="docwin" />
|
18
|
+
</head>
|
19
|
+
<body>
|
20
|
+
<div id="index">
|
21
|
+
<h1 class="section-bar">Methods</h1>
|
22
|
+
<div id="index-entries">
|
23
|
+
<a href="classes/FFMpegCommand.html#M000001"><< (FFMpegCommand)</a><br />
|
24
|
+
<a href="classes/FFMpegCommand.html#M000002">add_at (FFMpegCommand)</a><br />
|
25
|
+
<a href="classes/FFMpeg/MainOptions.html#M000054">album (FFMpeg::MainOptions)</a><br />
|
26
|
+
<a href="classes/FFMpeg/VideoOptions.html#M000022">aspect (FFMpeg::VideoOptions)</a><br />
|
27
|
+
<a href="classes/FFMpeg/AudioOptions.html#M000011">audio_bitrate (FFMpeg::AudioOptions)</a><br />
|
28
|
+
<a href="classes/FFMpeg/AudioOptions.html#M000012">audio_channels (FFMpeg::AudioOptions)</a><br />
|
29
|
+
<a href="classes/FFMpeg/AudioOptions.html#M000014">audio_codec (FFMpeg::AudioOptions)</a><br />
|
30
|
+
<a href="classes/FFMpeg/AudioOptions.html#M000009">audio_frames (FFMpeg::AudioOptions)</a><br />
|
31
|
+
<a href="classes/FFMpeg/AudioOptions.html#M000016">audio_language (FFMpeg::AudioOptions)</a><br />
|
32
|
+
<a href="classes/FFMpeg/AudioOptions.html#M000010">audio_sampling (FFMpeg::AudioOptions)</a><br />
|
33
|
+
<a href="classes/FFMpeg/MainOptions.html#M000051">author (FFMpeg::MainOptions)</a><br />
|
34
|
+
<a href="classes/FFMpeg/ClassMethods.html#M000017">check_method (FFMpeg::ClassMethods)</a><br />
|
35
|
+
<a href="classes/FFMpegCommand.html#M000003">clear (FFMpegCommand)</a><br />
|
36
|
+
<a href="classes/FFMpegCommand.html#M000004">command (FFMpegCommand)</a><br />
|
37
|
+
<a href="classes/FFMpeg/MainOptions.html#M000053">comment (FFMpeg::MainOptions)</a><br />
|
38
|
+
<a href="classes/FFMpeg.html#M000006">convert (FFMpeg)</a><br />
|
39
|
+
<a href="classes/FFMpeg/MainOptions.html#M000052">copyright (FFMpeg::MainOptions)</a><br />
|
40
|
+
<a href="classes/FFMpeg/VideoOptions.html#M000024">crop_bottom (FFMpeg::VideoOptions)</a><br />
|
41
|
+
<a href="classes/FFMpeg/VideoOptions.html#M000025">crop_left (FFMpeg::VideoOptions)</a><br />
|
42
|
+
<a href="classes/FFMpeg/VideoOptions.html#M000026">crop_right (FFMpeg::VideoOptions)</a><br />
|
43
|
+
<a href="classes/FFMpeg/VideoOptions.html#M000023">crop_top (FFMpeg::VideoOptions)</a><br />
|
44
|
+
<a href="classes/FFMpeg/AudioOptions.html#M000013">disable_audio (FFMpeg::AudioOptions)</a><br />
|
45
|
+
<a href="classes/FFMpeg/VideoOptions.html#M000032">disable_video (FFMpeg::VideoOptions)</a><br />
|
46
|
+
<a href="classes/FFMpeg/MainOptions.html#M000046">duration (FFMpeg::MainOptions)</a><br />
|
47
|
+
<a href="classes/FFMpeg.html#M000007">ffmpeg_path (FFMpeg)</a><br />
|
48
|
+
<a href="classes/FFMpeg/MainOptions.html#M000047">file_size_limit (FFMpeg::MainOptions)</a><br />
|
49
|
+
<a href="classes/FFMpeg/VideoOptions.html#M000021">framerate (FFMpeg::VideoOptions)</a><br />
|
50
|
+
<a href="classes/FFMpeg/MainOptions.html#M000058">frames_to_record (FFMpeg::MainOptions)</a><br />
|
51
|
+
<a href="classes/FFMpeg.html#M000005">included (FFMpeg)</a><br />
|
52
|
+
<a href="classes/FFMpeg/AudioOptions.html#M000015">new_audio (FFMpeg::AudioOptions)</a><br />
|
53
|
+
<a href="classes/FFMpeg/VideoOptions.html#M000041">new_video (FFMpeg::VideoOptions)</a><br />
|
54
|
+
<a href="classes/FFMpeg/MainOptions.html#M000049">offset (FFMpeg::MainOptions)</a><br />
|
55
|
+
<a href="classes/FFMpeg/MainOptions.html#M000045">overwrite_existing_file (FFMpeg::MainOptions)</a><br />
|
56
|
+
<a href="classes/FFMpeg/VideoOptions.html#M000028">pad_bottom (FFMpeg::VideoOptions)</a><br />
|
57
|
+
<a href="classes/FFMpeg/VideoOptions.html#M000031">pad_color (FFMpeg::VideoOptions)</a><br />
|
58
|
+
<a href="classes/FFMpeg/VideoOptions.html#M000029">pad_left (FFMpeg::VideoOptions)</a><br />
|
59
|
+
<a href="classes/FFMpeg/VideoOptions.html#M000030">pad_right (FFMpeg::VideoOptions)</a><br />
|
60
|
+
<a href="classes/FFMpeg/VideoOptions.html#M000027">pad_top (FFMpeg::VideoOptions)</a><br />
|
61
|
+
<a href="classes/FFMpeg/VideoOptions.html#M000018">resolution (FFMpeg::VideoOptions)</a><br />
|
62
|
+
<a href="classes/FFMpeg/HelperMethods.html#M000042">returning (FFMpeg::HelperMethods)</a><br />
|
63
|
+
<a href="classes/FFMpeg.html#M000008">run (FFMpeg)</a><br />
|
64
|
+
<a href="classes/FFMpeg/VideoOptions.html#M000038">same_video_quality (FFMpeg::VideoOptions)</a><br />
|
65
|
+
<a href="classes/FFMpeg/MainOptions.html#M000048">seek (FFMpeg::MainOptions)</a><br />
|
66
|
+
<a href="classes/FFMpeg/MainOptions.html#M000043">source (FFMpeg::MainOptions)</a><br />
|
67
|
+
<a href="classes/FFMpeg/MainOptions.html#M000059">subtitle_codec (FFMpeg::MainOptions)</a><br />
|
68
|
+
<a href="classes/FFMpeg/MainOptions.html#M000044">target (FFMpeg::MainOptions)</a><br />
|
69
|
+
<a href="classes/FFMpeg/MainOptions.html#M000057">target (FFMpeg::MainOptions)</a><br />
|
70
|
+
<a href="classes/FFMpeg/MainOptions.html#M000050">title (FFMpeg::MainOptions)</a><br />
|
71
|
+
<a href="classes/FFMpeg/MainOptions.html#M000055">track (FFMpeg::MainOptions)</a><br />
|
72
|
+
<a href="classes/FFMpeg/VideoOptions.html#M000019">video_bitrate (FFMpeg::VideoOptions)</a><br />
|
73
|
+
<a href="classes/FFMpeg/VideoOptions.html#M000033">video_bitrate_tolerance (FFMpeg::VideoOptions)</a><br />
|
74
|
+
<a href="classes/FFMpeg/VideoOptions.html#M000036">video_buffer_size (FFMpeg::VideoOptions)</a><br />
|
75
|
+
<a href="classes/FFMpeg/VideoOptions.html#M000037">video_codec (FFMpeg::VideoOptions)</a><br />
|
76
|
+
<a href="classes/FFMpeg/VideoOptions.html#M000020">video_frames (FFMpeg::VideoOptions)</a><br />
|
77
|
+
<a href="classes/FFMpeg/VideoOptions.html#M000034">video_maximum_bitrate (FFMpeg::VideoOptions)</a><br />
|
78
|
+
<a href="classes/FFMpeg/VideoOptions.html#M000035">video_minimum_bitrate (FFMpeg::VideoOptions)</a><br />
|
79
|
+
<a href="classes/FFMpeg/VideoOptions.html#M000039">video_pass (FFMpeg::VideoOptions)</a><br />
|
80
|
+
<a href="classes/FFMpeg/VideoOptions.html#M000040">video_pass_logfile (FFMpeg::VideoOptions)</a><br />
|
81
|
+
<a href="classes/FFMpeg/MainOptions.html#M000056">year (FFMpeg::MainOptions)</a><br />
|
82
|
+
</div>
|
83
|
+
</div>
|
84
|
+
</body>
|
85
|
+
</html>
|