static void Main(string[] args) { HDSAgent granAgent = new HDSAgent("Conhecimentos Pedagógicos Específicos Orientador", "Aula 1", @"C:\Users\Juscélio\AppData\Local\Microsoft\Windows\Temporary Internet Files\Content.IE5\GRRA4T10\index_0_av[1].m3u8", null); granAgent.Download(); Console.ReadKey(); }
public void Convert() { if (this._agentHDS == null) { this._agentHDS = new HDSAgent(this.Curso, this.Aula, this.PathM3u8, this.PathFile); } this._agentHDS.ReprocessConvert(); }
public bool Download() { if (this._agentHDS == null) { this._agentHDS = new HDSAgent(this.Curso, this.Aula, this.PathM3u8, this.PathFile); this._agentHDS.Progress += new HDSAgentProgress(_agentHDS_Progress); } return(this._agentHDS.Download()); }