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 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
|
(*
* Copyright 2003 Savonet team
*
* This file is part of OCaml-Vorbis.
*
* OCaml-Vorbis is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* OCaml-Vorbis is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with OCaml-Vorbis; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*)
(**
* An wav to ogg converter using OCaml-Vorbis.
*
* @author Samuel Mimram, and many others...
*)
open Vorbis
let src = ref ""
let dst = ref ""
let buflen = ref 1024
let input_string chan len =
let ans = Bytes.create len in
(* TODO: check length *)
ignore (input chan ans 0 len);
Bytes.unsafe_to_string ans
let input_int chan =
let buf = input_string chan 4 in
int_of_char buf.[0]
+ (int_of_char buf.[1] lsl 8)
+ (int_of_char buf.[2] lsl 16)
+ (int_of_char buf.[3] lsl 24)
let input_short chan =
let buf = input_string chan 2 in
int_of_char buf.[0] + (int_of_char buf.[1] lsl 8)
let bitrate = ref 128000
let usage = "usage: wav2ogg [options] source destination"
let use_ba = ref false
let _ =
Arg.parse
[
( "--bitrate",
Arg.Int (fun b -> bitrate := b * 1000),
"Bitrate, in kilobits per second, defaults to 128kbps" );
( "--buflen",
Arg.Int (fun i -> buflen := i),
"Size of chunks successively encoded" );
("-ba", Arg.Set use_ba, "Use big arrays");
]
(let pnum = ref (-1) in
fun s ->
incr pnum;
match !pnum with
| 0 -> src := s
| 1 -> dst := s
| _ ->
Printf.eprintf "Error: too many arguments\n";
exit 1)
usage;
if !src = "" || !dst = "" then (
Printf.printf "%s\n" usage;
exit 1);
let ic = open_in_bin !src in
let oc = open_out_bin !dst in
(* TODO: improve! *)
if input_string ic 4 <> "RIFF" then invalid_arg "No RIFF tag";
ignore (input_string ic 4);
if input_string ic 4 <> "WAVE" then invalid_arg "No WAVE tag";
if input_string ic 4 <> "fmt " then invalid_arg "No fmt tag";
let _ = input_int ic in
let _ = input_short ic in
(* TODO: should be 1 *)
let channels = input_short ic in
let infreq = input_int ic in
let _ = input_int ic in
(* bytes / s *)
let _ = input_short ic in
(* block align *)
let bits = input_short ic in
let fos buf =
let len = String.length buf / (2 * channels) in
let ans = Array.init channels (fun _ -> Array.make len 0.) in
for i = 0 to len - 1 do
for c = 0 to channels - 1 do
let n =
int_of_char buf.[(2 * channels * i) + (2 * c)]
+ (int_of_char buf.[(2 * channels * i) + (2 * c) + 1] lsl 8)
in
let n =
if n land (1 lsl 15) = 0 then n
else (n land 0b111111111111111) - 32768
in
ans.(c).(i) <- float n /. 32768.;
ans.(c).(i) <- max (-1.) (min 1. ans.(c).(i))
done
done;
ans
in
let baos buf =
let len = String.length buf / (2 * channels) in
let ans =
Array.init channels (fun _ ->
Bigarray.Array1.create Bigarray.float32 Bigarray.c_layout len)
in
for i = 0 to len - 1 do
for c = 0 to channels - 1 do
let n =
int_of_char buf.[(2 * channels * i) + (2 * c)]
+ (int_of_char buf.[(2 * channels * i) + (2 * c) + 1] lsl 8)
in
let n =
if n land (1 lsl 15) = 0 then n
else (n land 0b111111111111111) - 32768
in
ans.(c).{i} <- float n /. 32768.;
ans.(c).{i} <- max (-1.) (min 1. ans.(c).{i})
done
done;
ans
in
let enc = Encoder.create channels infreq (-1) !bitrate (-1) in
let os = Ogg.Stream.create () in
let encode buf =
if !use_ba then (
let fbuf = baos buf in
Encoder.encode_buffer_float_ba enc os fbuf 0
(Bigarray.Array1.dim fbuf.(0)))
else (
let fbuf = fos buf in
Encoder.encode_buffer_float enc os fbuf 0 (Array.length fbuf.(0)))
in
let start = Unix.time () in
Printf.printf "Input detected: PCM WAVE %d channels, %d Hz, %d bits\n%!"
channels infreq bits;
Printf.printf
"Encoding to: OGG %d channels, %d Hz, %d kbps\nPlease wait...\n%!" channels
infreq !bitrate;
Encoder.headerout enc os [("ARTIST", "test")];
(* skip headers *)
let rec aux () =
let tag = input_string ic 4 in
match tag with
| "LIST" ->
let n = input_int ic in
let _ = input_string ic n in
aux ()
| "data" -> ()
| _ -> invalid_arg "No data tag"
in
aux ();
(* This ensures the actual audio data will start on a new page, as per
* spec. *)
let ph, pb = Ogg.Stream.flush_page os in
output_string oc (ph ^ pb);
let buflen = !buflen in
let buf = Bytes.create buflen in
begin
try
while true do
try
really_input ic buf 0 buflen;
encode (Bytes.unsafe_to_string buf);
while true do
let ph, pb = Ogg.Stream.get_page os in
output_string oc (ph ^ pb)
done
with Ogg.Not_enough_data -> ()
done
with End_of_file -> ()
end;
Encoder.end_of_stream enc os;
begin
try
while true do
let ph, pb = Ogg.Stream.get_page os in
output_string oc (ph ^ pb)
done
with Ogg.Not_enough_data -> ()
end;
close_in ic;
close_out oc;
Printf.printf "Finished in %.0f seconds.\n" (Unix.time () -. start);
Gc.full_major ()
|