From d8e55ec8694fdf6bbdefaefea4aca44d2adf9b98 Mon Sep 17 00:00:00 2001 From: Kaspersky <50753378+CasP0@users.noreply.github.com> Date: Tue, 14 Jan 2025 11:47:14 -0500 Subject: [PATCH 1/2] Update README with cloning command and project overview Update `README.md` to include cloning command and sample project descriptions. * Add command to clone the repository using `gh repo clone android/media-samples`. * Add descriptions for each sample project, including their purposes and functionalities. --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index 12d36d5..cd574c0 100644 --- a/README.md +++ b/README.md @@ -3,3 +3,20 @@ Android Media Samples Repository This repository contains a set of individual Android Studio projects to help you get started writing/understanding Android Media (audio, video, etc.). + +To clone this repository, use the following command: +``` +gh repo clone android/media-samples +``` + +Each sample project demonstrates various media-related functionalities and provides instructions for getting started, prerequisites, and support information. The repository is organized into directories for each sample project, such as: + +- `BasicMediaDecoder`: Demonstrates media decoding. +- `BasicMediaRouter`: Demonstrates media routing. +- `MediaRecorder`: Demonstrates media recording. +- `MidiScope`: Demonstrates MIDI functionality. +- `MidiSynth`: Demonstrates MIDI synthesis. +- `PictureInPicture`: Demonstrates picture-in-picture mode. +- `PictureInPictureKotlin`: Demonstrates picture-in-picture mode using Kotlin. +- `ScreenCapture`: Demonstrates screen capture. +- `VideoPlayer`: Demonstrates video playback. From 1da8593103bc429a5b1367393132231c4d2c24d6 Mon Sep 17 00:00:00 2001 From: Kaspersky <50753378+CasP0@users.noreply.github.com> Date: Tue, 14 Jan 2025 11:50:47 -0500 Subject: [PATCH 2/2] Update README.md with clone command Add the command to clone the repository using `gh repo clone android/media-samples` to the `README.md` file. * Add the command at the beginning of the file, formatted as a code block. --- For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/android/media-samples?shareId=XXXX-XXXX-XXXX-XXXX). --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index cd574c0..1b384cb 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,7 @@ +``` +gh repo clone android/media-samples +``` + Android Media Samples Repository ================================