If you really want to start from scratch, I'd suggest one or both of:
MIT's OCW algorithms course, which has video lectures.
Introduction to Algorithms, which, if read carefully from the start for the first 15 chapters or so, gives a really excellent introduction to algorithms. The book is language agnostic - the algorithms are written in pseudo-code. However, I think this is a benefit; you can't just copy or paste solutions, you have to think about translating them (which is typically trivial) into Python or Java which will help your understanding. Eventually, you'll build up a library of go-to code.
There's an awful lot to learn about algorithms and data structures. You need to be reasonably confident with some discrete mathematics to be able to understand all the theory, but you might find it's easiest to lazily evaluate your need - when you come across something you don't understand, look it up and spend some time getting it.