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);
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> &);
100 DEFINE_REF(eMP3ServiceOfflineOperations);
102 eMP3ServiceOfflineOperations::eMP3ServiceOfflineOperations(const eServiceReference &ref): m_ref((const eServiceReference&)ref)
106 RESULT eMP3ServiceOfflineOperations::deleteFromDisk(int simulate)
112 std::list<std::string> res;
113 if (getListOfFilenames(res))
116 eBackgroundFileEraser *eraser = eBackgroundFileEraser::getInstance();
118 eDebug("FATAL !! can't get background file eraser");
120 for (std::list<std::string>::iterator i(res.begin()); i != res.end(); ++i)
122 eDebug("Removing %s...", i->c_str());
124 eraser->erase(i->c_str());
126 ::unlink(i->c_str());
133 RESULT eMP3ServiceOfflineOperations::getListOfFilenames(std::list<std::string> &res)
136 res.push_back(m_ref.path);
140 RESULT eMP3ServiceOfflineOperations::reindex()
146 RESULT eServiceFactoryMP3::offlineOperations(const eServiceReference &ref, ePtr<iServiceOfflineOperations> &ptr)
148 ptr = new eMP3ServiceOfflineOperations(ref);
152 // eStaticServiceMP3Info
155 // eStaticServiceMP3Info is seperated from eServiceMP3 to give information
156 // about unopened files.
158 // probably eServiceMP3 should use this class as well, and eStaticServiceMP3Info
159 // should have a database backend where ID3-files etc. are cached.
160 // this would allow listing the mp3 database based on certain filters.
162 DEFINE_REF(eStaticServiceMP3Info)
164 eStaticServiceMP3Info::eStaticServiceMP3Info()
168 RESULT eStaticServiceMP3Info::getName(const eServiceReference &ref, std::string &name)
170 if ( ref.name.length() )
174 size_t last = ref.path.rfind('/');
175 if (last != std::string::npos)
176 name = ref.path.substr(last+1);
183 int eStaticServiceMP3Info::getLength(const eServiceReference &ref)
190 eServiceMP3::eServiceMP3(eServiceReference ref)
191 :m_ref(ref), m_pump(eApp, 1)
193 m_seekTimeout = eTimer::create(eApp);
194 m_subtitle_sync_timer = eTimer::create(eApp);
196 m_currentAudioStream = -1;
197 m_currentSubtitleStream = 0;
198 m_subtitle_widget = 0;
199 m_currentTrickRatio = 0;
201 m_buffer_size = 1*1024*1024;
202 CONNECT(m_seekTimeout->timeout, eServiceMP3::seekTimeoutCB);
203 CONNECT(m_subtitle_sync_timer->timeout, eServiceMP3::pushSubtitles);
204 CONNECT(m_pump.recv_msg, eServiceMP3::gstPoll);
205 m_aspect = m_width = m_height = m_framerate = m_progressive = -1;
208 eDebug("eServiceMP3::construct!");
210 const char *filename = m_ref.path.c_str();
211 const char *ext = strrchr(filename, '.');
215 sourceStream sourceinfo;
216 sourceinfo.is_video = FALSE;
217 sourceinfo.audiotype = atUnknown;
218 if ( (strcasecmp(ext, ".mpeg") && strcasecmp(ext, ".mpg") && strcasecmp(ext, ".vob") && strcasecmp(ext, ".bin") && strcasecmp(ext, ".dat") ) == 0 )
220 sourceinfo.containertype = ctMPEGPS;
221 sourceinfo.is_video = TRUE;
223 else if ( strcasecmp(ext, ".ts") == 0 )
225 sourceinfo.containertype = ctMPEGTS;
226 sourceinfo.is_video = TRUE;
228 else if ( strcasecmp(ext, ".mkv") == 0 )
230 sourceinfo.containertype = ctMKV;
231 sourceinfo.is_video = TRUE;
233 else if ( strcasecmp(ext, ".avi") == 0 || strcasecmp(ext, ".divx") == 0)
235 sourceinfo.containertype = ctAVI;
236 sourceinfo.is_video = TRUE;
238 else if ( strcasecmp(ext, ".mp4") == 0 || strcasecmp(ext, ".mov") == 0)
240 sourceinfo.containertype = ctMP4;
241 sourceinfo.is_video = TRUE;
243 else if ( strcasecmp(ext, ".m4a") == 0 )
245 sourceinfo.containertype = ctMP4;
246 sourceinfo.audiotype = atAAC;
248 else if ( strcasecmp(ext, ".mp3") == 0 )
249 sourceinfo.audiotype = atMP3;
250 else if ( (strncmp(filename, "/autofs/", 8) || strncmp(filename+strlen(filename)-13, "/track-", 7) || strcasecmp(ext, ".wav")) == 0 )
251 sourceinfo.containertype = ctCDA;
252 if ( strcasecmp(ext, ".dat") == 0 )
254 sourceinfo.containertype = ctVCD;
255 sourceinfo.is_video = TRUE;
257 if ( (strncmp(filename, "http://", 7)) == 0 || (strncmp(filename, "udp://", 6)) == 0 || (strncmp(filename, "rtp://", 6)) == 0 || (strncmp(filename, "https://", 8)) == 0 || (strncmp(filename, "mms://", 6)) == 0 || (strncmp(filename, "rtsp://", 7)) == 0 )
258 sourceinfo.is_streaming = TRUE;
262 if ( sourceinfo.is_streaming )
264 uri = g_strdup_printf ("%s", filename);
266 else if ( sourceinfo.containertype == ctCDA )
268 int i_track = atoi(filename+18);
269 uri = g_strdup_printf ("cdda://%i", i_track);
271 else if ( sourceinfo.containertype == ctVCD )
273 int fd = open(filename,O_RDONLY);
275 int ret = read(fd, tmp, 128*1024);
277 if ( ret == -1 ) // this is a "REAL" VCD
278 uri = g_strdup_printf ("vcd://");
280 uri = g_strdup_printf ("file://%s", filename);
284 uri = g_strdup_printf ("file://%s", filename);
286 eDebug("eServiceMP3::playbin2 uri=%s", uri);
288 m_gst_playbin = gst_element_factory_make("playbin2", "playbin");
290 m_error_message = "failed to create GStreamer pipeline!\n";
292 g_object_set (G_OBJECT (m_gst_playbin), "uri", uri, NULL);
294 int flags = 0x47; // ( == GST_PLAY_FLAG_VIDEO | GST_PLAY_FLAG_AUDIO | GST_PLAY_FLAG_NATIVE_VIDEO | GST_PLAY_FLAG_TEXT )
295 g_object_set (G_OBJECT (m_gst_playbin), "flags", flags, NULL);
299 GstElement *subsink = gst_element_factory_make("appsink", "subtitle_sink");
301 eDebug("eServiceMP3::sorry, can't play: missing gst-plugin-appsink");
304 m_subs_to_pull_handler_id = g_signal_connect (subsink, "new-buffer", G_CALLBACK (gstCBsubtitleAvail), this);
305 g_object_set (G_OBJECT (m_gst_playbin), "text-sink", subsink, NULL);
310 gst_bus_set_sync_handler(gst_pipeline_get_bus (GST_PIPELINE (m_gst_playbin)), gstBusSyncHandler, this);
311 char srt_filename[strlen(filename)+1];
312 strncpy(srt_filename,filename,strlen(filename)-3);
313 srt_filename[strlen(filename)-3]='\0';
314 strcat(srt_filename, "srt");
316 if (stat(srt_filename, &buffer) == 0)
318 std::string suburi = "file://" + (std::string)srt_filename;
319 eDebug("eServiceMP3::subtitle uri: %s",suburi.c_str());
320 g_object_set (G_OBJECT (m_gst_playbin), "suburi", suburi.c_str(), NULL);
323 subs.language_code = std::string("und");
324 m_subtitleStreams.push_back(subs);
328 m_event((iPlayableService*)this, evUser+12);
331 gst_object_unref(GST_OBJECT(m_gst_playbin));
333 eDebug("eServiceMP3::sorry, can't play: %s",m_error_message.c_str());
337 setBufferSize(m_buffer_size);
340 eServiceMP3::~eServiceMP3()
342 // disconnect subtitle callback
344 g_object_get (G_OBJECT (m_gst_playbin), "text-sink", &sink, NULL);
347 g_signal_handler_disconnect (sink, m_subs_to_pull_handler_id);
348 gst_object_unref(sink);
351 delete m_subtitle_widget;
353 // disconnect sync handler callback
354 gst_bus_set_sync_handler(gst_pipeline_get_bus (GST_PIPELINE (m_gst_playbin)), NULL, NULL);
356 if (m_state == stRunning)
360 gst_tag_list_free(m_stream_tags);
364 gst_object_unref (GST_OBJECT (m_gst_playbin));
365 eDebug("eServiceMP3::destruct!");
369 DEFINE_REF(eServiceMP3);
371 RESULT eServiceMP3::connectEvent(const Slot2<void,iPlayableService*,int> &event, ePtr<eConnection> &connection)
373 connection = new eConnection((iPlayableService*)this, m_event.connect(event));
377 RESULT eServiceMP3::start()
379 ASSERT(m_state == stIdle);
384 eDebug("eServiceMP3::starting pipeline");
385 gst_element_set_state (m_gst_playbin, GST_STATE_PLAYING);
388 m_event(this, evStart);
393 RESULT eServiceMP3::stop()
395 ASSERT(m_state != stIdle);
397 if (m_state == stStopped)
400 eDebug("eServiceMP3::stop %s", m_ref.path.c_str());
401 gst_element_set_state(m_gst_playbin, GST_STATE_NULL);
407 RESULT eServiceMP3::setTarget(int target)
412 RESULT eServiceMP3::pause(ePtr<iPauseableService> &ptr)
418 RESULT eServiceMP3::setSlowMotion(int ratio)
422 eDebug("eServiceMP3::setSlowMotion ratio=%f",1/(float)ratio);
423 return trickSeek(1/(float)ratio);
426 RESULT eServiceMP3::setFastForward(int ratio)
428 eDebug("eServiceMP3::setFastForward ratio=%i",ratio);
429 return trickSeek(ratio);
432 void eServiceMP3::seekTimeoutCB()
435 getPlayPosition(ppos);
437 ppos += 90000*m_currentTrickRatio;
442 m_seekTimeout->stop();
448 m_seekTimeout->stop();
455 RESULT eServiceMP3::pause()
457 if (!m_gst_playbin || m_state != stRunning)
460 gst_element_set_state(m_gst_playbin, GST_STATE_PAUSED);
465 RESULT eServiceMP3::unpause()
467 if (!m_gst_playbin || m_state != stRunning)
470 gst_element_set_state(m_gst_playbin, GST_STATE_PLAYING);
475 /* iSeekableService */
476 RESULT eServiceMP3::seek(ePtr<iSeekableService> &ptr)
482 RESULT eServiceMP3::getLength(pts_t &pts)
487 if (m_state != stRunning)
490 GstFormat fmt = GST_FORMAT_TIME;
493 if (!gst_element_query_duration(m_gst_playbin, &fmt, &len))
495 /* len is in nanoseconds. we have 90 000 pts per second. */
501 RESULT eServiceMP3::seekToImpl(pts_t to)
503 /* convert pts to nanoseconds */
504 gint64 time_nanoseconds = to * 11111LL;
505 if (!gst_element_seek (m_gst_playbin, 1.0, GST_FORMAT_TIME, GST_SEEK_FLAG_FLUSH,
506 GST_SEEK_TYPE_SET, time_nanoseconds,
507 GST_SEEK_TYPE_NONE, GST_CLOCK_TIME_NONE))
509 eDebug("eServiceMP3::seekTo failed");
516 RESULT eServiceMP3::seekTo(pts_t to)
521 eSingleLocker l(m_subs_to_pull_lock); // this is needed to dont handle incomming subtitles during seek!
522 if (!(ret = seekToImpl(to)))
524 m_subtitle_pages.clear();
533 RESULT eServiceMP3::trickSeek(gdouble ratio)
538 return seekRelative(0, 0);
542 flags = GST_SEEK_FLAG_NONE;
543 flags |= GST_SEEK_FLAG_FLUSH;
544 // flags |= GstSeekFlags (GST_SEEK_FLAG_ACCURATE);
545 flags |= GST_SEEK_FLAG_KEY_UNIT;
546 // flags |= GstSeekFlags (GST_SEEK_FLAG_SEGMENT);
547 // flags |= GstSeekFlags (GST_SEEK_FLAG_SKIP);
549 GstFormat fmt = GST_FORMAT_TIME;
551 gst_element_query_duration(m_gst_playbin, &fmt, &len);
552 gst_element_query_position(m_gst_playbin, &fmt, &pos);
556 s_event = gst_event_new_seek (ratio, GST_FORMAT_TIME, (GstSeekFlags)flags, GST_SEEK_TYPE_SET, pos, GST_SEEK_TYPE_SET, len);
558 eDebug("eServiceMP3::trickSeek with rate %lf to %" GST_TIME_FORMAT " ", ratio, GST_TIME_ARGS (pos));
562 s_event = gst_event_new_seek (ratio, GST_FORMAT_TIME, (GstSeekFlags)(GST_SEEK_FLAG_SKIP|GST_SEEK_FLAG_FLUSH), GST_SEEK_TYPE_NONE, -1, GST_SEEK_TYPE_NONE, -1);
565 if (!gst_element_send_event ( GST_ELEMENT (m_gst_playbin), s_event))
567 eDebug("eServiceMP3::trickSeek failed");
575 RESULT eServiceMP3::seekRelative(int direction, pts_t to)
581 getPlayPosition(ppos);
582 ppos += to * direction;
590 RESULT eServiceMP3::getPlayPosition(pts_t &pts)
592 GstFormat fmt = GST_FORMAT_TIME;
599 if (m_state != stRunning)
602 g_object_get (G_OBJECT (m_gst_playbin), "audio-sink", &sink, NULL);
605 g_object_get (G_OBJECT (m_gst_playbin), "video-sink", &sink, NULL);
610 gchar *name = gst_element_get_name(sink);
611 gboolean use_get_decoder_time = strstr(name, "dvbaudiosink") || strstr(name, "dvbvideosink");
614 if (use_get_decoder_time)
615 g_signal_emit_by_name(sink, "get-decoder-time", &pos);
617 gst_object_unref(sink);
619 if (!use_get_decoder_time && !gst_element_query_position(m_gst_playbin, &fmt, &pos)) {
620 eDebug("gst_element_query_position failed in getPlayPosition");
624 /* pos is in nanoseconds. we have 90 000 pts per second. */
629 RESULT eServiceMP3::setTrickmode(int trick)
631 /* trickmode is not yet supported by our dvbmediasinks. */
635 RESULT eServiceMP3::isCurrentlySeekable()
640 RESULT eServiceMP3::info(ePtr<iServiceInformation>&i)
646 RESULT eServiceMP3::getName(std::string &name)
648 std::string title = m_ref.getName();
652 size_t n = name.rfind('/');
653 if (n != std::string::npos)
654 name = name.substr(n + 1);
662 int eServiceMP3::getInfo(int w)
664 const gchar *tag = 0;
668 case sServiceref: return m_ref;
669 case sVideoHeight: return m_height;
670 case sVideoWidth: return m_width;
671 case sFrameRate: return m_framerate;
672 case sProgressive: return m_progressive;
673 case sAspect: return m_aspect;
677 case sTagTitleSortname:
678 case sTagArtistSortname:
679 case sTagAlbumSortname:
684 case sTagExtendedComment:
687 case sTagDescription:
690 case sTagOrganization:
692 case sTagCopyrightURI:
700 case sTagLanguageCode:
702 case sTagChannelMode:
709 case sTagReferenceLevel:
710 case sTagBeatsPerMinute:
712 case sTagPreviewImage:
714 return resIsPyObject;
715 case sTagTrackNumber:
716 tag = GST_TAG_TRACK_NUMBER;
719 tag = GST_TAG_TRACK_COUNT;
721 case sTagAlbumVolumeNumber:
722 tag = GST_TAG_ALBUM_VOLUME_NUMBER;
724 case sTagAlbumVolumeCount:
725 tag = GST_TAG_ALBUM_VOLUME_COUNT;
728 tag = GST_TAG_BITRATE;
730 case sTagNominalBitrate:
731 tag = GST_TAG_NOMINAL_BITRATE;
733 case sTagMinimumBitrate:
734 tag = GST_TAG_MINIMUM_BITRATE;
736 case sTagMaximumBitrate:
737 tag = GST_TAG_MAXIMUM_BITRATE;
740 tag = GST_TAG_SERIAL;
742 case sTagEncoderVersion:
743 tag = GST_TAG_ENCODER_VERSION;
752 if (!m_stream_tags || !tag)
756 if (gst_tag_list_get_uint(m_stream_tags, tag, &value))
762 std::string eServiceMP3::getInfoString(int w)
764 if ( !m_stream_tags && w < sUser && w > 26 )
766 const gchar *tag = 0;
773 tag = GST_TAG_ARTIST;
778 case sTagTitleSortname:
779 tag = GST_TAG_TITLE_SORTNAME;
781 case sTagArtistSortname:
782 tag = GST_TAG_ARTIST_SORTNAME;
784 case sTagAlbumSortname:
785 tag = GST_TAG_ALBUM_SORTNAME;
789 if (gst_tag_list_get_date(m_stream_tags, GST_TAG_DATE, &date))
792 g_date_strftime (res, sizeof(res), "%Y-%M-%D", date);
793 return (std::string)res;
797 tag = GST_TAG_COMPOSER;
803 tag = GST_TAG_COMMENT;
805 case sTagExtendedComment:
806 tag = GST_TAG_EXTENDED_COMMENT;
809 tag = GST_TAG_LOCATION;
812 tag = GST_TAG_HOMEPAGE;
814 case sTagDescription:
815 tag = GST_TAG_DESCRIPTION;
818 tag = GST_TAG_VERSION;
823 case sTagOrganization:
824 tag = GST_TAG_ORGANIZATION;
827 tag = GST_TAG_COPYRIGHT;
829 case sTagCopyrightURI:
830 tag = GST_TAG_COPYRIGHT_URI;
833 tag = GST_TAG_CONTACT;
836 tag = GST_TAG_LICENSE;
839 tag = GST_TAG_LICENSE_URI;
845 tag = GST_TAG_AUDIO_CODEC;
848 tag = GST_TAG_VIDEO_CODEC;
851 tag = GST_TAG_ENCODER;
853 case sTagLanguageCode:
854 tag = GST_TAG_LANGUAGE_CODE;
857 tag = GST_TAG_KEYWORDS;
859 case sTagChannelMode:
860 tag = "channel-mode";
863 return m_error_message;
870 if (gst_tag_list_get_string(m_stream_tags, tag, &value))
872 std::string res = value;
879 PyObject *eServiceMP3::getInfoObject(int w)
881 const gchar *tag = 0;
882 bool isBuffer = false;
886 tag = GST_TAG_TRACK_GAIN;
889 tag = GST_TAG_TRACK_PEAK;
892 tag = GST_TAG_ALBUM_GAIN;
895 tag = GST_TAG_ALBUM_PEAK;
897 case sTagReferenceLevel:
898 tag = GST_TAG_REFERENCE_LEVEL;
900 case sTagBeatsPerMinute:
901 tag = GST_TAG_BEATS_PER_MINUTE;
907 case sTagPreviewImage:
908 tag = GST_TAG_PREVIEW_IMAGE;
912 tag = GST_TAG_ATTACHMENT;
921 const GValue *gv_buffer = gst_tag_list_get_value_index(m_stream_tags, tag, 0);
925 buffer = gst_value_get_buffer (gv_buffer);
926 return PyBuffer_FromMemory(GST_BUFFER_DATA(buffer), GST_BUFFER_SIZE(buffer));
932 gst_tag_list_get_double(m_stream_tags, tag, &value);
933 return PyFloat_FromDouble(value);
939 RESULT eServiceMP3::audioChannel(ePtr<iAudioChannelSelection> &ptr)
945 RESULT eServiceMP3::audioTracks(ePtr<iAudioTrackSelection> &ptr)
951 RESULT eServiceMP3::subtitle(ePtr<iSubtitleOutput> &ptr)
957 int eServiceMP3::getNumberOfTracks()
959 return m_audioStreams.size();
962 int eServiceMP3::getCurrentTrack()
964 if (m_currentAudioStream == -1)
965 g_object_get (G_OBJECT (m_gst_playbin), "current-audio", &m_currentAudioStream, NULL);
966 return m_currentAudioStream;
969 RESULT eServiceMP3::selectTrack(unsigned int i)
972 getPlayPosition(ppos);
977 int ret = selectAudioStream(i);
986 int eServiceMP3::selectAudioStream(int i)
989 g_object_set (G_OBJECT (m_gst_playbin), "current-audio", i, NULL);
990 g_object_get (G_OBJECT (m_gst_playbin), "current-audio", ¤t_audio, NULL);
991 if ( current_audio == i )
993 eDebug ("eServiceMP3::switched to audio stream %i", current_audio);
994 m_currentAudioStream = i;
1000 int eServiceMP3::getCurrentChannel()
1005 RESULT eServiceMP3::selectChannel(int i)
1007 eDebug("eServiceMP3::selectChannel(%i)",i);
1011 RESULT eServiceMP3::getTrackInfo(struct iAudioTrackInfo &info, unsigned int i)
1013 if (i >= m_audioStreams.size())
1015 info.m_description = m_audioStreams[i].codec;
1016 /* if (m_audioStreams[i].type == atMPEG)
1017 info.m_description = "MPEG";
1018 else if (m_audioStreams[i].type == atMP3)
1019 info.m_description = "MP3";
1020 else if (m_audioStreams[i].type == atAC3)
1021 info.m_description = "AC3";
1022 else if (m_audioStreams[i].type == atAAC)
1023 info.m_description = "AAC";
1024 else if (m_audioStreams[i].type == atDTS)
1025 info.m_description = "DTS";
1026 else if (m_audioStreams[i].type == atPCM)
1027 info.m_description = "PCM";
1028 else if (m_audioStreams[i].type == atOGG)
1029 info.m_description = "OGG";
1030 else if (m_audioStreams[i].type == atFLAC)
1031 info.m_description = "FLAC";
1033 info.m_description = "???";*/
1034 if (info.m_language.empty())
1035 info.m_language = m_audioStreams[i].language_code;
1039 void eServiceMP3::gstBusCall(GstBus *bus, GstMessage *msg)
1046 source = GST_MESSAGE_SRC(msg);
1047 sourceName = gst_object_get_name(source);
1049 if (gst_message_get_structure(msg))
1051 gchar *string = gst_structure_to_string(gst_message_get_structure(msg));
1052 eDebug("eServiceMP3::gst_message from %s: %s", sourceName, string);
1056 eDebug("eServiceMP3::gst_message from %s: %s (without structure)", sourceName, GST_MESSAGE_TYPE_NAME(msg));
1058 switch (GST_MESSAGE_TYPE (msg))
1060 case GST_MESSAGE_EOS:
1061 m_event((iPlayableService*)this, evEOF);
1063 case GST_MESSAGE_STATE_CHANGED:
1065 if(GST_MESSAGE_SRC(msg) != GST_OBJECT(m_gst_playbin))
1068 GstState old_state, new_state;
1069 gst_message_parse_state_changed(msg, &old_state, &new_state, NULL);
1071 if(old_state == new_state)
1074 eDebug("eServiceMP3::state transition %s -> %s", gst_element_state_get_name(old_state), gst_element_state_get_name(new_state));
1076 GstStateChange transition = (GstStateChange)GST_STATE_TRANSITION(old_state, new_state);
1080 case GST_STATE_CHANGE_NULL_TO_READY:
1083 case GST_STATE_CHANGE_READY_TO_PAUSED:
1086 g_object_get (G_OBJECT (m_gst_playbin), "text-sink", &sink, NULL);
1089 g_object_set (G_OBJECT (sink), "max-buffers", 2, NULL);
1090 g_object_set (G_OBJECT (sink), "sync", FALSE, NULL);
1091 g_object_set (G_OBJECT (sink), "async", FALSE, NULL);
1092 g_object_set (G_OBJECT (sink), "emit-signals", TRUE, NULL);
1093 gst_object_unref(sink);
1096 case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
1099 case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
1102 case GST_STATE_CHANGE_PAUSED_TO_READY:
1105 case GST_STATE_CHANGE_READY_TO_NULL:
1111 case GST_MESSAGE_ERROR:
1115 gst_message_parse_error (msg, &err, &debug);
1117 eWarning("Gstreamer error: %s (%i) from %s", err->message, err->code, sourceName );
1118 if ( err->domain == GST_STREAM_ERROR )
1120 if ( err->code == GST_STREAM_ERROR_CODEC_NOT_FOUND )
1122 if ( g_strrstr(sourceName, "videosink") )
1123 m_event((iPlayableService*)this, evUser+11);
1124 else if ( g_strrstr(sourceName, "audiosink") )
1125 m_event((iPlayableService*)this, evUser+10);
1131 case GST_MESSAGE_INFO:
1136 gst_message_parse_info (msg, &inf, &debug);
1138 if ( inf->domain == GST_STREAM_ERROR && inf->code == GST_STREAM_ERROR_DECODE )
1140 if ( g_strrstr(sourceName, "videosink") )
1141 m_event((iPlayableService*)this, evUser+14);
1146 case GST_MESSAGE_TAG:
1148 GstTagList *tags, *result;
1149 gst_message_parse_tag(msg, &tags);
1151 result = gst_tag_list_merge(m_stream_tags, tags, GST_TAG_MERGE_REPLACE);
1155 gst_tag_list_free(m_stream_tags);
1156 m_stream_tags = result;
1159 const GValue *gv_image = gst_tag_list_get_value_index(tags, GST_TAG_IMAGE, 0);
1162 GstBuffer *buf_image;
1163 buf_image = gst_value_get_buffer (gv_image);
1164 int fd = open("/tmp/.id3coverart", O_CREAT|O_WRONLY|O_TRUNC, 0644);
1165 int ret = write(fd, GST_BUFFER_DATA(buf_image), GST_BUFFER_SIZE(buf_image));
1167 eDebug("eServiceMP3::/tmp/.id3coverart %d bytes written ", ret);
1168 m_event((iPlayableService*)this, evUser+13);
1170 gst_tag_list_free(tags);
1171 m_event((iPlayableService*)this, evUpdatedInfo);
1174 case GST_MESSAGE_ASYNC_DONE:
1176 if(GST_MESSAGE_SRC(msg) != GST_OBJECT(m_gst_playbin))
1180 gint i, active_idx, n_video = 0, n_audio = 0, n_text = 0;
1182 g_object_get (m_gst_playbin, "n-video", &n_video, NULL);
1183 g_object_get (m_gst_playbin, "n-audio", &n_audio, NULL);
1184 g_object_get (m_gst_playbin, "n-text", &n_text, NULL);
1186 eDebug("eServiceMP3::async-done - %d video, %d audio, %d subtitle", n_video, n_audio, n_text);
1188 if ( n_video + n_audio <= 0 )
1193 m_audioStreams.clear();
1194 m_subtitleStreams.clear();
1196 for (i = 0; i < n_audio; i++)
1199 gchar *g_codec, *g_lang;
1201 g_signal_emit_by_name (m_gst_playbin, "get-audio-pad", i, &pad);
1202 GstCaps* caps = gst_pad_get_negotiated_caps(pad);
1205 GstStructure* str = gst_caps_get_structure(caps, 0);
1206 const gchar *g_type = gst_structure_get_name(str);
1207 eDebug("AUDIO STRUCT=%s", g_type);
1208 audio.type = gstCheckAudioPad(str);
1209 g_codec = g_strdup(g_type);
1210 g_lang = g_strdup_printf ("und");
1211 g_signal_emit_by_name (m_gst_playbin, "get-audio-tags", i, &tags);
1212 if ( tags && gst_is_tag_list(tags) )
1214 gst_tag_list_get_string(tags, GST_TAG_AUDIO_CODEC, &g_codec);
1215 gst_tag_list_get_string(tags, GST_TAG_LANGUAGE_CODE, &g_lang);
1216 gst_tag_list_free(tags);
1218 audio.language_code = std::string(g_lang);
1219 audio.codec = std::string(g_codec);
1220 eDebug("eServiceMP3::audio stream=%i codec=%s language=%s", i, g_codec, g_lang);
1221 m_audioStreams.push_back(audio);
1224 gst_caps_unref(caps);
1227 for (i = 0; i < n_text; i++)
1232 // g_signal_emit_by_name (m_gst_playbin, "get-text-pad", i, &pad);
1233 // GstCaps* caps = gst_pad_get_negotiated_caps(pad);
1234 // GstStructure* str = gst_caps_get_structure(caps, 0);
1235 // g_type = gst_structure_get_name(str);
1236 // g_signal_emit_by_name (m_gst_playbin, "get-text-tags", i, &tags);
1237 subtitleStream subs;
1238 subs.type = stPlainText;
1239 g_lang = g_strdup_printf ("und");
1240 if ( tags && gst_is_tag_list(tags) )
1241 gst_tag_list_get_string(tags, GST_TAG_LANGUAGE_CODE, &g_lang);
1242 subs.language_code = std::string(g_lang);
1243 eDebug("eServiceMP3::subtitle stream=%i language=%s"/* type=%s*/, i, g_lang/*, g_type*/);
1244 m_subtitleStreams.push_back(subs);
1248 m_event((iPlayableService*)this, evUpdatedEventInfo);
1250 case GST_MESSAGE_ELEMENT:
1252 if ( gst_is_missing_plugin_message(msg) )
1254 gchar *description = gst_missing_plugin_message_get_description(msg);
1257 m_error_message = "GStreamer plugin " + (std::string)description + " not available!\n";
1258 g_free(description);
1259 m_event((iPlayableService*)this, evUser+12);
1262 else if (const GstStructure *msgstruct = gst_message_get_structure(msg))
1264 const gchar *eventname = gst_structure_get_name(msgstruct);
1267 if (!strcmp(eventname, "eventSizeChanged") || !strcmp(eventname, "eventSizeAvail"))
1269 gst_structure_get_int (msgstruct, "aspect_ratio", &m_aspect);
1270 gst_structure_get_int (msgstruct, "width", &m_width);
1271 gst_structure_get_int (msgstruct, "height", &m_height);
1272 if (strstr(eventname, "Changed"))
1273 m_event((iPlayableService*)this, evVideoSizeChanged);
1275 else if (!strcmp(eventname, "eventFrameRateChanged") || !strcmp(eventname, "eventFrameRateAvail"))
1277 gst_structure_get_int (msgstruct, "frame_rate", &m_framerate);
1278 if (strstr(eventname, "Changed"))
1279 m_event((iPlayableService*)this, evVideoFramerateChanged);
1281 else if (!strcmp(eventname, "eventProgressiveChanged") || !strcmp(eventname, "eventProgressiveAvail"))
1283 gst_structure_get_int (msgstruct, "progressive", &m_progressive);
1284 if (strstr(eventname, "Changed"))
1285 m_event((iPlayableService*)this, evVideoProgressiveChanged);
1291 case GST_MESSAGE_BUFFERING:
1293 GstBufferingMode mode;
1294 gst_message_parse_buffering(msg, &(m_bufferInfo.bufferPercent));
1295 gst_message_parse_buffering_stats(msg, &mode, &(m_bufferInfo.avgInRate), &(m_bufferInfo.avgOutRate), &(m_bufferInfo.bufferingLeft));
1296 m_event((iPlayableService*)this, evBuffering);
1301 g_free (sourceName);
1304 GstBusSyncReply eServiceMP3::gstBusSyncHandler(GstBus *bus, GstMessage *message, gpointer user_data)
1306 eServiceMP3 *_this = (eServiceMP3*)user_data;
1307 _this->m_pump.send(1);
1309 return GST_BUS_PASS;
1312 audiotype_t eServiceMP3::gstCheckAudioPad(GstStructure* structure)
1317 if ( gst_structure_has_name (structure, "audio/mpeg"))
1319 gint mpegversion, layer = -1;
1320 if (!gst_structure_get_int (structure, "mpegversion", &mpegversion))
1323 switch (mpegversion) {
1326 gst_structure_get_int (structure, "layer", &layer);
1342 else if ( gst_structure_has_name (structure, "audio/x-ac3") || gst_structure_has_name (structure, "audio/ac3") )
1344 else if ( gst_structure_has_name (structure, "audio/x-dts") || gst_structure_has_name (structure, "audio/dts") )
1346 else if ( gst_structure_has_name (structure, "audio/x-raw-int") )
1352 void eServiceMP3::gstPoll(const int &msg)
1354 /* ok, we have a serious problem here. gstBusSyncHandler sends
1355 us the wakup signal, but likely before it was posted.
1356 the usleep, an EVIL HACK (DON'T DO THAT!!!) works around this.
1358 I need to understand the API a bit more to make this work
1362 GstBus *bus = gst_pipeline_get_bus (GST_PIPELINE (m_gst_playbin));
1363 GstMessage *message;
1365 while ((message = gst_bus_pop (bus)))
1367 gstBusCall(bus, message);
1368 gst_message_unref (message);
1375 eAutoInitPtr<eServiceFactoryMP3> init_eServiceFactoryMP3(eAutoInitNumbers::service+1, "eServiceFactoryMP3");
1377 void eServiceMP3::gstCBsubtitleAvail(GstElement *appsink, gpointer user_data)
1379 eServiceMP3 *_this = (eServiceMP3*)user_data;
1380 eSingleLocker l(_this->m_subs_to_pull_lock);
1381 ++_this->m_subs_to_pull;
1382 _this->m_pump.send(2);
1385 void eServiceMP3::pullSubtitle()
1388 g_object_get (G_OBJECT (m_gst_playbin), "text-sink", &sink, NULL);
1391 while (m_subs_to_pull && m_subtitle_pages.size() < 2)
1395 eSingleLocker l(m_subs_to_pull_lock);
1397 g_signal_emit_by_name (sink, "pull-buffer", &buffer);
1401 gint64 buf_pos = GST_BUFFER_TIMESTAMP(buffer);
1402 gint64 duration_ns = GST_BUFFER_DURATION(buffer);
1403 size_t len = GST_BUFFER_SIZE(buffer);
1404 unsigned char line[len+1];
1405 memcpy(line, GST_BUFFER_DATA(buffer), len);
1407 eDebug("got new subtitle @ buf_pos = %lld ns (in pts=%lld): '%s' ", buf_pos, buf_pos/11111, line);
1408 ePangoSubtitlePage page;
1409 gRGB rgbcol(0xD0,0xD0,0xD0);
1410 page.m_elements.push_back(ePangoSubtitlePageElement(rgbcol, (const char*)line));
1411 page.show_pts = buf_pos / 11111L;
1412 page.m_timeout = duration_ns / 1000000;
1413 m_subtitle_pages.push_back(page);
1415 gst_buffer_unref(buffer);
1418 gst_object_unref(sink);
1421 eDebug("no subtitle sink!");
1424 void eServiceMP3::pushSubtitles()
1426 ePangoSubtitlePage page;
1428 while ( !m_subtitle_pages.empty() )
1430 getPlayPosition(running_pts);
1431 page = m_subtitle_pages.front();
1432 gint64 diff_ms = ( page.show_pts - running_pts ) / 90;
1433 eDebug("eServiceMP3::pushSubtitles show_pts = %lld running_pts = %lld diff = %lld", page.show_pts, running_pts, diff_ms);
1436 GstFormat fmt = GST_FORMAT_TIME;
1438 if (gst_element_query_position(m_gst_playbin, &fmt, &now) != -1)
1441 diff_ms = abs((now - running_pts) / 90);
1442 eDebug("diff < -100ms check decoder/pipeline diff: decoder: %lld, pipeline: %lld, diff: %lld", running_pts, now, diff_ms);
1443 if (diff_ms > 100000)
1445 eDebug("high decoder/pipeline difference.. assume decoder has now started yet.. check again in 1sec");
1446 m_subtitle_sync_timer->start(1000, true);
1451 eDebug("query position for decoder/pipeline check failed!");
1452 eDebug("subtitle to late... drop");
1453 m_subtitle_pages.pop_front();
1455 else if ( diff_ms > 20 )
1457 // eDebug("start recheck timer");
1458 m_subtitle_sync_timer->start(diff_ms > 1000 ? 1000 : diff_ms, true);
1461 else // immediate show
1463 if (m_subtitle_widget)
1464 m_subtitle_widget->setPage(page);
1465 m_subtitle_pages.pop_front();
1468 if (m_subtitle_pages.empty())
1472 RESULT eServiceMP3::enableSubtitles(eWidget *parent, ePyObject tuple)
1475 int tuplesize = PyTuple_Size(tuple);
1479 if (!PyTuple_Check(tuple))
1483 entry = PyTuple_GET_ITEM(tuple, 1);
1484 if (!PyInt_Check(entry))
1486 pid = PyInt_AsLong(entry);
1487 entry = PyTuple_GET_ITEM(tuple, 2);
1488 if (!PyInt_Check(entry))
1490 type = PyInt_AsLong(entry);
1492 if (m_currentSubtitleStream != pid)
1494 eSingleLocker l(m_subs_to_pull_lock);
1495 g_object_set (G_OBJECT (m_gst_playbin), "current-text", pid, NULL);
1496 m_currentSubtitleStream = pid;
1498 m_subtitle_pages.clear();
1501 m_subtitle_widget = 0;
1502 m_subtitle_widget = new eSubtitleWidget(parent);
1503 m_subtitle_widget->resize(parent->size()); /* full size */
1505 g_object_get (G_OBJECT (m_gst_playbin), "current-text", &text_pid, NULL);
1507 eDebug ("eServiceMP3::switched to subtitle stream %i", text_pid);
1512 eDebug("eServiceMP3::enableSubtitles needs a tuple as 2nd argument!\n"
1513 "for gst subtitles (2, subtitle_stream_count, subtitle_type)");
1517 RESULT eServiceMP3::disableSubtitles(eWidget *parent)
1519 eDebug("eServiceMP3::disableSubtitles");
1520 m_subtitle_pages.clear();
1521 delete m_subtitle_widget;
1522 m_subtitle_widget = 0;
1526 PyObject *eServiceMP3::getCachedSubtitle()
1528 // eDebug("eServiceMP3::getCachedSubtitle");
1532 PyObject *eServiceMP3::getSubtitleList()
1534 eDebug("eServiceMP3::getSubtitleList");
1536 ePyObject l = PyList_New(0);
1537 int stream_count[sizeof(subtype_t)];
1538 for ( unsigned int i = 0; i < sizeof(subtype_t); i++ )
1539 stream_count[i] = 0;
1541 for (std::vector<subtitleStream>::iterator IterSubtitleStream(m_subtitleStreams.begin()); IterSubtitleStream != m_subtitleStreams.end(); ++IterSubtitleStream)
1543 subtype_t type = IterSubtitleStream->type;
1544 ePyObject tuple = PyTuple_New(5);
1545 PyTuple_SET_ITEM(tuple, 0, PyInt_FromLong(2));
1546 PyTuple_SET_ITEM(tuple, 1, PyInt_FromLong(stream_count[type]));
1547 PyTuple_SET_ITEM(tuple, 2, PyInt_FromLong(int(type)));
1548 PyTuple_SET_ITEM(tuple, 3, PyInt_FromLong(0));
1549 PyTuple_SET_ITEM(tuple, 4, PyString_FromString((IterSubtitleStream->language_code).c_str()));
1550 PyList_Append(l, tuple);
1552 stream_count[type]++;
1557 RESULT eServiceMP3::streamed(ePtr<iStreamedService> &ptr)
1563 PyObject *eServiceMP3::getBufferCharge()
1565 ePyObject tuple = PyTuple_New(5);
1566 PyTuple_SET_ITEM(tuple, 0, PyInt_FromLong(m_bufferInfo.bufferPercent));
1567 PyTuple_SET_ITEM(tuple, 1, PyInt_FromLong(m_bufferInfo.avgInRate));
1568 PyTuple_SET_ITEM(tuple, 2, PyInt_FromLong(m_bufferInfo.avgOutRate));
1569 PyTuple_SET_ITEM(tuple, 3, PyInt_FromLong(m_bufferInfo.bufferingLeft));
1570 PyTuple_SET_ITEM(tuple, 4, PyInt_FromLong(m_buffer_size));
1574 int eServiceMP3::setBufferSize(int size)
1576 m_buffer_size = size;
1577 g_object_set (G_OBJECT (m_gst_playbin), "buffer-size", m_buffer_size, NULL);
1583 #warning gstreamer not available, not building media player