sndfile-to-text.c
上传用户:shw771010
上传日期:2022-01-05
资源大小:991k
文件大小:4k
源码类别:

Audio

开发平台:

Unix_Linux

  1. /*
  2. ** Copyright (C) 2008-2009 Erik de Castro Lopo <erikd@mega-nerd.com>
  3. **
  4. ** All rights reserved.
  5. **
  6. ** Redistribution and use in source and binary forms, with or without
  7. ** modification, are permitted provided that the following conditions are
  8. ** met:
  9. **
  10. **     * Redistributions of source code must retain the above copyright
  11. **       notice, this list of conditions and the following disclaimer.
  12. **     * Redistributions in binary form must reproduce the above copyright
  13. **       notice, this list of conditions and the following disclaimer in
  14. **       the documentation and/or other materials provided with the
  15. **       distribution.
  16. **     * Neither the author nor the names of any contributors may be used
  17. **       to endorse or promote products derived from this software without
  18. **       specific prior written permission.
  19. **
  20. ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  21. ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
  22. ** TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  23. ** PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
  24. ** CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  25. ** EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  26. ** PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
  27. ** OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  28. ** WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  29. ** OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  30. ** ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  31. */
  32. #include <stdio.h>
  33. #include <stdlib.h>
  34. #include <string.h>
  35. #include <ctype.h>
  36. #include <sndfile.h>
  37. #define BLOCK_SIZE 512
  38. static void
  39. print_usage (char *progname)
  40. { printf ("nUsage : %s <input file> <output file>n", progname) ;
  41. puts ("n"
  42. "    Where the output file will contain a line for each framen"
  43. "    and a column for each channel.n"
  44. ) ;
  45. } /* print_usage */
  46. static void
  47. convert_to_text (SNDFILE * infile, FILE * outfile, int channels)
  48. { float buf [channels * BLOCK_SIZE] ;
  49. int k, m, readcount ;
  50. while ((readcount = sf_readf_float (infile, buf, BLOCK_SIZE)) > 0)
  51. { for (k = 0 ; k < readcount ; k++)
  52. { for (m = 0 ; m < channels ; m++)
  53. fprintf (outfile, " % 12.10f", buf [k * channels + m]) ;
  54. fprintf (outfile, "n") ;
  55. } ;
  56. } ;
  57. return ;
  58. } /* convert_to_text */
  59. int
  60. main (int argc, char * argv [])
  61. { char  *progname, *infilename, *outfilename ;
  62. SNDFILE   *infile = NULL ;
  63. FILE *outfile = NULL ;
  64. SF_INFO   sfinfo ;
  65. progname = strrchr (argv [0], '/') ;
  66. progname = progname ? progname + 1 : argv [0] ;
  67. if (argc != 3)
  68. { print_usage (progname) ;
  69. return 1 ;
  70. } ;
  71. infilename = argv [1] ;
  72. outfilename = argv [2] ;
  73. if (strcmp (infilename, outfilename) == 0)
  74. { printf ("Error : Input and output filenames are the same.nn") ;
  75. print_usage (progname) ;
  76. return 1 ;
  77. } ;
  78. if (infilename [0] == '-')
  79. { printf ("Error : Input filename (%s) looks like an option.nn", infilename) ;
  80. print_usage (progname) ;
  81. return 1 ;
  82. } ;
  83. if (outfilename [0] == '-')
  84. { printf ("Error : Output filename (%s) looks like an option.nn", outfilename) ;
  85. print_usage (progname) ;
  86. return 1 ;
  87. } ;
  88. if ((infile = sf_open (infilename, SFM_READ, &sfinfo)) == NULL)
  89. { printf ("Not able to open input file %s.n", infilename) ;
  90. puts (sf_strerror (NULL)) ;
  91. return 1 ;
  92. } ;
  93. /* Open the output file. */
  94. if ((outfile = fopen (outfilename, "w")) == NULL)
  95. { printf ("Not able to open output file %s : %sn", outfilename, sf_strerror (NULL)) ;
  96. return 1 ;
  97. } ;
  98. fprintf (outfile, "# Converted from file %s.n", infilename) ;
  99. fprintf (outfile, "# Channels %d, Sample rate %dn", sfinfo.channels, sfinfo.samplerate) ;
  100. convert_to_text (infile, outfile, sfinfo.channels) ;
  101. sf_close (infile) ;
  102. fclose (outfile) ;
  103. return 0 ;
  104. } /* main */