Esempio n. 1
0
        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();
        }
Esempio n. 2
0
        public void Convert()
        {
            if (this._agentHDS == null)
            {
                this._agentHDS = new HDSAgent(this.Curso, this.Aula, this.PathM3u8, this.PathFile);
            }

            this._agentHDS.ReprocessConvert();
        }
Esempio n. 3
0
        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());
        }