summaryrefslogtreecommitdiff
path: root/Userland/aplay.cpp
blob: b8126ad99a765d5c448708016d400f3533978897 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#include <LibAudio/ABuffer.h>
#include <LibAudio/AClientConnection.h>
#include <LibAudio/AWavLoader.h>
#include <LibCore/CEventLoop.h>
#include <stdio.h>

int main(int argc, char** argv)
{
    CEventLoop loop;
    if (argc < 2) {
        fprintf(stderr, "Need a WAV to play\n");
        return 1;
    }

    auto audio_client = AClientConnection::construct();
    audio_client->handshake();
    AWavLoader loader(argv[1]);

    printf("\033[34;1m Playing\033[0m: %s\n", argv[1]);
    printf("\033[34;1m  Format\033[0m: %u Hz, %u-bit, %s\n",
        loader.sample_rate(),
        loader.bits_per_sample(),
        loader.num_channels() == 1 ? "Mono" : "Stereo");
    printf("\033[34;1mProgress\033[0m: \033[s");
    for (;;) {
        auto samples = loader.get_more_samples();
        if (samples) {
            printf("\033[u");
            printf("%d/%d", loader.loaded_samples(), loader.total_samples());
            fflush(stdout);
            audio_client->enqueue(*samples);
        } else if (audio_client->get_remaining_samples()) {
            sleep(1);
        } else {
            break;
        }
    }
    printf("\n");
    return 0;
}