资源简介
实现了播放列表的mp3播放器,基于gtk实现,代码300行左右,核心代码几十行,对初学gtk的同学十分有益。linux开发资料少,望大家积极下载,谢谢。

代码片段和文件信息
#include “core.h“
#include “list.h“
#include
static PLAYSET *dumb;
static gboolean cb_play_bus(GstBus *bus GstMessage *msg gpointer data)
{
PLAYSET *player= (PLAYSET*)data;
GError *err;
gchar *debug;
/*
GstTagList *tags;
gchar *title;
gchar *artist;
gchar *album;
*/
switch(GST_MESSAGE_TYPE(msg) )
{
case GST_MESSAGE_ERROR:
gst_message_parse_error(msg &err &debug);
g_print(“Error: %s\n“ err->message);
g_error_free(err);
g_free(debug);
gst_element_set_state(player->play2 GST_STATE_NULL);
break;
case GST_MESSAGE_EOS:
coreNext(player);
break;
case GST_MESSAGE_TAG:
/* gst_message_parse_tag(msg &tags);
if(gst_tag_list_get_string(tags GST_TAG_title &title)&&
gst_tag_list_get_string(tags GST_TAG_ARTIST &artist)&&
gst_tag_list_get_string(tags GST_TAG_ALBUM &album) )
{
}
gst_tag_list_free(tags);
*/
break;
default:
break;
}
return TRUE;
}
static gboolean cb_dumb_bus(GstBus *bus GstMessage *msg gpointer data)
{
PLAYSET *player= (PLAYSET*)data;
GError *err;
gchar *debug;
GstTagList *tags;
gchar *title;
gchar *artist;
gchar *album;
GstFormat format= GST_FORMAT_TIME;
gint64 val= -1;
GList *p= NULL;
switch(GST_MESSAGE_TYPE(msg) )
{
case GST_MESSAGE_ERROR:
gst_message_parse_error(msg &err &debug);
g_print(“Error: %s\n“ err->message);
g_error_free(err);
g_free(debug);
gst_element_set_state(player->play2 GST_STATE_NULL);
break;
case GST_MESSAGE_EOS:
gst_element_set_state(player->play2 GST_STATE_NULL);
break;
case GST_MESSAGE_TAG:
gst_message_parse_tag(msg &tags);
if(gst_tag_list_get_string(tags GST_TAG_title &title)&&
gst_tag_list_get_string(tags GST_TAG_ARTIST &artist)&&
gst_tag_list_get_string(tags GST_TAG_ALBUM &album) )
{
p= g_list_nth(player->playlist player->num);
g_stpcpy(((PlayList*)p->data)->title title);
g_stpcpy(((PlayList*)p->data)->artist artist);
g_stpcpy(((PlayList*)p->data)->album album);
}
gst_tag_list_free(tags);
if(gst_element_query_duration(player->play2 &format &val) )
{
p= g_list_nth(player->playlist player->num);
/*((PlayList*)p->data)->duration= val/1000000000;*/
val= val/1000000000;
g_sprintf(((PlayList*)p->data)->duration “%02d:%02ds“ (gint)val/60 (gint)val%60);
gst_element_set_state(player->play2 GST_STATE_NULL);
if(!(2==player->mode||0==player->mode&&(g_list_length(player->playlist)-1==player->num) ) )
{
coreNext(player);
}
else
{
gst_element_set_state(player->play2 GST_STATE_NULL);
list_print(player->playlist);
return FALSE;
}
}
break;
default:
break;
}
return TRUE;
}
PLAYSET *coreCreate()
{
PLAYSET *player= NULL;
GstElement *play1;
GstElement *play2;
GstBus *bus;
player= (PLAYSET*)malloc(sizeof(PLAYSET) );
dumb= (PLAYSET*)malloc(sizeof(PLAYSET) );
if(NULL!= player&
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 9184 2011-06-30 20:29 PLAY\core.c
文件 1013 2011-06-29 15:21 PLAY\core.h
文件 1146 2011-06-29 16:04 PLAY\list.c
文件 328 2011-07-22 19:44 PLAY\list.h
文件 419 2011-06-30 09:26 PLAY\main.c
文件 451 2011-06-28 16:06 PLAY\makefile
目录 0 2011-07-25 17:49 PLAY\mp3
目录 0 2011-07-22 19:43 PLAY
----------- --------- ---------- ----- ----
12541 8
- 上一篇:知名的斯坦福兔子的三维点云数据,pcd格式
- 下一篇:树莓派3B原理图
相关资源
- uboot到linux logo显示不间断 补丁
- UNIX/LINUX编程实践教程的源码
- Linux任务管理器
- linux应用层的华容道游戏源代码
- mp3解析文档及其分析工具
- ubuntu9.10 可加载内核模块和字符设备驱
- MP3文件ID3v2ID3v2APEv2标签读取
- 操作系统实验——虚存管理实验
- linux下的发包工具sendip
- 尚观培训linux许巍关于c 的笔记和讲义
- 尚观培训linux董亮老师关于数据结构的
- linux 线程池源码 c 版
- linux C 电梯程序练习
- linux下用多进程同步方法解决生产者
- GTK实现数字表显示
- Linux 操作系统实验(全)
- Linux From Scratch 中文手册
- linux 网络实验 ftp程序
- Linux命令大全离线版&在线版
- 操作系统共享内存实验
- dos 下运行Linux 命令--gnu_utils
- linux 0.12内核源代码
- linux简易shell C实现
- linux实验报告及心得体会
- 基于GTK的Linux环境下的简易任务管理器
- linux扫雷游戏代码
- CAN Linux驱动代码
- Linux系统教材
- intel 82579LM 网卡驱动Linux系统版 v1.9.
- SA1110处理器掌上电脑液晶显示器设计
评论
共有 条评论