sfinfo.c
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:2k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. /*
  2. ** Copyright (C) 1999-2000 Erik de Castro Lopo <erikd@zip.com.au>
  3. **  
  4. ** This program is free software; you can redistribute it and/or modify
  5. ** it under the terms of the GNU General Public License as published by
  6. ** the Free Software Foundation; either version 2 of the License, or
  7. ** (at your option) any later version.
  8. ** 
  9. ** This program is distributed in the hope that it will be useful,
  10. ** but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. ** GNU General Public License for more details.
  13. ** 
  14. ** You should have received a copy of the GNU General Public License
  15. ** along with this program; if not, write to the Free Software 
  16. ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  17. */
  18. #include <stdio.h>
  19. #include <string.h>
  20. #include <ctype.h>
  21. #include <sndfile.h>
  22. #define  BUFFER_LEN      4096
  23. static
  24. void print_usage (char *progname)
  25. { char buffer [256] ;
  26. sf_get_lib_version (buffer, 256) ;
  27. printf ("libsndfile version : %snn", buffer) ;
  28. printf ("nUsage : %s <file>n", progname) ;
  29. printf ("n        Prints out information about a sound file.n") ;
  30. printf ("n") ;
  31. } /* print_usage */
  32. int     main (int argc, char *argv[])
  33. { static char strbuffer [BUFFER_LEN] ;
  34. char  *progname, *infilename ;
  35. SNDFILE   *infile ;
  36. SF_INFO   sfinfo ;
  37. int k ;
  38. progname = strrchr (argv [0], '/') ;
  39. progname = progname ? progname + 1 : argv [0] ;
  40. if (argc < 2)
  41. { print_usage (progname) ;
  42. return  1 ;
  43. } ;
  44. for (k = 1 ; k < argc ; k++)
  45. { infilename = argv [k] ;
  46. infile = sf_open_read (infilename, &sfinfo) ;
  47. sf_get_header_info (infile, strbuffer, BUFFER_LEN, 0) ;
  48. puts (strbuffer) ;
  49. printf ("--------------------------------n") ;
  50. if (infile)
  51. { printf ("Sample Rate : %dn", sfinfo.samplerate) ;
  52. printf ("Samples     : %dn", sfinfo.samples) ;
  53. printf ("Channels    : %dn", sfinfo.channels) ;
  54. printf ("Bit Width   : %dn", sfinfo.pcmbitwidth) ;
  55. printf ("Format      : 0x%08Xn", sfinfo.format) ;
  56. printf ("Sections    : %dn", sfinfo.sections) ;
  57. printf ("Seekable    : %sn", (sfinfo.seekable ? "TRUE" : "FALSE")) ;
  58. printf ("Signal Max  : %gn", sf_signal_max (infile)) ;
  59. }
  60. else
  61. { printf ("Error : Not able to open input file %s.n", infilename) ;
  62. sf_perror (NULL) ;
  63. } ;
  64. sf_close (infile) ;
  65. } ;
  66. return 0 ;
  67. } /* main */