I have videos that I want to display in table view cells. These are the requirements:
- Each video is only 10 seconds long.
- Each video will come from the internet (i.e. will not be local).
- This is important: I want the videos to autoplay and keep looping. So a user does not have to press a play button to see it. Basically all the videos will be playing and looping over and over as the user scrolls through the table.
- I will fetch 7 videos to display on the table. When a user reaches the end of the table, the could press a button "Load More" to make a network request for an additional 7 videos.
Any ideas on how to embed a video player into the table view cell and have them play?