// audioinfo.cpp // // Rivendell web service portal -- AudioInfo service // // (C) Copyright 2011,2016 Fred Gleason // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License version 2 as // published by the Free Software Foundation. // // 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. // // 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., 675 Mass Ave, Cambridge, MA 02139, USA. // #include #include #include #include #include #include #include #include #include #include #include void Xport::AudioInfo() { RDWaveFile::Format format=RDWaveFile::Pcm16;; // // Verify Post // int cartnum=0; if(!xport_post->getValue("CART_NUMBER",&cartnum)) { XmlExit("Missing CART_NUMBER",400); } int cutnum=0; if(!xport_post->getValue("CUT_NUMBER",&cutnum)) { XmlExit("Missing CUT_NUMBER",400); } // // Verify User Perms // if(!xport_user->cartAuthorized(cartnum)) { XmlExit("No such cart",404); } // // Open Audio File // RDWaveFile *wave=new RDWaveFile(RDCut::pathName(cartnum,cutnum)); if(!wave->openWave()) { XmlExit("No such audio",404); } // // Send Data // printf("Content-type: application/xml\n\n"); switch(wave->getFormatTag()) { case WAVE_FORMAT_PCM: format=RDWaveFile::Pcm16; break; case WAVE_FORMAT_IEEE_FLOAT: format=RDWaveFile::Float32; break; case WAVE_FORMAT_MPEG: switch(wave->getHeadLayer()) { case 1: format=RDWaveFile::MpegL1; break; case 2: format=RDWaveFile::MpegL2; break; case 3: format=RDWaveFile::MpegL3; break; } break; default: XmlExit("Unknown audio format",400); break; } printf("\n"); printf("\n"); printf(" %u\n",cartnum); printf(" %u\n",cutnum); printf(" %d\n",format); printf(" %d\n",wave->getChannels()); printf(" %d\n",wave->getSamplesPerSec()); printf(" %d\n",wave->getHeadBitRate()); printf(" %u\n",wave->getSampleLength()); printf(" %u\n",wave->getExtTimeLength()); printf("\n"); delete wave; Exit(0); }