3 /* note: this requires gstreamer 0.10.x and a big list of plugins. */
4 /* it's currently hardcoded to use a big-endian alsasink as sink. */
5 #include <lib/base/eerror.h>
6 #include <lib/base/object.h>
7 #include <lib/base/ebase.h>
9 #include <lib/service/servicemp3.h>
10 #include <lib/service/service.h>
11 #include <lib/components/file_eraser.h>
12 #include <lib/base/init_num.h>
13 #include <lib/base/init.h>
15 #include <gst/pbutils/missing-plugins.h>
18 #include <lib/gui/esubtitle.h>
22 eServiceFactoryMP3::eServiceFactoryMP3()
24 ePtr<eServiceCenter> sc;
26 eServiceCenter::getPrivInstance(sc);
29 std::list<std::string> extensions;
30 extensions.push_back("mp2");
31 extensions.push_back("mp3");
32 extensions.push_back("ogg");
33 extensions.push_back("mpg");
34 extensions.push_back("vob");
35 extensions.push_back("wav");
36 extensions.push_back("wave");
37 extensions.push_back("mkv");
38 extensions.push_back("avi");
39 extensions.push_back("divx");
40 extensions.push_back("dat");
41 extensions.push_back("flac");
42 extensions.push_back("mp4");
43 extensions.push_back("mov");
44 extensions.push_back("m4a");
45 sc->addServiceFactory(eServiceFactoryMP3::id, this, extensions);
48 m_service_info = new eStaticServiceMP3Info();
51 eServiceFactoryMP3::~eServiceFactoryMP3()
53 ePtr<eServiceCenter> sc;
55 eServiceCenter::getPrivInstance(sc);
57 sc->removeServiceFactory(eServiceFactoryMP3::id);
60 DEFINE_REF(eServiceFactoryMP3)
63 RESULT eServiceFactoryMP3::play(const eServiceReference &ref, ePtr<iPlayableService> &ptr)
66 ptr = new eServiceMP3(ref.path.c_str(),ref.getName().c_str());
70 RESULT eServiceFactoryMP3::record(const eServiceReference &ref, ePtr<iRecordableService> &ptr)
76 RESULT eServiceFactoryMP3::list(const eServiceReference &, ePtr<iListableService> &ptr)
82 RESULT eServiceFactoryMP3::info(const eServiceReference &ref, ePtr<iStaticServiceInformation> &ptr)
88 class eMP3ServiceOfflineOperations: public iServiceOfflineOperations
90 DECLARE_REF(eMP3ServiceOfflineOperations);
91 eServiceReference m_ref;
93 eMP3ServiceOfflineOperations(const eServiceReference &ref);
95 RESULT deleteFromDisk(int simulate);
96 RESULT getListOfFilenames(std::list<std::string> &);
99 DEFINE_REF(eMP3ServiceOfflineOperations);
101 eMP3ServiceOfflineOperations::eMP3ServiceOfflineOperations(const eServiceReference &ref): m_ref((const eServiceReference&)ref)
105 RESULT eMP3ServiceOfflineOperations::deleteFromDisk(int simulate)
111 std::list<std::string> res;
112 if (getListOfFilenames(res))
115 eBackgroundFileEraser *eraser = eBackgroundFileEraser::getInstance();
117 eDebug("FATAL !! can't get background file eraser");
119 for (std::list<std::string>::iterator i(res.begin()); i != res.end(); ++i)
121 eDebug("Removing %s...", i->c_str());
123 eraser->erase(i->c_str());
125 ::unlink(i->c_str());
132 RESULT eMP3ServiceOfflineOperations::getListOfFilenames(std::list<std::string> &res)
135 res.push_back(m_ref.path);
140 RESULT eServiceFactoryMP3::offlineOperations(const eServiceReference &ref, ePtr<iServiceOfflineOperations> &ptr)
142 ptr = new eMP3ServiceOfflineOperations(ref);
146 // eStaticServiceMP3Info
149 // eStaticServiceMP3Info is seperated from eServiceMP3 to give information
150 // about unopened files.
152 // probably eServiceMP3 should use this class as well, and eStaticServiceMP3Info
153 // should have a database backend where ID3-files etc. are cached.
154 // this would allow listing the mp3 database based on certain filters.
156 DEFINE_REF(eStaticServiceMP3Info)
158 eStaticServiceMP3Info::eStaticServiceMP3Info()
162 RESULT eStaticServiceMP3Info::getName(const eServiceReference &ref, std::string &name)
164 if ( ref.name.length() )
168 size_t last = ref.path.rfind('/');
169 if (last != std::string::npos)
170 name = ref.path.substr(last+1);
177 int eStaticServiceMP3Info::getLength(const eServiceReference &ref)
184 eServiceMP3::eServiceMP3(const char *filename, const char *title): m_filename(filename), m_title(title), m_pump(eApp, 1)
186 m_seekTimeout = eTimer::create(eApp);
187 m_subtitle_sync_timer = eTimer::create(eApp);
189 m_currentAudioStream = 0;
190 m_currentSubtitleStream = 0;
191 m_subtitle_widget = 0;
192 m_currentTrickRatio = 0;
193 CONNECT(m_seekTimeout->timeout, eServiceMP3::seekTimeoutCB);
194 CONNECT(m_subtitle_sync_timer->timeout, eServiceMP3::pushSubtitles);
195 CONNECT(m_pump.recv_msg, eServiceMP3::gstPoll);
196 m_aspect = m_width = m_height = m_framerate = m_progressive = -1;
199 eDebug("eServiceMP3::construct!");
201 const char *ext = strrchr(filename, '.');
205 sourceStream sourceinfo;
206 sourceinfo.is_video = FALSE;
207 sourceinfo.audiotype = atUnknown;
208 if ( (strcasecmp(ext, ".mpeg") && strcasecmp(ext, ".mpg") && strcasecmp(ext, ".vob") && strcasecmp(ext, ".bin") && strcasecmp(ext, ".dat") ) == 0 )
210 sourceinfo.containertype = ctMPEGPS;
211 sourceinfo.is_video = TRUE;
213 else if ( strcasecmp(ext, ".ts") == 0 )
215 sourceinfo.containertype = ctMPEGTS;
216 sourceinfo.is_video = TRUE;
218 else if ( strcasecmp(ext, ".mkv") == 0 )
220 sourceinfo.containertype = ctMKV;
221 sourceinfo.is_video = TRUE;
223 else if ( strcasecmp(ext, ".avi") == 0 || strcasecmp(ext, ".divx") == 0)
225 sourceinfo.containertype = ctAVI;
226 sourceinfo.is_video = TRUE;
228 else if ( strcasecmp(ext, ".mp4") == 0 || strcasecmp(ext, ".mov") == 0)
230 sourceinfo.containertype = ctMP4;
231 sourceinfo.is_video = TRUE;
233 else if ( strcasecmp(ext, ".m4a") == 0 )
235 sourceinfo.containertype = ctMP4;
236 sourceinfo.audiotype = atAAC;
238 else if ( strcasecmp(ext, ".mp3") == 0 )
239 sourceinfo.audiotype = atMP3;
240 else if ( (strncmp(filename, "/autofs/", 8) || strncmp(filename+strlen(filename)-13, "/track-", 7) || strcasecmp(ext, ".wav")) == 0 )
241 sourceinfo.containertype = ctCDA;
242 if ( strcasecmp(ext, ".dat") == 0 )
244 sourceinfo.containertype = ctVCD;
245 sourceinfo.is_video = TRUE;
247 if ( (strncmp(filename, "http://", 7)) == 0 || (strncmp(filename, "udp://", 6)) == 0 || (strncmp(filename, "rtsp://", 7)) == 0 )
248 sourceinfo.is_streaming = TRUE;
252 if ( sourceinfo.is_streaming )
254 uri = g_strdup_printf ("%s", filename);
256 else if ( sourceinfo.containertype == ctCDA )
258 int i_track = atoi(filename+18);
259 uri = g_strdup_printf ("cdda://%i", i_track);
261 else if ( sourceinfo.containertype == ctVCD )
263 int fd = open(filename,O_RDONLY);
265 int ret = read(fd, tmp, 128*1024);
267 if ( ret == -1 ) // this is a "REAL" VCD
268 uri = g_strdup_printf ("vcd://");
270 uri = g_strdup_printf ("file://%s", filename);
274 uri = g_strdup_printf ("file://%s", filename);
276 eDebug("eServiceMP3::playbin2 uri=%s", uri);
278 m_gst_playbin = gst_element_factory_make("playbin2", "playbin");
280 m_error_message = "failed to create GStreamer pipeline!\n";
282 g_object_set (G_OBJECT (m_gst_playbin), "uri", uri, NULL);
284 int flags = 0x47; // ( == GST_PLAY_FLAG_VIDEO | GST_PLAY_FLAG_AUDIO | GST_PLAY_FLAG_NATIVE_VIDEO | GST_PLAY_FLAG_TEXT )
285 g_object_set (G_OBJECT (m_gst_playbin), "flags", flags, NULL);
289 GstElement *subsink = gst_element_factory_make("appsink", "subtitle_sink");
291 eDebug("eServiceMP3::sorry, can't play: missing gst-plugin-appsink");
294 g_object_set (G_OBJECT (subsink), "emit-signals", TRUE, NULL);
295 g_signal_connect (subsink, "new-buffer", G_CALLBACK (gstCBsubtitleAvail), this);
296 g_object_set (G_OBJECT (m_gst_playbin), "text-sink", subsink, NULL);
301 gst_bus_set_sync_handler(gst_pipeline_get_bus (GST_PIPELINE (m_gst_playbin)), gstBusSyncHandler, this);
302 char srt_filename[strlen(filename)+1];
303 strncpy(srt_filename,filename,strlen(filename)-3);
304 srt_filename[strlen(filename)-3]='\0';
305 strcat(srt_filename, "srt");
307 if (stat(srt_filename, &buffer) == 0)
309 std::string suburi = "file://" + (std::string)srt_filename;
310 eDebug("eServiceMP3::subtitle uri: %s",suburi.c_str());
311 g_object_set (G_OBJECT (m_gst_playbin), "suburi", suburi.c_str(), NULL);
314 subs.language_code = std::string("und");
315 m_subtitleStreams.push_back(subs);
319 m_event((iPlayableService*)this, evUser+12);
322 gst_object_unref(GST_OBJECT(m_gst_playbin));
324 eDebug("eServiceMP3::sorry, can't play: %s",m_error_message.c_str());
328 gst_element_set_state (m_gst_playbin, GST_STATE_PLAYING);
331 eServiceMP3::~eServiceMP3()
333 delete m_subtitle_widget;
334 if (m_state == stRunning)
338 gst_tag_list_free(m_stream_tags);
342 gst_object_unref (GST_OBJECT (m_gst_playbin));
343 eDebug("eServiceMP3::destruct!");
347 DEFINE_REF(eServiceMP3);
349 RESULT eServiceMP3::connectEvent(const Slot2<void,iPlayableService*,int> &event, ePtr<eConnection> &connection)
351 connection = new eConnection((iPlayableService*)this, m_event.connect(event));
355 RESULT eServiceMP3::start()
357 ASSERT(m_state == stIdle);
362 eDebug("eServiceMP3::starting pipeline");
363 gst_element_set_state (m_gst_playbin, GST_STATE_PLAYING);
365 m_event(this, evStart);
369 RESULT eServiceMP3::stop()
371 ASSERT(m_state != stIdle);
372 if (m_state == stStopped)
374 eDebug("eServiceMP3::stop %s", m_filename.c_str());
375 gst_element_set_state(m_gst_playbin, GST_STATE_NULL);
380 RESULT eServiceMP3::setTarget(int target)
385 RESULT eServiceMP3::pause(ePtr<iPauseableService> &ptr)
391 RESULT eServiceMP3::setSlowMotion(int ratio)
395 eDebug("eServiceMP3::setSlowMotion ratio=%f",1/(float)ratio);
396 return trickSeek(1/(float)ratio);
399 RESULT eServiceMP3::setFastForward(int ratio)
401 eDebug("eServiceMP3::setFastForward ratio=%i",ratio);
402 return trickSeek(ratio);
405 void eServiceMP3::seekTimeoutCB()
408 getPlayPosition(ppos);
410 ppos += 90000*m_currentTrickRatio;
415 m_seekTimeout->stop();
421 m_seekTimeout->stop();
428 RESULT eServiceMP3::pause()
430 if (!m_gst_playbin || m_state != stRunning)
432 GstStateChangeReturn res = gst_element_set_state(m_gst_playbin, GST_STATE_PAUSED);
433 if (res == GST_STATE_CHANGE_ASYNC)
436 getPlayPosition(ppos);
442 RESULT eServiceMP3::unpause()
444 m_subtitle_pages.clear();
445 if (!m_gst_playbin || m_state != stRunning)
448 GstStateChangeReturn res;
449 res = gst_element_set_state(m_gst_playbin, GST_STATE_PLAYING);
453 /* iSeekableService */
454 RESULT eServiceMP3::seek(ePtr<iSeekableService> &ptr)
460 RESULT eServiceMP3::getLength(pts_t &pts)
464 if (m_state != stRunning)
467 GstFormat fmt = GST_FORMAT_TIME;
470 if (!gst_element_query_duration(m_gst_playbin, &fmt, &len))
472 /* len is in nanoseconds. we have 90 000 pts per second. */
478 RESULT eServiceMP3::seekTo(pts_t to)
483 /* convert pts to nanoseconds */
484 gint64 time_nanoseconds = to * 11111LL;
485 if (!gst_element_seek (m_gst_playbin, 1.0, GST_FORMAT_TIME, GST_SEEK_FLAG_FLUSH,
486 GST_SEEK_TYPE_SET, time_nanoseconds,
487 GST_SEEK_TYPE_NONE, GST_CLOCK_TIME_NONE))
489 eDebug("eServiceMP3::seekTo failed");
495 RESULT eServiceMP3::trickSeek(gdouble ratio)
500 return seekRelative(0, 0);
504 flags = GST_SEEK_FLAG_NONE;
505 flags |= GstSeekFlags (GST_SEEK_FLAG_FLUSH);
506 // flags |= GstSeekFlags (GST_SEEK_FLAG_ACCURATE);
507 flags |= GstSeekFlags (GST_SEEK_FLAG_KEY_UNIT);
508 // flags |= GstSeekFlags (GST_SEEK_FLAG_SEGMENT);
509 // flags |= GstSeekFlags (GST_SEEK_FLAG_SKIP);
511 GstFormat fmt = GST_FORMAT_TIME;
513 gst_element_query_duration(m_gst_playbin, &fmt, &len);
514 gst_element_query_position(m_gst_playbin, &fmt, &pos);
518 s_event = gst_event_new_seek (ratio, GST_FORMAT_TIME, flags, GST_SEEK_TYPE_SET, pos, GST_SEEK_TYPE_SET, len);
520 eDebug("eServiceMP3::trickSeek with rate %lf to %" GST_TIME_FORMAT " ", ratio, GST_TIME_ARGS (pos));
524 s_event = gst_event_new_seek (ratio, GST_FORMAT_TIME, GST_SEEK_FLAG_SKIP|GST_SEEK_FLAG_FLUSH, GST_SEEK_TYPE_NONE, -1, GST_SEEK_TYPE_NONE, -1);
527 if (!gst_element_send_event ( GST_ELEMENT (m_gst_playbin), s_event))
529 eDebug("eServiceMP3::trickSeek failed");
537 RESULT eServiceMP3::seekRelative(int direction, pts_t to)
543 getPlayPosition(ppos);
544 ppos += to * direction;
552 RESULT eServiceMP3::getPlayPosition(pts_t &pts)
556 if (m_state != stRunning)
559 GstFormat fmt = GST_FORMAT_TIME;
562 if (!gst_element_query_position(m_gst_playbin, &fmt, &len))
565 /* len is in nanoseconds. we have 90 000 pts per second. */
570 RESULT eServiceMP3::setTrickmode(int trick)
572 /* trickmode is not yet supported by our dvbmediasinks. */
576 RESULT eServiceMP3::isCurrentlySeekable()
581 RESULT eServiceMP3::info(ePtr<iServiceInformation>&i)
587 RESULT eServiceMP3::getName(std::string &name)
592 size_t n = name.rfind('/');
593 if (n != std::string::npos)
594 name = name.substr(n + 1);
602 int eServiceMP3::getInfo(int w)
608 case sVideoHeight: return m_height;
609 case sVideoWidth: return m_width;
610 case sFrameRate: return m_framerate;
611 case sProgressive: return m_progressive;
612 case sAspect: return m_aspect;
616 case sTagTitleSortname:
617 case sTagArtistSortname:
618 case sTagAlbumSortname:
623 case sTagExtendedComment:
626 case sTagDescription:
629 case sTagOrganization:
631 case sTagCopyrightURI:
639 case sTagLanguageCode:
641 case sTagChannelMode:
648 case sTagReferenceLevel:
649 case sTagBeatsPerMinute:
651 case sTagPreviewImage:
653 return resIsPyObject;
654 case sTagTrackNumber:
655 tag = GST_TAG_TRACK_NUMBER;
658 tag = GST_TAG_TRACK_COUNT;
660 case sTagAlbumVolumeNumber:
661 tag = GST_TAG_ALBUM_VOLUME_NUMBER;
663 case sTagAlbumVolumeCount:
664 tag = GST_TAG_ALBUM_VOLUME_COUNT;
667 tag = GST_TAG_BITRATE;
669 case sTagNominalBitrate:
670 tag = GST_TAG_NOMINAL_BITRATE;
672 case sTagMinimumBitrate:
673 tag = GST_TAG_MINIMUM_BITRATE;
675 case sTagMaximumBitrate:
676 tag = GST_TAG_MAXIMUM_BITRATE;
679 tag = GST_TAG_SERIAL;
681 case sTagEncoderVersion:
682 tag = GST_TAG_ENCODER_VERSION;
691 if (!m_stream_tags || !tag)
695 if (gst_tag_list_get_uint(m_stream_tags, tag, &value))
701 std::string eServiceMP3::getInfoString(int w)
703 if ( !m_stream_tags )
712 tag = GST_TAG_ARTIST;
717 case sTagTitleSortname:
718 tag = GST_TAG_TITLE_SORTNAME;
720 case sTagArtistSortname:
721 tag = GST_TAG_ARTIST_SORTNAME;
723 case sTagAlbumSortname:
724 tag = GST_TAG_ALBUM_SORTNAME;
728 if (gst_tag_list_get_date(m_stream_tags, GST_TAG_DATE, &date))
731 g_date_strftime (res, sizeof(res), "%Y-%M-%D", date);
732 return (std::string)res;
736 tag = GST_TAG_COMPOSER;
742 tag = GST_TAG_COMMENT;
744 case sTagExtendedComment:
745 tag = GST_TAG_EXTENDED_COMMENT;
748 tag = GST_TAG_LOCATION;
751 tag = GST_TAG_HOMEPAGE;
753 case sTagDescription:
754 tag = GST_TAG_DESCRIPTION;
757 tag = GST_TAG_VERSION;
762 case sTagOrganization:
763 tag = GST_TAG_ORGANIZATION;
766 tag = GST_TAG_COPYRIGHT;
768 case sTagCopyrightURI:
769 tag = GST_TAG_COPYRIGHT_URI;
772 tag = GST_TAG_CONTACT;
775 tag = GST_TAG_LICENSE;
778 tag = GST_TAG_LICENSE_URI;
784 tag = GST_TAG_AUDIO_CODEC;
787 tag = GST_TAG_VIDEO_CODEC;
790 tag = GST_TAG_ENCODER;
792 case sTagLanguageCode:
793 tag = GST_TAG_LANGUAGE_CODE;
796 tag = GST_TAG_KEYWORDS;
798 case sTagChannelMode:
799 tag = "channel-mode";
803 return m_error_message;
810 if (gst_tag_list_get_string(m_stream_tags, tag, &value))
812 std::string res = value;
819 PyObject *eServiceMP3::getInfoObject(int w)
822 bool isBuffer = false;
826 tag = GST_TAG_TRACK_GAIN;
829 tag = GST_TAG_TRACK_PEAK;
832 tag = GST_TAG_ALBUM_GAIN;
835 tag = GST_TAG_ALBUM_PEAK;
837 case sTagReferenceLevel:
838 tag = GST_TAG_REFERENCE_LEVEL;
840 case sTagBeatsPerMinute:
841 tag = GST_TAG_BEATS_PER_MINUTE;
847 case sTagPreviewImage:
848 tag = GST_TAG_PREVIEW_IMAGE;
852 tag = GST_TAG_ATTACHMENT;
859 if ( !tag || !m_stream_tags )
864 const GValue *gv_buffer = gst_tag_list_get_value_index(m_stream_tags, tag, 0);
868 buffer = gst_value_get_buffer (gv_buffer);
869 pyValue = PyBuffer_FromMemory(GST_BUFFER_DATA(buffer), GST_BUFFER_SIZE(buffer));
874 gst_tag_list_get_double(m_stream_tags, tag, &value);
875 pyValue = PyFloat_FromDouble(value);
881 RESULT eServiceMP3::audioChannel(ePtr<iAudioChannelSelection> &ptr)
887 RESULT eServiceMP3::audioTracks(ePtr<iAudioTrackSelection> &ptr)
893 RESULT eServiceMP3::subtitle(ePtr<iSubtitleOutput> &ptr)
899 int eServiceMP3::getNumberOfTracks()
901 return m_audioStreams.size();
904 int eServiceMP3::getCurrentTrack()
906 return m_currentAudioStream;
909 RESULT eServiceMP3::selectTrack(unsigned int i)
911 int ret = selectAudioStream(i);
914 getPlayPosition(ppos);
920 int eServiceMP3::selectAudioStream(int i)
923 g_object_set (G_OBJECT (m_gst_playbin), "current-audio", i, NULL);
924 g_object_get (G_OBJECT (m_gst_playbin), "current-audio", ¤t_audio, NULL);
925 if ( current_audio == i )
927 eDebug ("eServiceMP3::switched to audio stream %i", current_audio);
928 m_currentAudioStream = i;
934 int eServiceMP3::getCurrentChannel()
939 RESULT eServiceMP3::selectChannel(int i)
941 eDebug("eServiceMP3::selectChannel(%i)",i);
945 RESULT eServiceMP3::getTrackInfo(struct iAudioTrackInfo &info, unsigned int i)
947 if (i >= m_audioStreams.size())
949 info.m_description = m_audioStreams[i].codec;
950 /* if (m_audioStreams[i].type == atMPEG)
951 info.m_description = "MPEG";
952 else if (m_audioStreams[i].type == atMP3)
953 info.m_description = "MP3";
954 else if (m_audioStreams[i].type == atAC3)
955 info.m_description = "AC3";
956 else if (m_audioStreams[i].type == atAAC)
957 info.m_description = "AAC";
958 else if (m_audioStreams[i].type == atDTS)
959 info.m_description = "DTS";
960 else if (m_audioStreams[i].type == atPCM)
961 info.m_description = "PCM";
962 else if (m_audioStreams[i].type == atOGG)
963 info.m_description = "OGG";
964 else if (m_audioStreams[i].type == atFLAC)
965 info.m_description = "FLAC";
967 info.m_description = "???";*/
968 if (info.m_language.empty())
969 info.m_language = m_audioStreams[i].language_code;
973 void eServiceMP3::gstBusCall(GstBus *bus, GstMessage *msg)
980 source = GST_MESSAGE_SRC(msg);
981 sourceName = gst_object_get_name(source);
983 if (gst_message_get_structure(msg))
985 gchar *string = gst_structure_to_string(gst_message_get_structure(msg));
986 eDebug("eServiceMP3::gst_message from %s: %s", sourceName, string);
990 eDebug("eServiceMP3::gst_message from %s: %s (without structure)", sourceName, GST_MESSAGE_TYPE_NAME(msg));
992 if ( GST_MESSAGE_TYPE (msg) == GST_MESSAGE_STATE_CHANGED )
994 switch (GST_MESSAGE_TYPE (msg))
996 case GST_MESSAGE_EOS:
997 m_event((iPlayableService*)this, evEOF);
999 case GST_MESSAGE_ERROR:
1004 gst_message_parse_error (msg, &err, &debug);
1006 eWarning("Gstreamer error: %s (%i) from %s", err->message, err->code, sourceName );
1007 if ( err->domain == GST_STREAM_ERROR )
1009 if ( err->code == GST_STREAM_ERROR_CODEC_NOT_FOUND )
1011 if ( g_strrstr(sourceName, "videosink") )
1012 m_event((iPlayableService*)this, evUser+11);
1013 else if ( g_strrstr(sourceName, "audiosink") )
1014 m_event((iPlayableService*)this, evUser+10);
1020 case GST_MESSAGE_INFO:
1025 gst_message_parse_info (msg, &inf, &debug);
1027 if ( inf->domain == GST_STREAM_ERROR && inf->code == GST_STREAM_ERROR_DECODE )
1029 if ( g_strrstr(sourceName, "videosink") )
1030 m_event((iPlayableService*)this, evUser+14);
1035 case GST_MESSAGE_TAG:
1037 GstTagList *tags, *result;
1038 gst_message_parse_tag(msg, &tags);
1040 result = gst_tag_list_merge(m_stream_tags, tags, GST_TAG_MERGE_PREPEND);
1044 gst_tag_list_free(m_stream_tags);
1045 m_stream_tags = result;
1048 const GValue *gv_image = gst_tag_list_get_value_index(tags, GST_TAG_IMAGE, 0);
1051 GstBuffer *buf_image;
1052 buf_image = gst_value_get_buffer (gv_image);
1053 int fd = open("/tmp/.id3coverart", O_CREAT|O_WRONLY|O_TRUNC, 0644);
1054 int ret = write(fd, GST_BUFFER_DATA(buf_image), GST_BUFFER_SIZE(buf_image));
1056 eDebug("eServiceMP3::/tmp/.id3coverart %d bytes written ", ret);
1057 m_event((iPlayableService*)this, evUser+13);
1060 gst_tag_list_free(tags);
1061 m_event((iPlayableService*)this, evUpdatedInfo);
1064 case GST_MESSAGE_ASYNC_DONE:
1067 gint i, active_idx, n_video = 0, n_audio = 0, n_text = 0;
1069 g_object_get (m_gst_playbin, "n-video", &n_video, NULL);
1070 g_object_get (m_gst_playbin, "n-audio", &n_audio, NULL);
1071 g_object_get (m_gst_playbin, "n-text", &n_text, NULL);
1073 eDebug("eServiceMP3::async-done - %d video, %d audio, %d subtitle", n_video, n_audio, n_text);
1077 m_audioStreams.clear();
1078 m_subtitleStreams.clear();
1080 for (i = 0; i < n_audio; i++)
1083 gchar *g_codec, *g_lang;
1085 g_signal_emit_by_name (m_gst_playbin, "get-audio-pad", i, &pad);
1086 GstCaps* caps = gst_pad_get_negotiated_caps(pad);
1087 GstStructure* str = gst_caps_get_structure(caps, 0);
1089 g_type = gst_structure_get_name(str);
1090 eDebug("AUDIO STRUCT=%s", g_type);
1091 audio.type = gstCheckAudioPad(str);
1092 g_codec = g_strdup(g_type);
1093 g_lang = g_strdup_printf ("und");
1094 g_signal_emit_by_name (m_gst_playbin, "get-audio-tags", i, &tags);
1095 if ( tags && gst_is_tag_list(tags) )
1097 gst_tag_list_get_string(tags, GST_TAG_AUDIO_CODEC, &g_codec);
1098 gst_tag_list_get_string(tags, GST_TAG_LANGUAGE_CODE, &g_lang);
1100 audio.language_code = std::string(g_lang);
1101 audio.codec = std::string(g_codec);
1102 eDebug("eServiceMP3::audio stream=%i codec=%s language=%s", i, g_codec, g_lang);
1103 m_audioStreams.push_back(audio);
1108 for (i = 0; i < n_text; i++)
1113 // g_signal_emit_by_name (m_gst_playbin, "get-text-pad", i, &pad);
1114 // GstCaps* caps = gst_pad_get_negotiated_caps(pad);
1115 // GstStructure* str = gst_caps_get_structure(caps, 0);
1116 // g_type = gst_structure_get_name(str);
1117 // g_signal_emit_by_name (m_gst_playbin, "get-text-tags", i, &tags);
1118 subtitleStream subs;
1119 subs.type = stPlainText;
1120 g_lang = g_strdup_printf ("und");
1121 if ( tags && gst_is_tag_list(tags) )
1122 gst_tag_list_get_string(tags, GST_TAG_LANGUAGE_CODE, &g_lang);
1123 subs.language_code = std::string(g_lang);
1124 eDebug("eServiceMP3::subtitle stream=%i language=%s"/* type=%s*/, i, g_lang/*, g_type*/);
1125 m_subtitleStreams.push_back(subs);
1130 case GST_MESSAGE_ELEMENT:
1132 if ( gst_is_missing_plugin_message(msg) )
1134 gchar *description = gst_missing_plugin_message_get_description(msg);
1137 m_error_message = "GStreamer plugin " + (std::string)description + " not available!\n";
1138 g_free(description);
1139 m_event((iPlayableService*)this, evUser+12);
1142 else if (const GstStructure *msgstruct = gst_message_get_structure(msg))
1144 const gchar *eventname = gst_structure_get_name(msgstruct);
1147 if (!strcmp(eventname, "eventSizeChanged") || !strcmp(eventname, "eventSizeAvail"))
1149 gst_structure_get_int (msgstruct, "aspect_ratio", &m_aspect);
1150 gst_structure_get_int (msgstruct, "width", &m_width);
1151 gst_structure_get_int (msgstruct, "height", &m_height);
1152 if (strstr(eventname, "Changed"))
1153 m_event((iPlayableService*)this, evVideoSizeChanged);
1155 else if (!strcmp(eventname, "eventFrameRateChanged") || !strcmp(eventname, "eventFrameRateAvail"))
1157 gst_structure_get_int (msgstruct, "frame_rate", &m_framerate);
1158 if (strstr(eventname, "Changed"))
1159 m_event((iPlayableService*)this, evVideoFramerateChanged);
1161 else if (!strcmp(eventname, "eventProgressiveChanged") || !strcmp(eventname, "eventProgressiveAvail"))
1163 gst_structure_get_int (msgstruct, "progressive", &m_progressive);
1164 if (strstr(eventname, "Changed"))
1165 m_event((iPlayableService*)this, evVideoProgressiveChanged);
1173 g_free (sourceName);
1176 GstBusSyncReply eServiceMP3::gstBusSyncHandler(GstBus *bus, GstMessage *message, gpointer user_data)
1178 eServiceMP3 *_this = (eServiceMP3*)user_data;
1179 _this->m_pump.send(1);
1181 return GST_BUS_PASS;
1184 audiotype_t eServiceMP3::gstCheckAudioPad(GstStructure* structure)
1189 if ( gst_structure_has_name (structure, "audio/mpeg"))
1191 gint mpegversion, layer = -1;
1192 if (!gst_structure_get_int (structure, "mpegversion", &mpegversion))
1195 switch (mpegversion) {
1198 gst_structure_get_int (structure, "layer", &layer);
1214 else if ( gst_structure_has_name (structure, "audio/x-ac3") || gst_structure_has_name (structure, "audio/ac3") )
1216 else if ( gst_structure_has_name (structure, "audio/x-dts") || gst_structure_has_name (structure, "audio/dts") )
1218 else if ( gst_structure_has_name (structure, "audio/x-raw-int") )
1224 void eServiceMP3::gstPoll(const int&)
1226 /* ok, we have a serious problem here. gstBusSyncHandler sends
1227 us the wakup signal, but likely before it was posted.
1228 the usleep, an EVIL HACK (DON'T DO THAT!!!) works around this.
1230 I need to understand the API a bit more to make this work
1234 GstBus *bus = gst_pipeline_get_bus (GST_PIPELINE (m_gst_playbin));
1235 GstMessage *message;
1236 while ((message = gst_bus_pop (bus)))
1238 gstBusCall(bus, message);
1239 gst_message_unref (message);
1243 eAutoInitPtr<eServiceFactoryMP3> init_eServiceFactoryMP3(eAutoInitNumbers::service+1, "eServiceFactoryMP3");
1245 void eServiceMP3::gstCBsubtitleAvail(GstElement *appsink, gpointer user_data)
1247 eServiceMP3 *_this = (eServiceMP3*)user_data;
1249 g_signal_emit_by_name (appsink, "pull-buffer", &buffer);
1252 GstFormat fmt = GST_FORMAT_TIME;
1253 gint64 buf_pos = GST_BUFFER_TIMESTAMP(buffer);
1254 gint64 duration_ns = GST_BUFFER_DURATION(buffer);
1255 size_t len = GST_BUFFER_SIZE(buffer);
1256 unsigned char line[len+1];
1257 memcpy(line, GST_BUFFER_DATA(buffer), len);
1259 // eDebug("got new subtitle @ buf_pos = %lld ns (in pts=%lld): '%s' ", buf_pos, buf_pos/11111, line);
1260 if ( _this->m_subtitle_widget )
1262 ePangoSubtitlePage page;
1263 gRGB rgbcol(0xD0,0xD0,0xD0);
1264 page.m_elements.push_back(ePangoSubtitlePageElement(rgbcol, (const char*)line));
1265 page.show_pts = buf_pos / 11111L;
1266 page.m_timeout = duration_ns / 1000000;
1267 _this->m_subtitle_pages.push_back(page);
1268 _this->pushSubtitles();
1273 void eServiceMP3::pushSubtitles()
1275 ePangoSubtitlePage page;
1276 GstClockTime base_time;
1278 GstElement *appsink = gst_bin_get_by_name(GST_BIN(m_gst_playbin),"subtitle_sink");
1280 clock = gst_element_get_clock (appsink);
1283 page = m_subtitle_pages.front();
1285 base_time = gst_element_get_base_time (appsink);
1286 running_pts = ( gst_clock_get_time (clock) - base_time ) / 11111L;
1287 gint64 diff_ms = ( page.show_pts - running_pts ) / 90;
1288 // eDebug("eServiceMP3::pushSubtitles show_pts = %lld running_pts = %lld diff = %lld", page.show_pts, running_pts, diff_ms);
1291 // eDebug("m_subtitle_sync_timer->start(%lld,1)", diff_ms);
1292 m_subtitle_sync_timer->start(diff_ms, 1);
1297 m_subtitle_widget->setPage(page);
1298 m_subtitle_pages.pop_front();
1300 } while ( !m_subtitle_pages.empty() );
1302 gst_object_unref (clock);
1305 RESULT eServiceMP3::enableSubtitles(eWidget *parent, ePyObject tuple)
1308 int tuplesize = PyTuple_Size(tuple);
1312 if (!PyTuple_Check(tuple))
1316 entry = PyTuple_GET_ITEM(tuple, 1);
1317 if (!PyInt_Check(entry))
1319 pid = PyInt_AsLong(entry);
1320 entry = PyTuple_GET_ITEM(tuple, 2);
1321 if (!PyInt_Check(entry))
1323 type = PyInt_AsLong(entry);
1325 g_object_set (G_OBJECT (m_gst_playbin), "current-text", pid, NULL);
1326 m_currentSubtitleStream = pid;
1328 m_subtitle_widget = new eSubtitleWidget(parent);
1329 m_subtitle_widget->resize(parent->size()); /* full size */
1331 g_object_get (G_OBJECT (m_gst_playbin), "current-text", &text_pid, NULL);
1333 eDebug ("eServiceMP3::switched to subtitle stream %i", text_pid);
1338 eDebug("eServiceMP3::enableSubtitles needs a tuple as 2nd argument!\n"
1339 "for gst subtitles (2, subtitle_stream_count, subtitle_type)");
1343 RESULT eServiceMP3::disableSubtitles(eWidget *parent)
1345 eDebug("eServiceMP3::disableSubtitles");
1346 delete m_subtitle_widget;
1347 m_subtitle_widget = 0;
1351 PyObject *eServiceMP3::getCachedSubtitle()
1353 eDebug("eServiceMP3::getCachedSubtitle");
1357 PyObject *eServiceMP3::getSubtitleList()
1359 eDebug("eServiceMP3::getSubtitleList");
1361 ePyObject l = PyList_New(0);
1362 int stream_count[sizeof(subtype_t)];
1363 for ( unsigned int i = 0; i < sizeof(subtype_t); i++ )
1364 stream_count[i] = 0;
1366 for (std::vector<subtitleStream>::iterator IterSubtitleStream(m_subtitleStreams.begin()); IterSubtitleStream != m_subtitleStreams.end(); ++IterSubtitleStream)
1368 subtype_t type = IterSubtitleStream->type;
1369 ePyObject tuple = PyTuple_New(5);
1370 PyTuple_SET_ITEM(tuple, 0, PyInt_FromLong(2));
1371 PyTuple_SET_ITEM(tuple, 1, PyInt_FromLong(stream_count[type]));
1372 PyTuple_SET_ITEM(tuple, 2, PyInt_FromLong(int(type)));
1373 PyTuple_SET_ITEM(tuple, 3, PyInt_FromLong(0));
1374 PyTuple_SET_ITEM(tuple, 4, PyString_FromString((IterSubtitleStream->language_code).c_str()));
1375 PyList_Append(l, tuple);
1377 stream_count[type]++;
1383 #warning gstreamer not available, not building media player