Add details for the get_Recorded_date APIs
[platform/core/api/media-content.git] / include_product / media_audio.h
1 /*
2 * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17
18 #ifndef __TIZEN_AUDIO_META_H__
19 #define __TIZEN_AUDIO_META_H__
20
21 #include <media_content_type.h>
22
23 #ifdef __cplusplus
24 extern "C" {
25 #endif /* __cplusplus */
26
27 /**
28  * @file media_audio.h
29  * @brief This file contains the audio metadata API and related functions to proceed with audio metadata. \n
30  *        Description of the audio content involves: album, artist, album_artist, author, genre and description tags. \n
31  *        Parameters of the recording are also supported such as format, bitrate, duration, size etc.
32  */
33
34 /**
35  * @addtogroup CAPI_CONTENT_MEDIA_AUDIO_META_MODULE
36  * @{
37  */
38
39 /**
40  * @brief Clones the audio metadata.
41  * @details This function copies the audio metadata handle from a source to destination.
42  *
43  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
44  *
45  * @remarks You must release the destination handle using audio_meta_destroy().
46  *
47  * @param[out] dst The destination handle to the audio metadata
48  * @param[in]  src The source handle to the audio metadata
49  *
50  * @return @c 0 on success,
51  *         otherwise a negative error value
52  *
53  * @retval #MEDIA_CONTENT_ERROR_NONE Successful
54  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
55  * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY Out of memory
56  *
57  * @see audio_meta_destroy()
58  */
59 int audio_meta_clone(audio_meta_h *dst, audio_meta_h src);
60
61 /**
62  * @brief Destroys the audio metadata.
63  * @details This function frees all resources related to the audio metadata handle. This handle
64  *          no longer can be used to perform any operation. A new handle has to
65  *          be created before the next use.
66  *
67  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
68  *
69  * @param[in] audio The audio metadata handle
70  *
71  * @return @c 0 on success,
72  *         otherwise a negative error value
73  *
74  * @retval #MEDIA_CONTENT_ERROR_NONE              Successful
75  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
76  *
77  * @pre Get a copy of audio metadata handle handle by calling audio_meta_clone().
78  *
79  * @see audio_meta_clone()
80  */
81 int audio_meta_destroy(audio_meta_h audio);
82
83 /**
84  * @brief Gets the ID of the media of the given audio metadata.
85  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
86  *
87  * @remarks You must release @a media_id using free().
88  *
89  * @param[in]  audio    The audio metadata handle
90  * @param[out] media_id The ID of the audio
91  *
92  * @return @c 0 on success,
93  *         otherwise a negative error value
94  *
95  * @retval #MEDIA_CONTENT_ERROR_NONE              Successful
96  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
97  * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY     Out of memory
98  */
99 int audio_meta_get_media_id(audio_meta_h audio, char **media_id);
100
101 /**
102  * @brief Gets the album of the given audio metadata.
103  * @details If the value is an empty string, the method returns "Unknown". \n
104  *                Since 3.0, if the media content has no album info, the method returns empty string.
105  *
106  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
107  *
108  * @remarks You must release @a album using free().
109  *
110  * @param[in]  audio The audio metadata handle
111  * @param[out] album The album of the audio metadata
112  *
113  * @return @c 0 on success,
114  *         otherwise a negative error value
115  *
116  * @retval #MEDIA_CONTENT_ERROR_NONE              Successful
117  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
118  * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY     Out of memory
119  */
120 int audio_meta_get_album(audio_meta_h audio, char **album);
121
122 /**
123  * @brief Gets the artist of the given audio metadata.
124  * @details If the value is an empty string, the method returns "Unknown". \n
125  *                Since 3.0, if the media content has no artist info, the method returns empty string.
126  *
127  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
128  *
129  * @remarks You must release @a artist using free().
130  *
131  * @param[in]  audio  The audio metadata handle
132  * @param[out] artist The artist of the audio metadata
133  *
134  * @return @c 0 on success,
135  *         otherwise a negative error value
136  *
137  * @retval #MEDIA_CONTENT_ERROR_NONE              Successful
138  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
139  * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY     Out of memory
140  */
141 int audio_meta_get_artist(audio_meta_h audio, char **artist);
142
143 /**
144  * @brief Gets the album artist of the given audio metadata.
145  * @details If the value is an empty string, the method returns "Unknown". \n
146  *                Since 3.0, if the media content has no album artist info, the method returns empty string.
147  *
148  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
149  *
150  * @remarks You must release @a album_artist using free().
151  *
152  * @param[in]  audio        The audio metadata handle
153  * @param[out] album_artist The album artist of the audio metadata
154  *
155  * @return @c 0 on success,
156  *         otherwise a negative error value
157  *
158  * @retval #MEDIA_CONTENT_ERROR_NONE              Successful
159  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
160  * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY     Out of memory
161  */
162 int audio_meta_get_album_artist(audio_meta_h audio, char **album_artist);
163
164 /**
165  * @brief Gets the genre of the given audio metadata.
166  * @details If the value is an empty string, the method returns "Unknown". \n
167  *                Since 3.0, if the media content has no genre info, the method returns empty string.
168  *
169  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
170  *
171  * @remarks You must release @a genre using free().
172  *
173  * @param[in]  audio The audio metadata handle
174  * @param[out] genre The genre of the audio metadata
175  *
176  * @return @c 0 on success,
177  *         otherwise a negative error value
178  *
179  * @retval #MEDIA_CONTENT_ERROR_NONE              Successful
180  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
181  * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY     Out of memory
182  */
183 int audio_meta_get_genre(audio_meta_h audio, char **genre);
184
185 /**
186  * @brief Gets the composer of the given audio metadata.
187  * @details If the value is an empty string, the method returns "Unknown". \n
188  *                Since 3.0, if the media content has no composer info, the method returns empty string.
189  *
190  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
191  *
192  * @remarks You must release @a composer using free().
193  *
194  * @param[in]  audio    The audio metadata handle
195  * @param[out] composer The composer of the audio metadata
196  *
197  * @return @c 0 on success,
198  *         otherwise a negative error value
199  *
200  * @retval #MEDIA_CONTENT_ERROR_NONE              Successful
201  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
202  * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY     Out of memory
203  */
204 int audio_meta_get_composer(audio_meta_h audio, char **composer);
205
206 /**
207  * @brief Gets the year of the given audio metadata.
208  * @details If the value is an empty string, the method returns "Unknown". \n
209  *                Since 3.0, if the media content has no year info, the method returns empty string.
210  *
211  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
212  *
213  * @remarks You must release @a year using free().
214  *
215  * @param[in]  audio The audio metadata handle
216  * @param[out] year  The year of the audio metadata
217  *
218  * @return @c 0 on success,
219  *         otherwise a negative error value
220  *
221  * @retval #MEDIA_CONTENT_ERROR_NONE              Successful
222  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
223  * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY     Out of memory
224  */
225 int audio_meta_get_year(audio_meta_h audio, char **year);
226
227 /**
228  * @brief Gets the recorded date of the given audio metadata.
229  * @details The recorded date is got from audio file's metadata. Some formats like mp4 use UTC and the rest can be different. \n
230  *              So, please refer to the format specification if needed.
231  *
232  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
233  *
234  * @remarks You must release @a recorded_date using free().
235  *
236  * @param[in]  audio         The audio metadata handle
237  * @param[out] recorded_date The recorded date of the audio metadata
238  *
239  * @return @c 0 on success,
240  *         otherwise a negative error value
241  *
242  * @retval #MEDIA_CONTENT_ERROR_NONE              Successful
243  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
244  * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY     Out of memory
245  */
246 int audio_meta_get_recorded_date(audio_meta_h audio, char **recorded_date);
247
248 /**
249  * @brief Gets the copyright notice of the given audio metadata.
250  * @details If the media content has no copyright info, the method returns empty string.
251  *
252  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
253  *
254  * @remarks You must release @a copyright using free().
255  *
256  * @param[in]  audio     The audio metadata handle
257  * @param[out] copyright The copyright of the audio metadata
258  *
259  * @return @c 0 on success,
260  *         otherwise a negative error value
261  *
262  * @retval #MEDIA_CONTENT_ERROR_NONE              Successful
263  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
264  * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY     Out of memory
265  */
266 int audio_meta_get_copyright(audio_meta_h audio, char **copyright);
267
268 /**
269  * @brief Gets the track number of the given audio metadata.
270  * @details If the value is an empty string, the method returns "Unknown". \n
271  *                Since 3.0, if the media content has no track info, the method returns empty string.
272  *
273  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
274  *
275  * @remarks You must release @a track_num using free().
276  *
277  * @param[in]  audio     The audio metadata handle
278  * @param[out] track_num The audio track number of the audio metadata
279  *
280  * @return @c 0 on success,
281  *         otherwise a negative error value
282  *
283  * @retval #MEDIA_CONTENT_ERROR_NONE              Successful
284  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
285  * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY     Out of memory
286  */
287 int audio_meta_get_track_num(audio_meta_h audio, char **track_num);
288
289 /**
290  * @brief Gets the bitrate of the given audio metadata in bitrate per second.
291  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
292  *
293  * @param[in]  audio    The audio metadata handle
294  * @param[out] bit_rate The audio bitrate in bit per second [bps]
295  *
296  * @return @c 0 on success,
297  *         otherwise a negative error value
298  *
299  * @retval #MEDIA_CONTENT_ERROR_NONE              Successful
300  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
301  */
302 int audio_meta_get_bit_rate(audio_meta_h audio, int *bit_rate);
303
304 /**
305  * @brief Gets bit per sample of the given audio metadata.
306  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
307  *
308  * @param [in]  audio        The handle to the audio metadata
309  * @param [out] bitpersample The audio bit per sample
310  *
311  * @return @c 0 on success,
312  *         otherwise a negative error value
313  *
314  * @retval #MEDIA_CONTENT_ERROR_NONE              Successful
315  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
316  */
317 int audio_meta_get_bitpersample(audio_meta_h audio, int *bitpersample);
318
319 /**
320  * @brief Gets the sample rate of the given audio metadata.
321  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
322  *
323  * @param[in]  audio       The audio metadata handle
324  * @param[out] sample_rate The audio sample rate[hz]
325  *
326  * @return @c 0 on success,
327  *         otherwise a negative error value
328  *
329  * @retval #MEDIA_CONTENT_ERROR_NONE              Successful
330  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
331  */
332 int audio_meta_get_sample_rate(audio_meta_h audio, int *sample_rate);
333
334 /**
335  * @brief Gets the channel of the given audio metadata.
336  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
337  *
338  * @param[in]  audio   The audio metadata handle
339  * @param[out] channel The channel of the audio
340  *
341  * @return @c 0 on success,
342  *         otherwise a negative error value
343  *
344  * @retval #MEDIA_CONTENT_ERROR_NONE              Successful
345  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
346  */
347 int audio_meta_get_channel(audio_meta_h audio, int *channel);
348
349 /**
350  * @brief Gets the track duration of the given audio metadata.
351  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
352  *
353  * @param[in]  audio    The audio metadata handle
354  * @param[out] duration The audio file duration
355  *
356  * @return @c 0 on success,
357  *         otherwise a negative error value
358  *
359  * @retval #MEDIA_CONTENT_ERROR_NONE              Successful
360  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
361  */
362 int audio_meta_get_duration(audio_meta_h audio, int *duration);
363
364 /**
365  * @deprecated Deprecated since 4.0. Related setter functions are deprecated, therefore this function is not needed anymore.
366  * @brief Updates an audio metadata with modified attributes in the media database.
367  * @details The function updates the given audio meta in the media database. The function should be called after any change in audio attributes, to be updated to the media
368  *          database.
369  *
370  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
371  *
372  * @privlevel public
373  * @privilege %http://tizen.org/privilege/content.write
374  *
375  * @remarks Do not call this function in callback function of foreach function like media_info_foreach_media_from_db().
376  *
377  * @param[in] audio The audio metadata handle
378  *
379  * @return @c 0 on success,
380  *         otherwise a negative error value
381  *
382  * @retval #MEDIA_CONTENT_ERROR_NONE              Successful
383  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
384  * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY     Out of memory
385  * @retval #MEDIA_CONTENT_ERROR_INVALID_OPERATION Invalid operation
386  * @retval #MEDIA_CONTENT_ERROR_DB_FAILED         DB Operation failed
387  * @retval #MEDIA_CONTENT_ERROR_DB_BUSY           DB Operation busy
388  * @retval #MEDIA_CONTENT_ERROR_NETWORK           Network fail
389  * @retval #MEDIA_CONTENT_ERROR_PERMISSION_DENIED Permission denied
390  *
391  * @pre This function requires opened connection to content service by media_content_connect().
392  *
393  * @see media_content_connect()
394  */
395 int audio_meta_update_to_db(audio_meta_h audio) TIZEN_DEPRECATED_API;
396
397 /**
398  *@}
399  */
400
401 #ifdef __cplusplus
402 }
403 #endif /* __cplusplus */
404
405 #endif /*__TIZEN_AUDIO_META_H__*/