m3u.c
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:3k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * m3u.c :  M3U playlist export module
  3.  *****************************************************************************
  4.  * Copyright (C) 2004 VideoLAN
  5.  * $Id: m3u.c 7405 2004-04-21 12:13:26Z gbazin $
  6.  *
  7.  * Authors: Cl閙ent Stenac <zorglub@videolan.org>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #include <stdlib.h>                                      /* malloc(), free() */
  27. #include <vlc/vlc.h>
  28. #include <vlc/intf.h>
  29. #include <errno.h>                                                 /* ENOMEM */
  30. /*****************************************************************************
  31.  * Local prototypes
  32.  *****************************************************************************/
  33. int Export_M3U ( vlc_object_t * );
  34. /*****************************************************************************
  35.  * Export_M3U: main export function
  36.  *****************************************************************************/
  37. int Export_M3U( vlc_object_t *p_this )
  38. {
  39.     playlist_t *p_playlist = (playlist_t*)p_this;
  40.     playlist_export_t *p_export = (playlist_export_t *)p_playlist->p_private;
  41.     int i, j;
  42.     msg_Dbg(p_playlist, "Saving using M3U format");
  43.     /* Write header */
  44.     fprintf( p_export->p_file, "#EXTM3Un" );
  45.     /* Go through the playlist and add items */
  46.     for( i = 0; i< p_playlist->i_size ; i++)
  47.     {
  48.         /* General info */
  49.         if( p_playlist->pp_items[i]->input.psz_name &&
  50.     strcmp( p_playlist->pp_items[i]->input.psz_name,
  51.                     p_playlist->pp_items[i]->input.psz_uri ) )
  52.         {
  53.             char *psz_author =
  54.         playlist_GetInfo( p_playlist, i, _("General"), _("Author") );
  55.             fprintf( p_export->p_file, "#EXTINF:%i,%s,%sn",
  56.                      (int)(p_playlist->pp_items[i]->input.i_duration/1000000),
  57.                      psz_author ? psz_author : "",
  58.                      p_playlist->pp_items[i]->input.psz_name );
  59.         }
  60.         /* VLC specific options */
  61.         for( j = 0; j < p_playlist->pp_items[i]->input.i_options; j++ )
  62.         {
  63.             fprintf( p_export->p_file, "#EXTVLCOPT:%sn",
  64.                      p_playlist->pp_items[i]->input.ppsz_options[j][0] == ':' ?
  65.                      p_playlist->pp_items[i]->input.ppsz_options[j] + 1 :
  66.                      p_playlist->pp_items[i]->input.ppsz_options[j] );
  67.         }
  68.         fprintf( p_export->p_file, "%sn",
  69.                  p_playlist->pp_items[i]->input.psz_uri );
  70.     }
  71.     return VLC_SUCCESS;
  72. }