about summary refs log tree commit diff
path: root/pkgs/profpatsch/youtube2audiopodcast/default.nix
blob: 1d8c80e6108b26c1391f3658a369f5919dce493e (plain) (blame)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{ pkgs, lib, writeExecline, getBins, runInEmptyEnv }:

let
  bins = getBins pkgs.hello [ "hello" ]
    // getBins pkgs.coreutils [ "echo" "env" "cat" "printf" "wc" "tr" ]
    // getBins pkgs.youtube-dl [ "youtube-dl" ]
    // getBins pkgs.s6-networking [ "s6-tcpserver" ]
    // getBins pkgs.execline [ "fdmove" "backtick" "importas" "if" "redirfd" "pipeline" ];

  youtube-dl-audio = writeExecline "abc" { readNArgs = 1; } [
    bins.youtube-dl
      "--extract-audio"
      "--audio-format" "opus"
      "--output" "\${1}/audio.opus" "https://www.youtube.com/watch?v=5Opw5oR2LDY"
  ];

  # minimal CGI request parser for use as UCSPI middleware
  yolo-cgi = pkgs.writers.writePython3 "yolo-cgi" {} ''
    import sys
    import os


    def parse_ass(bool):
        if not bool:
            sys.exit(1)


    inbuf = sys.stdin.buffer

    first_line = inbuf.readline().split(sep=b" ")
    parse_ass(len(first_line) == 3)
    parse_ass(first_line[2].startswith(b"HTTP/"))

    os.environb[b"REQUEST_METHOD"] = first_line[0]
    os.environb[b"REQUEST_URI"] = first_line[1]

    cmd = sys.argv[1]
    args = sys.argv[2:] if len(sys.argv) > 2 else []
    os.execlp(cmd, cmd, *args)
  '';


  serve-audio = writeExecline "audio-server" {} [
    (runInEmptyEnv [])
    bins.s6-tcpserver "::1" "8888"
    yolo-cgi
    # bins.fdmove "1" "2" bins.env
    bins.${"if"} [
      bins.fdmove "1" "2"
      youtube-dl-audio "tmpdir"
    ]
    bins.backtick "-i" "-n" "filesize" [
      bins.redirfd "-r" "0" "tmpdir/audio.opus"
      bins.wc "--bytes"
    ]
    bins.importas "filesize" "filesize"
    bins.${"if"} [ bins.printf ''
      HTTP/1.1 200 OK
      Content-Type: audio/ogg
      Content-Length: %u

    '' "$filesize" ]
    bins.redirfd "-r" "0" "tmpdir/audio.opus" bins.cat
  ];

# in printFeed
in serve-audio
# in youtube-dl-audio