From 9b88996d92f1052edbd20339fd0f260576796186 Mon Sep 17 00:00:00 2001 From: nebojsa Date: Thu, 5 Nov 2009 23:13:06 +0000 Subject: [PATCH] added support for playlist element length --- .../LiveSupport/Core/PlaylistElement.h | 24 ++++ .../include/LiveSupport/Core/XmlRpcTools.h | 12 ++ campcaster/src/modules/core/src/Playlist.cxx | 4 +- .../src/modules/core/src/PlaylistElement.cxx | 16 +++ .../src/modules/core/src/XmlRpcTools.cxx | 22 ++++ .../PlaylistExecutor/AudioPlayerInterface.h | 4 +- .../src/AudioPlayerFactoryGstreamerTest.cxx | 4 +- .../playlistExecutor/src/GstreamerPlayer.cxx | 18 +-- .../playlistExecutor/src/GstreamerPlayer.h | 5 +- .../playlistExecutor/src/SmilHandler.h | 124 +++++++++++++++--- .../storageClient/src/WebStorageClient.cxx | 14 +- .../modules/storageServer/var/M3uPlaylist.php | 3 +- .../modules/storageServer/var/Playlist.php | 5 + .../storageServer/var/SmilPlaylist.php | 3 +- .../storageServer/var/playlistFormat.php | 2 +- .../var/xmlrpc/schedulerPhpClient.php | 4 +- .../gLiveSupport/src/GLiveSupport.cxx | 24 ++-- .../products/scheduler/src/PlaylistEvent.cxx | 4 +- 18 files changed, 231 insertions(+), 61 deletions(-) diff --git a/campcaster/src/modules/core/include/LiveSupport/Core/PlaylistElement.h b/campcaster/src/modules/core/include/LiveSupport/Core/PlaylistElement.h index f95fab834..defba7dd3 100644 --- a/campcaster/src/modules/core/include/LiveSupport/Core/PlaylistElement.h +++ b/campcaster/src/modules/core/include/LiveSupport/Core/PlaylistElement.h @@ -132,6 +132,7 @@ class PlaylistElement : public Configurable Ptr::Ref relativeOffset; Ptr::Ref clipStart; Ptr::Ref clipEnd; + Ptr::Ref clipLength; /** * The type of the entry (audio clip or sub-playlist). @@ -195,6 +196,7 @@ class PlaylistElement : public Configurable */ PlaylistElement(Ptr::Ref id, Ptr::Ref relativeOffset, + Ptr::Ref clipLength, Ptr::Ref audioClip, Ptr::Ref fadeInfo = Ptr::Ref()) @@ -202,6 +204,7 @@ class PlaylistElement : public Configurable { this->id = id; this->relativeOffset = relativeOffset; + this->clipLength = clipLength; this->audioClip = audioClip; this->playable = audioClip; this->fadeInfo = fadeInfo; @@ -222,6 +225,7 @@ class PlaylistElement : public Configurable * @param fadeInfo fade in / fade out information (optional) */ PlaylistElement(Ptr::Ref relativeOffset, + Ptr::Ref clipLength, Ptr::Ref audioClip, Ptr::Ref fadeInfo = Ptr::Ref()) @@ -229,6 +233,7 @@ class PlaylistElement : public Configurable { this->id = UniqueId::generateId(); this->relativeOffset = relativeOffset; + this->clipLength = clipLength; this->audioClip = audioClip; this->playable = audioClip; this->fadeInfo = fadeInfo; @@ -249,6 +254,7 @@ class PlaylistElement : public Configurable * @param fadeInfo fade in / fade out information (optional) */ PlaylistElement(Ptr::Ref relativeOffset, + Ptr::Ref clipLength, Ptr::Ref playlist, Ptr::Ref fadeInfo = Ptr::Ref()) @@ -256,6 +262,7 @@ class PlaylistElement : public Configurable { this->id = UniqueId::generateId(); this->relativeOffset = relativeOffset; + this->clipLength = clipLength; this->playlist = playlist; this->playable = playlist; this->fadeInfo = fadeInfo; @@ -369,6 +376,23 @@ class PlaylistElement : public Configurable return clipEnd; } + /** + */ + void + setClipLength(Ptr::Ref newLength) + throw () + { + clipLength = newLength; + } + + /** + */ + Ptr::Ref + getClipLength(void) const throw () + { + return clipLength; + } + /** * Return the type of this playlist element. If the return * value is PlaylistElement::AudioClipType (resp. PlaylistType), diff --git a/campcaster/src/modules/core/include/LiveSupport/Core/XmlRpcTools.h b/campcaster/src/modules/core/include/LiveSupport/Core/XmlRpcTools.h index 83364c27a..8179b7fec 100644 --- a/campcaster/src/modules/core/include/LiveSupport/Core/XmlRpcTools.h +++ b/campcaster/src/modules/core/include/LiveSupport/Core/XmlRpcTools.h @@ -204,6 +204,18 @@ class XmlRpcTools extractClipEnd(XmlRpc::XmlRpcValue & xmlRpcValue) throw (std::invalid_argument); + /** + * Extract the relative offset from the XML-RPC parameters. + * + * @param xmlRpcValue the XML-RPC parameter to extract from. + * @return a time_duration that was found in the XML-RPC parameter. + * @exception std::invalid_argument if there was no relativeOffset + * member in xmlRpcValue + */ + static Ptr::Ref + extractClipLength(XmlRpc::XmlRpcValue & xmlRpcValue) + throw (std::invalid_argument); + /** * Convert a Playlist to an XmlRpcValue * diff --git a/campcaster/src/modules/core/src/Playlist.cxx b/campcaster/src/modules/core/src/Playlist.cxx index a79d14cc7..9aac2c983 100644 --- a/campcaster/src/modules/core/src/Playlist.cxx +++ b/campcaster/src/modules/core/src/Playlist.cxx @@ -474,7 +474,7 @@ Playlist::addAudioClip(Ptr::Ref audioClip, throw () { Ptr::Ref playlistElement(new PlaylistElement( - relativeOffset, audioClip, fadeInfo)); + relativeOffset, audioClip->getPlaylength(), audioClip, fadeInfo)); elementList->insert(std::make_pair(*relativeOffset, playlistElement)); Ptr::Ref endOffset(new time_duration( @@ -498,7 +498,7 @@ Playlist::addPlaylist(Ptr::Ref playlist, throw () { Ptr::Ref playlistElement(new PlaylistElement( - relativeOffset, playlist, fadeInfo)); + relativeOffset, playlist->getPlaylength(), playlist, fadeInfo)); elementList->insert(std::make_pair(*relativeOffset, playlistElement)); Ptr::Ref endOffset(new time_duration( diff --git a/campcaster/src/modules/core/src/PlaylistElement.cxx b/campcaster/src/modules/core/src/PlaylistElement.cxx index 9be361708..81a27fc58 100644 --- a/campcaster/src/modules/core/src/PlaylistElement.cxx +++ b/campcaster/src/modules/core/src/PlaylistElement.cxx @@ -71,6 +71,10 @@ static const std::string clipStartAttrName = "clipStart"; */ static const std::string clipEndAttrName = "clipEnd"; +/** + */ +static const std::string clipLengthAttrName = "clipLength"; + /** * The name of the audio clip child element of the playlist element. */ @@ -143,6 +147,15 @@ PlaylistElement :: configure(const xmlpp::Element & element) setClipEnd(Ptr::Ref(new time_duration(0,0,0,0))); } + // set clip length + if (attribute = element.get_attribute(clipLengthAttrName)) { + Ptr::Ref clipLengthString(new std::string( + attribute->get_value() )); + clipLength = TimeConversion::parseTimeDuration(clipLengthString); + } else { + setClipLength(Ptr::Ref(new time_duration(0,0,0,0))); + } + // set audio clip xmlpp::Node::NodeList childNodes = element.get_children(audioClipElementName); @@ -235,6 +248,9 @@ PlaylistElement :: getXmlElementString(void) throw () xmlString->append(clipEndAttrName + "=\"" + toFixedString(clipEnd) + "\">\n"); + xmlString->append(clipLengthAttrName + "=\"" + + toFixedString(clipLength) + + "\">\n"); xmlString->append(*getPlayable()->getXmlElementString() + "\n"); if (fadeInfo) { diff --git a/campcaster/src/modules/core/src/XmlRpcTools.cxx b/campcaster/src/modules/core/src/XmlRpcTools.cxx index 47bff8b59..1bc27866a 100644 --- a/campcaster/src/modules/core/src/XmlRpcTools.cxx +++ b/campcaster/src/modules/core/src/XmlRpcTools.cxx @@ -91,6 +91,11 @@ const std::string clipStartName = "clipStart"; *----------------------------------------------------------------------------*/ const std::string clipEndName = "clipEnd"; +/*------------------------------------------------------------------------------ + * The name of the relative offset member in the XML-RPC parameter structure + *----------------------------------------------------------------------------*/ +const std::string clipLengthName = "clipLength"; + /*------------------------------------------------------------------------------ * The name of the from member in the XML-RPC parameter structure. *----------------------------------------------------------------------------*/ @@ -318,6 +323,23 @@ XmlRpcTools :: extractClipEnd(XmlRpc::XmlRpcValue & xmlRpcValue) return clipEnd; } +/*------------------------------------------------------------------------------ + * Extract the relative offset from an XML-RPC function call parameter + *----------------------------------------------------------------------------*/ +Ptr::Ref +XmlRpcTools :: extractClipLength(XmlRpc::XmlRpcValue & xmlRpcValue) + throw (std::invalid_argument) +{ + if (!xmlRpcValue.hasMember(clipLengthName) + || xmlRpcValue[clipLengthName].getType() + != XmlRpc::XmlRpcValue::TypeInt) { + throw std::invalid_argument("missing clip length argument"); + } + + Ptr::Ref clipLength(new time_duration(0,0, + int(xmlRpcValue[clipLengthName]), 0)); + return clipLength; +} /*------------------------------------------------------------------------------ * Extract the relative offset from an XML-RPC function call parameter diff --git a/campcaster/src/modules/playlistExecutor/include/LiveSupport/PlaylistExecutor/AudioPlayerInterface.h b/campcaster/src/modules/playlistExecutor/include/LiveSupport/PlaylistExecutor/AudioPlayerInterface.h index a40c969e8..e015f6fa5 100644 --- a/campcaster/src/modules/playlistExecutor/include/LiveSupport/PlaylistExecutor/AudioPlayerInterface.h +++ b/campcaster/src/modules/playlistExecutor/include/LiveSupport/PlaylistExecutor/AudioPlayerInterface.h @@ -153,7 +153,7 @@ class AudioPlayerInterface * @see #start */ virtual bool - open(const std::string fileUrl, gint64 id) + open(const std::string fileUrl, gint64 id, gint64 offset) throw (std::invalid_argument, std::runtime_error) = 0; /** @@ -204,7 +204,7 @@ class AudioPlayerInterface * @see #stop */ virtual void - start(gint64) throw (std::logic_error) + start() throw (std::logic_error) = 0; /** diff --git a/campcaster/src/modules/playlistExecutor/src/AudioPlayerFactoryGstreamerTest.cxx b/campcaster/src/modules/playlistExecutor/src/AudioPlayerFactoryGstreamerTest.cxx index 5af6fdb50..9e623243a 100644 --- a/campcaster/src/modules/playlistExecutor/src/AudioPlayerFactoryGstreamerTest.cxx +++ b/campcaster/src/modules/playlistExecutor/src/AudioPlayerFactoryGstreamerTest.cxx @@ -156,11 +156,11 @@ AudioPlayerFactoryGstreamerTest :: simplePlayTest(void) audioPlayer = audioPlayerFactory->getAudioPlayer(); // CPPUNIT_ASSERT_NO_THROW( - audioPlayer->open("file:///tmp/campcaster/simple.smil", 0); + audioPlayer->open("file:///tmp/campcaster/simple.smil", 0L, 0L); // ); // CPPUNIT_ASSERT(!audioPlayer->isPlaying()); // CPPUNIT_ASSERT_NO_THROW( - audioPlayer->start(0, -1); + audioPlayer->start(); g_main_loop_run(loop); diff --git a/campcaster/src/modules/playlistExecutor/src/GstreamerPlayer.cxx b/campcaster/src/modules/playlistExecutor/src/GstreamerPlayer.cxx index 1cb5d831c..865b3caeb 100644 --- a/campcaster/src/modules/playlistExecutor/src/GstreamerPlayer.cxx +++ b/campcaster/src/modules/playlistExecutor/src/GstreamerPlayer.cxx @@ -253,7 +253,7 @@ GstreamerPlayer :: preload(const std::string fileUrl) * Specify which file to play *----------------------------------------------------------------------------*/ bool -GstreamerPlayer :: open(const std::string fileUri, gint64 id) +GstreamerPlayer :: open(const std::string fileUri, gint64 id, gint64 offset) throw (std::invalid_argument, std::runtime_error) { DEBUG_BLOCK @@ -273,8 +273,10 @@ GstreamerPlayer :: open(const std::string fileUri, gint64 id) m_playContext->setAudioDevice(m_audioDevice); if (fileUri.find(std::string(".smil")) != std::string::npos) { m_smilHandler = new SmilHandler(); - m_smilHandler->openSmilFile(fileUri.c_str()); + m_smilHandler->openSmilFile(fileUri.c_str(), offset); AudioDescription *audioDescription = m_smilHandler->getNext(); + gint64 clipOffset = m_smilHandler->getClipOffset(); + m_playContext->setClipOffset(clipOffset); m_Id = audioDescription->m_Id; m_open=m_playContext->openSource(audioDescription); m_url = (const char*) audioDescription->m_src; @@ -383,19 +385,11 @@ GstreamerPlayer :: getPosition(void) throw (std::logic_error) return length; } -gint64 -GstreamerPlayer :: offsetSmil(gint64 startTime) -{ - //have to take start_time, offset the smilHandler based on it (remove all clips that fall before start_time) - //and calculate clip offset as a reminder, then set that offset to the player somehow - return 0; -} - /*------------------------------------------------------------------------------ * Start playing *----------------------------------------------------------------------------*/ void -GstreamerPlayer :: start(gint64 startTime) throw (std::logic_error) +GstreamerPlayer :: start() throw (std::logic_error) { DEBUG_BLOCK if (!isOpen()) { @@ -403,8 +397,6 @@ GstreamerPlayer :: start(gint64 startTime) throw (std::logi } if (!isPlaying()) { - gint64 clipOffset = offsetSmil(startTime); - m_playContext->setClipOffset(clipOffset); m_playContext->playContext(); }else{ error() << "Already playing!" << endl; diff --git a/campcaster/src/modules/playlistExecutor/src/GstreamerPlayer.h b/campcaster/src/modules/playlistExecutor/src/GstreamerPlayer.h index 42d41db1d..e65433f02 100644 --- a/campcaster/src/modules/playlistExecutor/src/GstreamerPlayer.h +++ b/campcaster/src/modules/playlistExecutor/src/GstreamerPlayer.h @@ -127,7 +127,6 @@ class GstreamerPlayer : virtual public Configurable, gint64 m_currentPlayLength; gint64 m_Id; - gint64 offsetSmil(gint64);//private helper to handle playback offset public: /** * Contains runtime error messages from GStreamer. @@ -287,7 +286,7 @@ public: * @see #start */ virtual bool - open(const std::string fileUrl, gint64 id) + open(const std::string fileUrl, gint64 id, gint64 offset) throw (std::invalid_argument, std::runtime_error); /** @@ -328,7 +327,7 @@ public: * @see #stop */ virtual void - start(gint64) throw (std::logic_error); + start() throw (std::logic_error); /** * Pause the player. diff --git a/campcaster/src/modules/playlistExecutor/src/SmilHandler.h b/campcaster/src/modules/playlistExecutor/src/SmilHandler.h index 37971b971..f79146e54 100644 --- a/campcaster/src/modules/playlistExecutor/src/SmilHandler.h +++ b/campcaster/src/modules/playlistExecutor/src/SmilHandler.h @@ -99,6 +99,7 @@ public: gint64 m_begin; gint64 m_clipBegin; gint64 m_clipEnd; + gint64 m_clipLength; gint64 m_Id; std::vector m_animations; @@ -107,6 +108,7 @@ public: m_begin(0), m_clipBegin(0), m_clipEnd(0), + m_clipLength(0), m_Id(0) { } @@ -147,6 +149,7 @@ class SmilHandler xmlNode *m_bodyChildren; xmlNode *m_parChildren; SmilHandler *m_subSmil; + gint64 m_smilOffset; public: @@ -155,6 +158,7 @@ public: m_bodyChildren = NULL; m_parChildren = NULL; m_subSmil = NULL; + m_smilOffset = 0L; } ~SmilHandler(){ @@ -172,8 +176,9 @@ public: * @para smil a MinimalAudioSmil object. * @return TRUE if processing was successful, FALSE otherwise. */ - gboolean openSmilFile(const gchar *xmlFile){ + gboolean openSmilFile(const gchar *xmlFile, gint64 offset){ xmlNode *node; + m_smilOffset = offset; /* parse the XML files */ m_document = xmlReadFile(xmlFile, NULL, XML_PARSE_RECOVER); @@ -193,8 +198,88 @@ public: emptysmilrecovery: AudioDescription *audioDescription = NULL; + +//TODO: m_smilOffset must contain correct clipOffset once this function exits!!!!!! + if(m_subSmil != NULL){ - audioDescription = m_subSmil->getNext(); + audioDescription = m_subSmil->getNextInternal(); + if(audioDescription == NULL){ + delete m_subSmil; + m_subSmil = NULL; + }else{ + if(m_smilOffset >= audioDescription->m_clipLength) + { + m_smilOffset -= audioDescription->m_clipLength; + goto emptysmilrecovery; + } + return audioDescription; + } + } + + if(m_parChildren){//we are currently traversing par segment + audioDescription = getNextPar(); + } + + if(audioDescription == NULL && m_bodyChildren){//par exaused, see if there is more in the body segment + for (; m_bodyChildren; m_bodyChildren = m_bodyChildren->next) { + if (m_bodyChildren->type == XML_ELEMENT_NODE) { + if (!strcmp((const char*)m_bodyChildren->name, "par")) { + m_parChildren = m_bodyChildren->children; + audioDescription = getNextPar(); + if(audioDescription != NULL){ + m_bodyChildren = m_bodyChildren->next; + break; + } + } else { + GST_WARNING("unsupported SMIL element %s found", m_bodyChildren->name); + } + } + } + } + + if(audioDescription != NULL && std::string(audioDescription->m_src).find(".smil") != std::string::npos){//we have a sub smil + m_subSmil = new SmilHandler(); + m_subSmil->openSmilFile(audioDescription->m_src, m_smilOffset); + delete audioDescription; + audioDescription = m_subSmil->getNextInternal(); + if(audioDescription == NULL){ + delete m_subSmil; + m_subSmil = NULL; + goto emptysmilrecovery; + } + } + if(audioDescription != NULL && m_smilOffset >= audioDescription->m_clipLength) + { + m_smilOffset -= audioDescription->m_clipLength; + goto emptysmilrecovery; + } + + return audioDescription; + } + + gint64 getClipOffset() { + gint64 offset = m_smilOffset; + m_smilOffset = 0L;//offset only valid after the first getNext + return offset; + } + + gint64 getPlayLength() throw() { + gint64 ns = 0LL; + //TODO: calculate proper playlist length + return ns; + } + +private: + + /** + * Fetch next audio entry in sequence. + * @return AudioDescription object if processing was successful, NULL otherwise. + */ + AudioDescription *getNextInternal(){ +emptysmilrecoveryint: + AudioDescription *audioDescription = NULL; + if(m_subSmil != NULL){ + audioDescription = m_subSmil->getNextInternal(); if(audioDescription == NULL){ delete m_subSmil; m_subSmil = NULL; @@ -226,27 +311,19 @@ emptysmilrecovery: if(audioDescription != NULL && std::string(audioDescription->m_src).find(".smil") != std::string::npos){//we have a sub smil m_subSmil = new SmilHandler(); - m_subSmil->openSmilFile(audioDescription->m_src); + m_subSmil->openSmilFile(audioDescription->m_src, m_smilOffset); delete audioDescription; - audioDescription = m_subSmil->getNext(); + audioDescription = m_subSmil->getNextInternal(); if(audioDescription == NULL){ delete m_subSmil; m_subSmil = NULL; - goto emptysmilrecovery; + goto emptysmilrecoveryint; } } return audioDescription; } - - gint64 getPlayLength() throw() { - gint64 ns = 0LL; - //TODO: calculate proper playlist length - return ns; - } - -private: - + /** * Fetch next audio entry from "" SMIL segment. * @@ -281,11 +358,12 @@ private: xmlNode * node; xmlAttribute * attr; - gchar * src = 0; - gchar * begin = 0; - gchar * clipBegin = 0; - gchar * clipEnd = 0; - gchar * idStr = 0; + gchar * src = 0; + gchar * begin = 0; + gchar * clipBegin = 0; + gchar * clipEnd = 0; + gchar * clipLength = 0; + gchar * idStr = 0; /* handle the attributes */ for (attr = ((xmlElement*)audio)->attributes; attr; attr = (xmlAttribute*) attr->next) { @@ -311,6 +389,10 @@ private: if ((node = attr->children) && node->type == XML_TEXT_NODE) { clipEnd = (gchar*) node->content; } + } else if (!strcmp((const char*)attr->name, "clipLength")) { + if ((node = attr->children) && node->type == XML_TEXT_NODE) { + clipLength = (gchar*) node->content; + } } else { GST_WARNING("unsupported SMIL audio element attribute: %s", attr->name); @@ -334,6 +416,10 @@ private: audioDescription->m_clipEnd = -1; } } + if(clipLength) + { + audioDescription->m_clipLength = su_smil_clock_value_to_nanosec(clipLength); + } if(idStr) { std::stringstream idReader(idStr); diff --git a/campcaster/src/modules/storageClient/src/WebStorageClient.cxx b/campcaster/src/modules/storageClient/src/WebStorageClient.cxx index dbfc4b941..9bc7fc9f4 100644 --- a/campcaster/src/modules/storageClient/src/WebStorageClient.cxx +++ b/campcaster/src/modules/storageClient/src/WebStorageClient.cxx @@ -161,6 +161,11 @@ const std::string smilPlayableStartAttrName = "clipBegin"; *----------------------------------------------------------------------------*/ const std::string smilPlayableEndAttrName = "clipEnd"; +/*------------------------------------------------------------------------------ + * The name of the attribute containing the clipLength of the Playable element. + *----------------------------------------------------------------------------*/ +const std::string smilPlayableLengthAttrName = "clipLength"; + /*------------------------------------------------------------------------------ * The name of the attribute containing the relative offset of the element. *----------------------------------------------------------------------------*/ @@ -1600,6 +1605,8 @@ WebStorageClient :: acquirePlaylist(Ptr::Ref id, = plElement->getClipStart(); Ptr::Ref clipEnd = plElement->getClipEnd(); + Ptr::Ref clipLength + = plElement->getClipLength(); Ptr::Ref fadeInfo = plElement->getFadeInfo(); @@ -1652,8 +1659,13 @@ WebStorageClient :: acquirePlaylist(Ptr::Ref id, smilPlayableNode->set_attribute( smilPlayableEndAttrName, *TimeConversion::timeDurationToSmilString( - clipEnd )); + clipEnd )); } + + smilPlayableNode->set_attribute( + smilPlayableLengthAttrName, + *TimeConversion::timeDurationToSmilString( + clipLength )); if (fadeInfo) { Ptr::Ref fadeIn = fadeInfo->getFadeIn(); diff --git a/campcaster/src/modules/storageServer/var/M3uPlaylist.php b/campcaster/src/modules/storageServer/var/M3uPlaylist.php index c07cb6865..851edea9b 100644 --- a/campcaster/src/modules/storageServer/var/M3uPlaylist.php +++ b/campcaster/src/modules/storageServer/var/M3uPlaylist.php @@ -168,6 +168,7 @@ class M3uPlaylist { $offset = '???'; $clipStart = '???'; $clipEnd = '???'; + $clipLength = '???'; $uri_h = preg_replace("|--|", "d;d;", htmlspecialchars("$uri")); if (preg_match("|\.([a-zA-Z0-9]+)$|", $uri, $va)) { switch (strtolower($ext = $va[1])) { @@ -186,7 +187,7 @@ class M3uPlaylist { break; } } - $res .= "$ind2\n". + $res .= "$ind2\n". $acOrPl. "$ind2\n"; } diff --git a/campcaster/src/modules/storageServer/var/Playlist.php b/campcaster/src/modules/storageServer/var/Playlist.php index 16ccc786f..c8e932737 100644 --- a/campcaster/src/modules/storageServer/var/Playlist.php +++ b/campcaster/src/modules/storageServer/var/Playlist.php @@ -424,6 +424,11 @@ class Playlist extends StoredFile { if (PEAR::isError($endArr)) { return $endArr; } + // get clipLength: + $lenArr = $this->md->getMetadataElement('clipLength', $elId); + if (PEAR::isError($lenArr)) { + return $lenArr; + } $offsetId = $offArr[0]['mid']; $offset = $offArr[0]['value']; // get audioClip: diff --git a/campcaster/src/modules/storageServer/var/SmilPlaylist.php b/campcaster/src/modules/storageServer/var/SmilPlaylist.php index 3a6fdf790..8799f67fd 100644 --- a/campcaster/src/modules/storageServer/var/SmilPlaylist.php +++ b/campcaster/src/modules/storageServer/var/SmilPlaylist.php @@ -278,7 +278,8 @@ class SmilPlaylistAudioElement { $offset = Playlist::secondsToPlaylistTime($tree->attrs['begin']->val); $clipStart = Playlist::secondsToPlaylistTime($tree->attrs['clipStart']->val); $clipEnd = Playlist::secondsToPlaylistTime($tree->attrs['clipEnd']->val); - $res = "$ind\n". + $clipLength = Playlist::secondsToPlaylistTime($tree->attrs['clipLength']->val); + $res = "$ind\n". "$ind2<$type id=\"$acGunid\" playlength=\"$playlength\" title=\"$title\"/>\n". $fInfo. "$ind\n"; diff --git a/campcaster/src/modules/storageServer/var/playlistFormat.php b/campcaster/src/modules/storageServer/var/playlistFormat.php index 7f4895a91..5193408fd 100644 --- a/campcaster/src/modules/storageServer/var/playlistFormat.php +++ b/campcaster/src/modules/storageServer/var/playlistFormat.php @@ -29,7 +29,7 @@ $playlistFormat = array( 'optional'=>array('fadeInfo'), ), 'attrs'=>array( - 'required'=>array('id', 'relativeOffset', 'clipStart', 'clipEnd'), + 'required'=>array('id', 'relativeOffset', 'clipStart', 'clipEnd', 'clipLength'), ), ), 'audioClip'=>array( diff --git a/campcaster/src/modules/storageServer/var/xmlrpc/schedulerPhpClient.php b/campcaster/src/modules/storageServer/var/xmlrpc/schedulerPhpClient.php index fa5f47980..d2cf292e4 100644 --- a/campcaster/src/modules/storageServer/var/xmlrpc/schedulerPhpClient.php +++ b/campcaster/src/modules/storageServer/var/xmlrpc/schedulerPhpClient.php @@ -26,8 +26,8 @@ $mdefs = array( "listMethods" => array('m'=>"system.listMethods", 'p'=>NULL, 't'=>NULL), "AddAudioClipToPlaylistMethod" => array( 'm'=>'addAudioClipToPlaylist', - 'p'=>array('sessionId'/*string*/, 'playlistId'/*string*/, 'audioClipId'/*string*/, 'relativeOffset'/*int*/, 'clipStart'/*int*/, 'clipEnd'/*int*/), - 't'=>array('string', 'string', 'string', 'int', 'int', 'int'), + 'p'=>array('sessionId'/*string*/, 'playlistId'/*string*/, 'audioClipId'/*string*/, 'relativeOffset'/*int*/, 'clipStart'/*int*/, 'clipEnd'/*int*/, 'clipLength'/*int*/), + 't'=>array('string', 'string', 'string', 'int', 'int', 'int', 'int'), 'r'=>array('playlistElementId'/*string*/), 'e'=>array( '301'=>'invalid argument format', diff --git a/campcaster/src/products/gLiveSupport/src/GLiveSupport.cxx b/campcaster/src/products/gLiveSupport/src/GLiveSupport.cxx index 4d2c8bf51..df66cfdde 100644 --- a/campcaster/src/products/gLiveSupport/src/GLiveSupport.cxx +++ b/campcaster/src/products/gLiveSupport/src/GLiveSupport.cxx @@ -1301,11 +1301,11 @@ GLiveSupport :: playOutputAudio(Ptr::Ref playable) switch (playable->getType()) { case Playable::AudioClipType: outputItemPlayingNow = acquireAudioClip(playable->getId()); - if(false == outputPlayer->open(*outputItemPlayingNow->getUri(), (gint64)outputItemPlayingNow->getId()->getId())) + if(false == outputPlayer->open(*outputItemPlayingNow->getUri(), (gint64)outputItemPlayingNow->getId()->getId(), 0L)) { return false; } - outputPlayer->start(0); + outputPlayer->start(); std::cerr << "gLiveSupport: Live Mode playing audio clip '" << *playable->getTitle() << "'" << std::endl; @@ -1313,8 +1313,8 @@ GLiveSupport :: playOutputAudio(Ptr::Ref playable) case Playable::PlaylistType: outputItemPlayingNow = acquirePlaylist(playable->getId()); - outputPlayer->open(*outputItemPlayingNow->getUri(), (gint64)outputItemPlayingNow->getId()->getId()); - outputPlayer->start(0); + outputPlayer->open(*outputItemPlayingNow->getUri(), (gint64)outputItemPlayingNow->getId()->getId(), 0L); + outputPlayer->start(); std::cerr << "gLiveSupport: Live Mode playing playlist '" << *playable->getTitle() << "'" << std::endl; @@ -1364,7 +1364,7 @@ GLiveSupport :: pauseOutputAudio(void) outputPlayerIsPaused = true; } else if (outputPlayerIsPaused) { - outputPlayer->start(0); + outputPlayer->start(); outputPlayerIsPaused = false; } } @@ -1446,8 +1446,8 @@ GLiveSupport :: playCueAudio(Ptr::Ref playable) switch (playable->getType()) { case Playable::AudioClipType: cueItemPlayingNow = acquireAudioClip(playable->getId()); - cuePlayer->open(*cueItemPlayingNow->getUri(), (gint64)cueItemPlayingNow->getId()->getId()); - cuePlayer->start(0); + cuePlayer->open(*cueItemPlayingNow->getUri(), (gint64)cueItemPlayingNow->getId()->getId(), 0L); + cuePlayer->start(); std::cerr << "gLiveSupport: Cue playing audio clip '" << *playable->getTitle() << "'" << std::endl; @@ -1455,8 +1455,8 @@ GLiveSupport :: playCueAudio(Ptr::Ref playable) case Playable::PlaylistType: cueItemPlayingNow = acquirePlaylist(playable->getId()); - cuePlayer->open(*cueItemPlayingNow->getUri(), (gint64)cueItemPlayingNow->getId()->getId()); - cuePlayer->start(0); + cuePlayer->open(*cueItemPlayingNow->getUri(), (gint64)cueItemPlayingNow->getId()->getId(), 0L); + cuePlayer->start(); std::cerr << "gLiveSupport: Cue playing playlist '" << *playable->getTitle() << "'" << std::endl; @@ -1505,7 +1505,7 @@ GLiveSupport :: pauseCueAudio(void) cuePlayerIsPaused = true; } else if (cuePlayerIsPaused) { - cuePlayer->start(0); + cuePlayer->start(); cuePlayerIsPaused = false; } } @@ -1772,8 +1772,8 @@ GLiveSupport :: playTestSoundOnCue(Ptr::Ref oldDevice, cuePlayer->close(); } cuePlayer->setAudioDevice(*newDevice); - cuePlayer->open(*testAudioUrl, (gint64)0); - cuePlayer->start(0); + cuePlayer->open(*testAudioUrl, 0L, 0L); + cuePlayer->start(); Ptr::Ref sleepT(new time_duration(microseconds(10))); while (cuePlayer->isPlaying()) { runMainLoop(); diff --git a/campcaster/src/products/scheduler/src/PlaylistEvent.cxx b/campcaster/src/products/scheduler/src/PlaylistEvent.cxx index e6cf099fd..2ba75de2c 100644 --- a/campcaster/src/products/scheduler/src/PlaylistEvent.cxx +++ b/campcaster/src/products/scheduler/src/PlaylistEvent.cxx @@ -158,8 +158,8 @@ PlaylistEvent :: start(Ptr::Ref offset) thr } try { - audioPlayer->open(*playlist->getUri(), (gint64)playlist->getId()->getId()); - audioPlayer->start(offset->total_microseconds()); + audioPlayer->open(*playlist->getUri(), (gint64)playlist->getId()->getId(), offset->total_microseconds()); + audioPlayer->start(); playLog->addPlayLogEntry(playlist->getId(), TimeConversion::now()); } catch (std::invalid_argument &e) {