Line | |
---|
1 | using System; |
---|
2 | using System.Collections.Generic; |
---|
3 | using System.Linq; |
---|
4 | using System.Text; |
---|
5 | using System.Threading.Tasks; |
---|
6 | using DirectShowLib; |
---|
7 | using AlaxInfoDirectShowSpy; |
---|
8 | |
---|
9 | namespace FilterGraphHelperDialog |
---|
10 | { |
---|
11 | class Program |
---|
12 | { |
---|
13 | [STAThread] |
---|
14 | static void Main(string[] args) |
---|
15 | { |
---|
16 | IFilterGraph2 graph = new FilterGraph() as IFilterGraph2; |
---|
17 | graph.RenderFile(@"E:\Media\GoPro 2010 Highlights - You in HD - 1920x1080.mp4", ""); |
---|
18 | FilterGraphHelper helper = new FilterGraphHelper(); |
---|
19 | helper.FilterGraph = graph; |
---|
20 | helper.DoPropertyFrameModal(0); |
---|
21 | Console.WriteLine(helper.Text); |
---|
22 | } |
---|
23 | } |
---|
24 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.