I’m in the beginning stages of planning out my final Capstone project for my Bootcamp.
Two of the features I would like to include are the ability to upload:
- Audio
- Video
I will be using React.JS for Front-End and Python / Django for server side.
Any suggestions or recommendations for how to approach these upload features?
I’m currently beginning researching how to do this.
you can use html tag input on react
after that you can use FormData() to create file format then send file to api
at backend ( django ) I don't know how to handle file requset but you can find it easily . At react side you can use codes at top .