2009-02-25 17:12:14 +01:00
|
|
|
/*
|
2020-01-18 19:22:19 +01:00
|
|
|
* Copyright 2003-2020 The Music Player Daemon Project
|
2009-02-25 17:12:14 +01:00
|
|
|
* http://www.musicpd.org
|
|
|
|
*
|
|
|
|
* This program 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.
|
|
|
|
*
|
|
|
|
* This program 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.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2009-02-25 17:12:14 +01:00
|
|
|
*/
|
|
|
|
|
2014-01-23 23:09:14 +01:00
|
|
|
#include "encoder/EncoderList.hxx"
|
|
|
|
#include "encoder/EncoderPlugin.hxx"
|
2015-01-08 19:31:57 +01:00
|
|
|
#include "encoder/EncoderInterface.hxx"
|
2015-01-14 21:56:28 +01:00
|
|
|
#include "encoder/ToOutputStream.hxx"
|
2020-01-18 20:07:09 +01:00
|
|
|
#include "pcm/AudioFormat.hxx"
|
|
|
|
#include "pcm/AudioParser.hxx"
|
2015-01-21 22:13:44 +01:00
|
|
|
#include "config/Block.hxx"
|
2015-01-14 21:56:28 +01:00
|
|
|
#include "fs/io/StdioOutputStream.hxx"
|
2018-07-17 21:56:43 +02:00
|
|
|
#include "util/PrintException.hxx"
|
2009-02-25 17:12:14 +01:00
|
|
|
|
2019-08-15 17:57:20 +02:00
|
|
|
#include <exception>
|
2016-05-04 18:46:06 +02:00
|
|
|
#include <memory>
|
|
|
|
|
2014-01-07 23:57:39 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2009-02-25 17:12:14 +01:00
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
2018-07-17 21:56:43 +02:00
|
|
|
try {
|
2009-02-25 17:12:14 +01:00
|
|
|
const char *encoder_name;
|
|
|
|
static char buffer[32768];
|
|
|
|
|
|
|
|
/* parse command line */
|
|
|
|
|
|
|
|
if (argc > 3) {
|
2013-12-15 17:12:43 +01:00
|
|
|
fprintf(stderr,
|
|
|
|
"Usage: run_encoder [ENCODER] [FORMAT] <IN >OUT\n");
|
|
|
|
return EXIT_FAILURE;
|
2009-02-25 17:12:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (argc > 1)
|
|
|
|
encoder_name = argv[1];
|
|
|
|
else
|
|
|
|
encoder_name = "vorbis";
|
|
|
|
|
|
|
|
/* create the encoder */
|
|
|
|
|
2013-07-30 09:04:05 +02:00
|
|
|
const auto plugin = encoder_plugin_get(encoder_name);
|
2020-02-01 13:49:19 +01:00
|
|
|
if (plugin == nullptr) {
|
2013-12-15 17:12:43 +01:00
|
|
|
fprintf(stderr, "No such encoder: %s\n", encoder_name);
|
|
|
|
return EXIT_FAILURE;
|
2009-02-25 17:12:14 +01:00
|
|
|
}
|
|
|
|
|
2015-01-21 22:13:44 +01:00
|
|
|
ConfigBlock block;
|
|
|
|
block.AddBlockParam("quality", "5.0", -1);
|
2009-02-25 17:12:14 +01:00
|
|
|
|
2018-07-17 21:56:43 +02:00
|
|
|
std::unique_ptr<PreparedEncoder> p_encoder(encoder_init(*plugin, block));
|
2009-02-25 17:12:14 +01:00
|
|
|
|
2018-07-17 21:56:43 +02:00
|
|
|
/* open the encoder */
|
2009-02-25 17:12:14 +01:00
|
|
|
|
2018-07-17 21:56:43 +02:00
|
|
|
AudioFormat audio_format(44100, SampleFormat::S16, 2);
|
|
|
|
if (argc > 2)
|
|
|
|
audio_format = ParseAudioFormat(argv[2], false);
|
2015-12-16 10:24:43 +01:00
|
|
|
|
2018-07-17 21:56:43 +02:00
|
|
|
std::unique_ptr<Encoder> encoder(p_encoder->Open(audio_format));
|
2009-02-25 17:12:14 +01:00
|
|
|
|
2018-07-17 21:56:43 +02:00
|
|
|
StdioOutputStream os(stdout);
|
2009-02-25 17:12:14 +01:00
|
|
|
|
2018-07-17 21:56:43 +02:00
|
|
|
EncoderToOutputStream(os, *encoder);
|
2012-10-01 23:17:13 +02:00
|
|
|
|
2018-07-17 21:56:43 +02:00
|
|
|
/* do it */
|
2009-02-25 17:12:14 +01:00
|
|
|
|
2018-07-17 21:56:43 +02:00
|
|
|
ssize_t nbytes;
|
|
|
|
while ((nbytes = read(0, buffer, sizeof(buffer))) > 0) {
|
|
|
|
encoder->Write(buffer, nbytes);
|
2015-12-16 10:24:43 +01:00
|
|
|
EncoderToOutputStream(os, *encoder);
|
2015-01-14 21:56:28 +01:00
|
|
|
}
|
2018-07-17 21:56:43 +02:00
|
|
|
|
|
|
|
encoder->End();
|
|
|
|
EncoderToOutputStream(os, *encoder);
|
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
} catch (...) {
|
|
|
|
PrintException(std::current_exception());
|
|
|
|
return EXIT_FAILURE;
|
2009-02-25 17:12:14 +01:00
|
|
|
}
|