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

Audio

开发平台:

Unix_Linux

  1. /*
  2. ** Copyright (C) 2008 George Blood Audio
  3. ** Written by Erik de Castro Lopo <erikd@mega-nerd.com>
  4. **
  5. ** All rights reserved.
  6. **
  7. ** Redistribution and use in source and binary forms, with or without
  8. ** modification, are permitted provided that the following conditions are
  9. ** met:
  10. **
  11. **     * Redistributions of source code must retain the above copyright
  12. **       notice, this list of conditions and the following disclaimer.
  13. **     * Redistributions in binary form must reproduce the above copyright
  14. **       notice, this list of conditions and the following disclaimer in
  15. **       the documentation and/or other materials provided with the
  16. **       distribution.
  17. **     * Neither the author nor the names of any contributors may be used
  18. **       to endorse or promote products derived from this software without
  19. **       specific prior written permission.
  20. **
  21. ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  22. ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
  23. ** TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  24. ** PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
  25. ** CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  26. ** EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  27. ** PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
  28. ** OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  29. ** WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  30. ** OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  31. ** ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  32. */
  33. #include <config.h>
  34. #include <stdio.h>
  35. #include <stdlib.h>
  36. #include <string.h>
  37. #include <ctype.h>
  38. #include <time.h>
  39. #include <sndfile.h>
  40. #include "common.h"
  41. #define BUFFER_LEN (1 << 16)
  42. static void usage_exit (const char *progname, int exit_code) ;
  43. static void missing_param (const char * option) ;
  44. static void read_localtime (struct tm * timedata) ;
  45. static int has_bext_fields_set (const METADATA_INFO * info) ;
  46. int
  47. main (int argc, char *argv [])
  48. { METADATA_INFO info ;
  49. struct tm timedata ;
  50. const char *progname ;
  51. const char * filenames [2] = { NULL, NULL } ;
  52. int k ;
  53. /* Store the program name. */
  54. progname = strrchr (argv [0], '/') ;
  55. progname = progname ? progname + 1 : argv [0] ;
  56. /* Check if we've been asked for help. */
  57. if (argc < 3 || strcmp (argv [1], "--help") == 0 || strcmp (argv [1], "-h") == 0)
  58. usage_exit (progname, 0) ;
  59. /* Clear set all fields of the struct to zero bytes. */
  60. memset (&info, 0, sizeof (info)) ;
  61. /* Get the time in case we need it later. */
  62. read_localtime (&timedata) ;
  63. for (k = 1 ; k < argc ; k++)
  64. { char tmp [20] ;
  65. if (argv [k][0] != '-')
  66. { if (filenames [0] == NULL)
  67. filenames [0] = argv [k] ;
  68. else if (filenames [1] == NULL)
  69. filenames [1] = argv [k] ;
  70. else
  71. { printf ("Error : Already have two file names on the command line and then found '%s'.nn", argv [k]) ;
  72. usage_exit (progname, 1) ;
  73. } ;
  74. continue ;
  75. } ;
  76. #define HANDLE_BEXT_ARG(cmd,field) 
  77. if (strcmp (argv [k], cmd) == 0) 
  78. { k ++ ; 
  79. if (k == argc) missing_param (argv [k - 1]) ; 
  80. info.field = argv [k] ; 
  81. continue ; 
  82. } ;
  83. HANDLE_BEXT_ARG ("--bext-description", description) ;
  84. HANDLE_BEXT_ARG ("--bext-originator", originator) ;
  85. HANDLE_BEXT_ARG ("--bext-orig-ref", originator_reference) ;
  86. HANDLE_BEXT_ARG ("--bext-umid", umid) ;
  87. HANDLE_BEXT_ARG ("--bext-orig-date", origination_date) ;
  88. HANDLE_BEXT_ARG ("--bext-orig-time", origination_time) ;
  89. HANDLE_BEXT_ARG ("--bext-coding-hist", coding_history) ;
  90. #define HANDLE_STR_ARG(cmd,field) 
  91. if (strcmp (argv [k], cmd) == 0) 
  92. { k ++ ; 
  93. if (k == argc) missing_param (argv [k - 1]) ; 
  94. info.field = argv [k] ; 
  95. continue ; 
  96. } ;
  97. HANDLE_STR_ARG ("--str-title", title) ;
  98. HANDLE_STR_ARG ("--str-copyright", copyright) ;
  99. HANDLE_STR_ARG ("--str-artist", artist) ;
  100. HANDLE_STR_ARG ("--str-date", date) ;
  101. HANDLE_STR_ARG ("--str-album", album) ;
  102. HANDLE_STR_ARG ("--str-license", license) ;
  103. /* Following options do not take an argument. */
  104. if (strcmp (argv [k], "--bext-auto-time-date") == 0)
  105. { snprintf (tmp, sizeof (tmp), "%02d:%02d:%02d", timedata.tm_hour, timedata.tm_min, timedata.tm_sec) ;
  106. info.origination_time = strdup (tmp) ;
  107. snprintf (tmp, sizeof (tmp), "%04d-%02d-%02d", timedata.tm_year + 1900, timedata.tm_mon + 1, timedata.tm_mday) ;
  108. info.origination_date = strdup (tmp) ;
  109. continue ;
  110. } ;
  111. if (strcmp (argv [k], "--bext-auto-time") == 0)
  112. { snprintf (tmp, sizeof (tmp), "%02d:%02d:%02d", timedata.tm_hour, timedata.tm_min, timedata.tm_sec) ;
  113. info.origination_time = strdup (tmp) ;
  114. continue ;
  115. } ;
  116. if (strcmp (argv [k], "--bext-auto-date") == 0)
  117. { snprintf (tmp, sizeof (tmp), "%04d-%02d-%02d", timedata.tm_year + 1900, timedata.tm_mon + 1, timedata.tm_mday) ;
  118. info.origination_date = strdup (tmp) ;
  119. continue ;
  120. } ;
  121. if (strcmp (argv [k], "--str-auto-date") == 0)
  122. { snprintf (tmp, sizeof (tmp), "%04d-%02d-%02d", timedata.tm_year + 1900, timedata.tm_mon + 1, timedata.tm_mday) ;
  123. info.date = strdup (tmp) ;
  124. continue ;
  125. } ;
  126. printf ("Error : Don't know what to do with command line arg '%s'.nn", argv [k]) ;
  127. usage_exit (progname, 1) ;
  128. } ;
  129. /* Find out if any of the 'bext' fields are set. */
  130. info.has_bext_fields = has_bext_fields_set (&info) ;
  131. if (filenames [0] == NULL)
  132. { printf ("Error : No input file specificed.nn") ;
  133. exit (1) ;
  134. } ;
  135. if (filenames [1] != NULL && strcmp (filenames [0], filenames [1]) == 0)
  136. { printf ("Error : Input and output files are the same.nn") ;
  137. exit (1) ;
  138. } ;
  139. if (info.coding_history != NULL && filenames [1] == NULL)
  140. { printf ("n"
  141. "Error : Trying to update coding history of an existing file which unfortunatelyn"
  142. "        is not supported. Instead, create a new file using :n"
  143. "n"
  144. "        %s --bext-coding-hist "Coding history" old_file.wav new_file.wavn"
  145. "n",
  146. progname) ;
  147. exit (1) ;
  148. } ;
  149. sfe_apply_metadata_changes (filenames, &info) ;
  150. return 0 ;
  151. } /* main */
  152. /*==============================================================================
  153. ** Print version and usage.
  154. */
  155. static void
  156. usage_exit (const char *progname, int exit_code)
  157. { printf ("nUsage :nn"
  158. "  %s [options] <file>n"
  159. "  %s [options] <input file> <output file>n"
  160. "n",
  161. progname, progname) ;
  162. puts (
  163. "Where an option is made up of a pair of a field to set (one ofn"
  164. "the 'bext' or metadata fields below) and a string. Fields aren"
  165. "as follows :n"
  166. ) ;
  167. puts (
  168. "    --bext-description       Set the 'bext' description.n"
  169. "    --bext-originator        Set the 'bext' originator.n"
  170. "    --bext-orig-ref          Set the 'bext' originator reference.n"
  171. "    --bext-umid              Set the 'bext' UMID.n"
  172. "    --bext-orig-date         Set the 'bext' origination date.n"
  173. "    --bext-orig-time         Set the 'bext' origination time.n"
  174. "    --bext-coding-hist       Set the 'bext' coding historyn"
  175. "n"
  176. "    --str-title              Set the metadata title.n"
  177. "    --str-copyright          Set the metadata copyright.n"
  178. "    --str-artist             Set the metadata artist.n"
  179. "    --str-date               Set the metadata date.n"
  180. "    --str-album              Set the metadata album.n"
  181. "    --str-license            Set the metadata license.n"
  182. ) ;
  183. puts (
  184. "There are also the following arguments which do not take an"
  185. "parameter :nn"
  186. "    --bext-auto-time-date    Set the 'bext' time and date to current time/date.n"
  187. "    --bext-auto-time         Set the 'bext' time to current time.n"
  188. "    --bext-auto-date         Set the 'bext' date to current date.n"
  189. "    --str-auto-date          Set the metadata date to current date.n"
  190. ) ;
  191. puts (
  192. "Most of the above operations can be done in-place on an existingn"
  193. "file. If any operation cannot be performed, the application willn"
  194. "exit with an appropriate error message.n"
  195. ) ;
  196. exit (exit_code) ;
  197. } /* usage_exit */
  198. static void
  199. missing_param (const char * option)
  200. {
  201. printf ("Error : Option '%s' needs a parameter but doesn't seem to have one.nn", option) ;
  202. exit (1) ;
  203. } /* missing_param */
  204. /*==============================================================================
  205. */
  206. static int
  207. has_bext_fields_set (const METADATA_INFO * info)
  208. {
  209. if (info->description || info->originator || info->originator_reference)
  210. return 1 ;
  211. if (info->origination_date || info->origination_time || info->umid || info->coding_history)
  212. return 1 ;
  213. return 0 ;
  214. } /* has_bext_fields_set */
  215. static void
  216. read_localtime (struct tm * timedata)
  217. { time_t current ;
  218. time (&current) ;
  219. memset (timedata, 0, sizeof (struct tm)) ;
  220. #if defined (HAVE_LOCALTIME_R)
  221. /* If the re-entrant version is available, use it. */
  222. localtime_r (&current, timedata) ;
  223. #elif defined (HAVE_LOCALTIME)
  224. {
  225. struct tm *tmptr ;
  226. /* Otherwise use the standard one and copy the data to local storage. */
  227. if ((tmptr = localtime (&current)) != NULL)
  228. memcpy (timedata, tmptr, sizeof (struct tm)) ;
  229. }
  230. #endif
  231. return ;
  232. } /* read_localtime */