-
Clone the Repository: If you haven't already cloned the repository, do so by running:
git clone https://github.com/vunguyen1989/ffmpeg-dev-container.git cd ffmpeg-dev-container
-
Open the Project in VS Code:
- Open VS Code.
- Open the cloned project folder in VS Code by selecting
File > Open Folder
and navigating to your project directory.
-
Open the Project in the Development Container:
- Press
F1
to open the command palette. - Type
Remote-Containers: Open Folder in Container...
and select it. - Choose your project folder. VS Code will now build the Docker image defined in your
Dockerfile
and open the folder inside the container.
- Press
-
Compile and Run the Code:
Once the container is running, open the integrated terminal in VS Code (you can do this by selecting View > Terminal
or pressing `Ctrl + ``).
In the terminal, compile your files using the following command:
for 0_hello_world.c
make hello
make run_hello
for 2_remuxing.c
make remux
make run_remux
for 0_transcoding.c
make transcode
make run_transcode