NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Developers v
« Previous 1 … 6 7 8 9 10 … 93 Next »
Recording export tags and export details?

 
  • 0 Vote(s) - 0 Average
Recording export tags and export details?
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 52,865
Threads: 954
Joined: May 2006
#11
2013-10-23, 01:48 AM
BTW I stand corrected there are a lot of optional meta fields that NextPVR doesn't populate in the EPG

Code:
typedef struct EPG_TAG {
    unsigned int iUniqueBroadcastId; /*!< @brief (required) identifier for this event */
    const char * strTitle; /*!< @brief (required) this event's title */
    unsigned int iChannelNumber; /*!< @brief (required) the number of the channel this event occurs on */
    time_t startTime; /*!< @brief (required) start time in UTC */
    time_t endTime; /*!< @brief (required) end time in UTC */
    const char * strPlotOutline; /*!< @brief (optional) plot outline */
    const char * strPlot; /*!< @brief (optional) plot */
    const char * strIconPath; /*!< @brief (optional) icon path */
    int iGenreType; /*!< @brief (optional) genre type */
    int iGenreSubType; /*!< @brief (optional) genre sub type */
    const char * strGenreDescription; /*!< @brief (optional) genre. Will be used only when iGenreType = EPG_GENRE_USE_STRING */
    time_t firstAired; /*!< @brief (optional) first aired in UTC */
    int iParentalRating; /*!< @brief (optional) parental rating */
    int iStarRating; /*!< @brief (optional) star rating */
    bool bNotify; /*!< @brief (optional) notify the user when this event starts */
    int iSeriesNumber; /*!< @brief (optional) series number */
    int iEpisodeNumber; /*!< @brief (optional) episode number */
    int iEpisodePartNumber; /*!< @brief (optional) episode part number */
    const char * strEpisodeName; /*!< @brief (optional) episode name */
  } ATTRIBUTE_PACKED EPG_TAG;

and recordings
Code:
typedef struct PVR_RECORDING {
    char strRecordingId[PVR_ADDON_NAME_STRING_LENGTH]; /*!< @brief (required) unique id of the recording on the client. */
    char strTitle[PVR_ADDON_NAME_STRING_LENGTH]; /*!< @brief (required) the title of this recording */
    char strStreamURL[PVR_ADDON_URL_STRING_LENGTH]; /*!< @brief (required) stream URL to access this recording */
    char strDirectory[PVR_ADDON_URL_STRING_LENGTH]; /*!< @brief (optional) directory of this recording on the client */
    char strPlotOutline[PVR_ADDON_DESC_STRING_LENGTH]; /*!< @brief (optional) plot outline */
    char strPlot[PVR_ADDON_DESC_STRING_LENGTH]; /*!< @brief (optional) plot */
    char strChannelName[PVR_ADDON_NAME_STRING_LENGTH]; /*!< @brief (optional) channel name */
    char strIconPath[PVR_ADDON_URL_STRING_LENGTH]; /*!< @brief (optional) icon path */
    char strThumbnailPath[PVR_ADDON_URL_STRING_LENGTH]; /*!< @brief (optional) thumbnail path */
    char strFanartPath[PVR_ADDON_URL_STRING_LENGTH]; /*!< @brief (optional) fanart path */
    time_t recordingTime; /*!< @brief (optional) start time of the recording */
    int iDuration; /*!< @brief (optional) duration of the recording in seconds */
    int iPriority; /*!< @brief (optional) priority of this recording (from 0 - 100) */
    int iLifetime; /*!< @brief (optional) life time in days of this recording */
    int iGenreType; /*!< @brief (optional) genre type */
    int iGenreSubType; /*!< @brief (optional) genre sub type */
    int iPlayCount; /*!< @brief (optional) play count of this recording on the client */
    int iLastPlayedPosition; /*!< @brief (optional) last played position of this recording on the client */
  } ATTRIBUTE_PACKED PVR_RECORDING;

Martin
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (2): « Previous 1 2


Possibly Related Threads…
Thread Author Replies Views Last Post
  Custom recording tomx 2 491 2025-02-07, 09:14 AM
Last Post: tomx
  API call for Recording Complete linustorvalds 1 324 2025-01-19, 02:11 PM
Last Post: mvallevand
  Manual recording API mvallevand 2 962 2023-11-09, 02:14 PM
Last Post: mvallevand
  Recording direct to GPhotos API rgonzalez 0 1,434 2020-06-29, 04:45 AM
Last Post: rgonzalez
  Recurring Recording URL Parameters jcole998 2 2,938 2019-09-19, 01:08 PM
Last Post: jcole998
  Get recording length from stream skogl 46 13,706 2019-08-15, 09:34 PM
Last Post: sub
  Import/export recordings via API? whurlston 4 3,784 2019-02-19, 11:48 AM
Last Post: Graham
  Unexpected result when deleting a pending recording scJohn 5 3,717 2018-05-06, 10:09 PM
Last Post: sub
  How to best verify success when adding a recurring recording drmargarit 1 2,775 2017-03-02, 03:13 PM
Last Post: mvallevand
  Change recording filename programmatically immediately before recording starts? craigrs84 5 6,043 2015-07-13, 09:28 PM
Last Post: patco444

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Designed by D&D, modified by NextPVR - Powered by MyBB

Linear Mode
Threaded Mode