From f316ebc95baf322f6556bfad710e0eeddeae62d3 Mon Sep 17 00:00:00 2001 From: Steven Crader Date: Mon, 15 May 2023 22:44:37 -0700 Subject: [PATCH] Add support for controlling how segments are combined - `combineEqualTimes`: Combine segments if the `startTime`, `endTime`, and `speaker` match between the current and prior segments. Resolves #19 - `speakerChange`: Only include `speaker` when speaker changes. Resolves #20 - `combineSegments`: Replaces `combineSingleWordSegments` function. Combine segments where speaker is the same and concatenated `body` fits in the `combineSegmentsLength` --- README.md | 56 +- jest.config.js | 1 + package.json | 7 +- src/formats/html.ts | 22 +- src/formats/json.ts | 29 +- src/formats/srt.ts | 23 +- src/index.ts | 98 +- src/options.ts | 248 + src/segments.ts | 437 ++ src/tsconfig-test.json | 4 - src/types.ts | 7 +- test/html.test.ts | 2 + test/json.test.ts | 66 +- test/options.test.ts | 147 + test/segments.test.ts | 404 ++ test/setup.ts | 7 + test/srt.test.ts | 27 +- test/test.ts | 69 +- ...zzcast_json_combine_equal_time_parsed.json | 3916 ++++++++++++++ ..._json_combine_equal_time_space_parsed.json | 3916 ++++++++++++++ ...hange_combine_equal_time_space_parsed.json | 3461 ++++++++++++ ...cast_srt_combined_segments_128_parsed.json | 2020 +++++++ ...r_change_combined_segments_128_parsed.json | 1802 +++++++ ...dcast_json_combine_segments_32_parsed.json | 3284 ++++++++++++ ...a_podcast_json_combine_speaker_parsed.json | 60 + ...a_podcast_json_speaker_changed_parsed.json | 2881 ++++++++++ test/test_files/one_word_segments.json | 4711 +++++++++-------- .../one_word_segments_parsed_32.json | 264 +- .../one_word_segments_parsed_50.json | 164 +- test/test_utils.ts | 8 + tsconfig.json | 2 +- 31 files changed, 25474 insertions(+), 2669 deletions(-) create mode 100644 src/options.ts create mode 100644 src/segments.ts delete mode 100644 src/tsconfig-test.json create mode 100644 test/options.test.ts create mode 100644 test/segments.test.ts create mode 100644 test/setup.ts create mode 100644 test/test_files/buzzcast_json_combine_equal_time_parsed.json create mode 100644 test/test_files/buzzcast_json_combine_equal_time_space_parsed.json create mode 100644 test/test_files/buzzcast_json_speaker_change_combine_equal_time_space_parsed.json create mode 100644 test/test_files/buzzcast_srt_combined_segments_128_parsed.json create mode 100644 test/test_files/buzzcast_srt_speaker_change_combined_segments_128_parsed.json create mode 100644 test/test_files/how_to_start_a_podcast_json_combine_segments_32_parsed.json create mode 100644 test/test_files/how_to_start_a_podcast_json_combine_speaker_parsed.json create mode 100644 test/test_files/how_to_start_a_podcast_json_speaker_changed_parsed.json diff --git a/README.md b/README.md index c6e822e..1202431 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,8 @@ yarn add transcriptator There are three primary methods and two types. See the jsdoc for additional information. -The `convertFile` function accepts the transcript file data and parses it in to an array of `Segment`. If `transcriptFormat` is not defined, will use `determineFormat` to attempt to identify the type. +The `convertFile` function accepts the transcript file data and parses it in to an array of `Segment`. +If `transcriptFormat` is not defined, will use `determineFormat` to attempt to identify the type. convertFile(data: string, transcriptFormat: TranscriptFormat = undefined): Array @@ -57,17 +58,15 @@ The `determineFormat` function accepts the transcript file data and attempts to determineFormat(data: string): TranscriptFormat -The `combineSingleWordSegments` function is a helper function for combining the previously parsed `Segment` objects together. The only allowable use case is when the existing `Segment` only contain a single word in the `body`. - - combineSingleWordSegments(segments: Array, maxLength = 32): Array - The `TranscriptFormat` enum defines the allowable transcript types supported by Transcriptator. The `Segment` type defines the segment/cue of the transcript. ### Custom timestamp formatter -To change the way the `startTime` and `endTime` are formatted in `startTimeFormatted` and `endTimeFormatted`, register a custom formatter to be used instead. +To change the way the `startTime` and `endTime` are formatted in `startTimeFormatted` and `endTimeFormatted`, +register a custom formatter to be used instead. + The formatter function shall accept a single argument as a number and return the value formatted as a string. ```javascript @@ -80,6 +79,51 @@ function customFormatter(timestamp) { timestampFormatter.registerCustomFormatter(customFormatter) ``` +### Options for segments + +Additional options are available for combining or formatting two or more segments + +To change the options, use the `Options.setOptions` function. + +The options only need to be specified once and will be used when parsing any transcript data. + +To restore options to their default value, call `Options.restoreDefaultSettings`. + +The `IOptions` interface used by `Options` defines options for combining and formatting parsed segments. + +- `combineEqualTimes`: boolean + - Combine segments if the `Segment.startTime`, `Segment.endTime`, and `Segment.speaker` match between the current and prior segments + - Cannot be used with `combineSegments` or `combineSpeaker` + - Default: false +- `combineEqualTimesSeparator`: string + - Character to use when `combineEqualTimes` is true. + - Default: `\n` +- `combineSegments`: boolean + - Combine segments where speaker is the same and concatenated `body` fits in the `combineSegmentsLength` + - Cannot be used with `combineEqualTimes` or `combineSpeaker` + - Default: false +- `combineSegmentsLength`: number + - Max length of body text to use when `combineSegments` is true + - Default: See `DEFAULT_COMBINE_SEGMENTS_LENGTH` +- `combineSpeaker`: boolean + - Combine consecutive segments from the same speaker. + - Note: this will override `combineSegments` and `combineSegmentsLength` + - Warning: if the transcript does not contain speaker information, resulting segment will contain entire transcript text. + - Default: false +- `speakerChange`: boolean + - Only include `Segment.speaker` when speaker changes + - May be used in combination with `combineEqualTimes` and `combineSegments` + - Default: false + +```javascript +import { Options } from "transcriptator" + +Options.setOptions({ + combineSegments: true, + combineSegmentsLength: 32, +}) +``` + ## Supported File Formats ### SRT diff --git a/jest.config.js b/jest.config.js index 60aecb9..227f584 100644 --- a/jest.config.js +++ b/jest.config.js @@ -2,5 +2,6 @@ module.exports = { preset: "ts-jest", testEnvironment: "node", + setupFilesAfterEnv: ["/test/setup.ts"], coveragePathIgnorePatterns: ["test/*"], } diff --git a/package.json b/package.json index 1b2be07..bc5d208 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "scripts": { "build": "run-s -cln 'build:*'", "build:clean": "shx rm -rf dist", - "build:tsc": "tsc", + "build:tsc": "tsc --sourceMap false", "build:cp": "shx cp package.json dist && shx cp README.md dist && shx cp LICENSE.md dist", "build:replace": "shx sed -i 's/\"main\": \"index.ts\"/\"main\": \"index.js\"/g' dist/package.json > /dev/null", "lint": "run-p -cln 'lint:*'", @@ -30,7 +30,10 @@ "podcasting", "transcript" ], - "author": "Steven Crader", + "author": { + "name": "Steven Crader", + "url": "https://steven.crader.co" + }, "license": "MIT", "bugs": { "url": "https://github.com/stevencrader/transcriptator/issues" diff --git a/src/formats/html.ts b/src/formats/html.ts index bdf8cfa..e3903c2 100644 --- a/src/formats/html.ts +++ b/src/formats/html.ts @@ -1,5 +1,6 @@ import { HTMLElement, parse } from "node-html-parser" +import { addSegment } from "../segments" import { parseTimestamp, timestampFormatter } from "../timestamp" import { Segment } from "../types" @@ -87,16 +88,13 @@ const updateSegmentPartFromElement = ( * * @param segmentPart HTML segment data * @param lastSpeaker Name of last speaker. Will be used if no speaker found in `segmentLines` - * @returns Created {@link Segment} and updated speaker + * @returns Created segment */ -const createSegmentFromSegmentPart = ( - segmentPart: HTMLSegmentPart, - lastSpeaker: string -): { segment: Segment; speaker: string } => { +const createSegmentFromSegmentPart = (segmentPart: HTMLSegmentPart, lastSpeaker: string): Segment => { const calculatedSpeaker = segmentPart.cite ? segmentPart.cite : lastSpeaker const startTime = parseTimestamp(segmentPart.time) - const segment: Segment = { + return { startTime, startTimeFormatted: timestampFormatter.format(startTime), endTime: 0, @@ -104,8 +102,6 @@ const createSegmentFromSegmentPart = ( speaker: calculatedSpeaker.replace(":", "").trimEnd(), body: segmentPart.text, } - - return { segment, speaker: calculatedSpeaker } } /** @@ -115,7 +111,7 @@ const createSegmentFromSegmentPart = ( * @returns Segments created from HTML data */ const getSegmentsFromHTMLElements = (elements: Array): Array => { - const outSegments: Array = [] + let outSegments: Array = [] let lastSpeaker = "" let segmentPart: HTMLSegmentPart = { @@ -142,19 +138,19 @@ const getSegmentsFromHTMLElements = (elements: Array): Array 0) { - outSegments[totalSegments - 1].endTime = s.segment.startTime + outSegments[totalSegments - 1].endTime = segment.startTime outSegments[totalSegments - 1].endTimeFormatted = timestampFormatter.format( outSegments[totalSegments - 1].endTime ) } - outSegments.push(s.segment) + outSegments = addSegment(segment, outSegments) } // clear diff --git a/src/formats/json.ts b/src/formats/json.ts index da1d416..094cbad 100644 --- a/src/formats/json.ts +++ b/src/formats/json.ts @@ -1,3 +1,4 @@ +import { addSegment } from "../segments" import { parseSpeaker } from "../speaker" import { timestampFormatter } from "../timestamp" import { Segment } from "../types" @@ -17,7 +18,7 @@ export type JSONSegment = { /** * Name of speaker for `body` */ - speaker: string + speaker?: string /** * Text of transcript for segment */ @@ -73,17 +74,20 @@ export const isJSON = (data: string): boolean => { * @returns An array of Segments from the parsed data */ const parseDictSegmentsJSON = (data: JSONTranscript): Array => { - const outSegments: Array = [] + let outSegments: Array = [] data.segments.forEach((segment) => { - outSegments.push({ - startTime: segment.startTime, - startTimeFormatted: timestampFormatter.format(segment.startTime), - endTime: segment.endTime, - endTimeFormatted: timestampFormatter.format(segment.endTime), - speaker: segment.speaker, - body: segment.body, - }) + outSegments = addSegment( + { + startTime: segment.startTime, + startTimeFormatted: timestampFormatter.format(segment.startTime), + endTime: segment.endTime, + endTimeFormatted: timestampFormatter.format(segment.endTime), + speaker: segment.speaker, + body: segment.body, + }, + outSegments + ) }) return outSegments @@ -153,7 +157,7 @@ const getSegmentFromSubtitle = (data: SubtitleSegment): Segment => { * @throws {TypeError} When item in `data` does not match the {@link SubtitleSegment} format */ const parseListJSONSubtitle = (data: Array): Array => { - const outSegments: Array = [] + let outSegments: Array = [] let lastSpeaker = "" @@ -162,7 +166,8 @@ const parseListJSONSubtitle = (data: Array): Array => if (subtitleSegment !== undefined) { lastSpeaker = subtitleSegment.speaker ? subtitleSegment.speaker : lastSpeaker subtitleSegment.speaker = lastSpeaker - outSegments.push(subtitleSegment) + + outSegments = addSegment(subtitleSegment, outSegments) } else { throw new TypeError(`Unable to parse segment for item ${count}`) } diff --git a/src/formats/srt.ts b/src/formats/srt.ts index 352667e..0f7a87c 100644 --- a/src/formats/srt.ts +++ b/src/formats/srt.ts @@ -1,3 +1,4 @@ +import { addSegment } from "../segments" import { parseSpeaker } from "../speaker" import { parseTimestamp, timestampFormatter } from "../timestamp" import { PATTERN_LINE_SEPARATOR, Segment } from "../types" @@ -91,15 +92,12 @@ export const parseSRTSegment = (lines: Array): SRTSegment => { * * @param segmentLines Lines containing SRT data * @param lastSpeaker Name of last speaker. Will be used if no speaker found in `segmentLines` - * @returns Created {@link Segment} and updated speaker + * @returns Created segment */ -const createSegmentFromSRTLines = ( - segmentLines: Array, - lastSpeaker: string -): { segment: Segment; speaker: string } => { +const createSegmentFromSRTLines = (segmentLines: Array, lastSpeaker: string): Segment => { const srtSegment = parseSRTSegment(segmentLines) const calculatedSpeaker = srtSegment.speaker ? srtSegment.speaker : lastSpeaker - const segment: Segment = { + return { startTime: srtSegment.startTime, startTimeFormatted: timestampFormatter.format(srtSegment.startTime), endTime: srtSegment.endTime, @@ -107,7 +105,6 @@ const createSegmentFromSRTLines = ( speaker: calculatedSpeaker, body: srtSegment.body, } - return { segment, speaker: calculatedSpeaker } } /** @@ -136,7 +133,7 @@ export const parseSRT = (data: string): Array => { throw new TypeError(`Data is not valid SRT format`) } - const outSegments: Array = [] + let outSegments: Array = [] let lastSpeaker = "" let segmentLines = [] @@ -146,9 +143,8 @@ export const parseSRT = (data: string): Array => { // handle consecutive multiple blank lines if (segmentLines.length !== 0) { try { - const s = createSegmentFromSRTLines(segmentLines, lastSpeaker) - lastSpeaker = s.speaker - outSegments.push(s.segment) + outSegments = addSegment(createSegmentFromSRTLines(segmentLines, lastSpeaker), outSegments) + lastSpeaker = outSegments[outSegments.length - 1].speaker } catch (e) { console.error(`Error parsing SRT segment lines (source line ${count}): ${e}`) console.error(segmentLines) @@ -164,9 +160,8 @@ export const parseSRT = (data: string): Array => { // handle data when trailing line not included if (segmentLines.length !== 0) { try { - const s = createSegmentFromSRTLines(segmentLines, lastSpeaker) - lastSpeaker = s.speaker - outSegments.push(s.segment) + outSegments = addSegment(createSegmentFromSRTLines(segmentLines, lastSpeaker), outSegments) + lastSpeaker = outSegments[outSegments.length - 1].speaker } catch (e) { console.error(`Error parsing final SRT segment lines: ${e}`) console.error(segmentLines) diff --git a/src/index.ts b/src/index.ts index 8478d9a..4c52d4a 100644 --- a/src/index.ts +++ b/src/index.ts @@ -6,11 +6,7 @@ import { Segment, TranscriptFormat } from "./types" export { Segment, TranscriptFormat } from "./types" export { timestampFormatter, FormatterCallback } from "./timestamp" - -/** - * Regular Expression for detecting punctuation that should not be prefixed with a space - */ -const PATTERN_PUNCTUATIONS = /^ *[.,?!}\]>) *$]/ +export { Options, IOptions } from "./options" /** * Determines the format of transcript by inspecting the data @@ -46,7 +42,6 @@ export const determineFormat = (data: string): TranscriptFormat => { * * @param data The transcript data * @param transcriptFormat The format of the data. - * If undefined, will attempt to determine format using {@link determineFormat} * @returns An Array of Segment objects from the parsed data * @throws {TypeError} When `transcriptFormat` is unknown */ @@ -74,94 +69,3 @@ export const convertFile = (data: string, transcriptFormat: TranscriptFormat = u return outSegments } - -/** - * Append `addition` to `body` with a space. - * - * If `addition` matches the {@link PATTERN_PUNCTUATIONS} pattern, no space is added before the additional data. - * - * @param body Current body text - * @param addition Additional text to add to `body` - * @returns Combined data - */ -const combineBody = (body: string, addition: string): string => { - if (body) { - let separator = " " - if (PATTERN_PUNCTUATIONS.exec(addition)) { - separator = "" - } - return `${body}${separator}${addition}` - } - return addition -} - -/** - * Combine one or more {@link Segment} - * - * @param segments Array of Segment objects to combine - * @returns Combined segment where: - * - * - `startTime`: from first segment - * - `startTimeFormatted`: from first segment - * - `endTime`: from last segment - * - `endTimeFormatted`: from last segment - * - `speaker`: from first segment - * - `body`: combination of all segments - */ -const combineSegments = (segments: Array): Segment => { - const newSegment = segments[0] - segments.slice(1).forEach((segment) => { - newSegment.endTime = segment.endTime - newSegment.body = combineBody(newSegment.body, segment.body) - }) - return newSegment -} - -/** - * Combine an Array of Segment objects where each Segment contains only 1 word. - * - * Does not combine segments if the speaker changes even if the body is shorter than `maxLength`. - * - * @param segments Array of Segment objects to combine - * @param maxLength Maximum length of body text for combined segment - * @returns Array of combined segments - * @throws {TypeError} Body value is not a single word (looks in first 20 segments) - */ -export const combineSingleWordSegments = (segments: Array, maxLength = 32): Array => { - // only supported if segments are already 1 word, check first 20 segments - const singleWordCheck = segments.slice(0, 20).filter((segment) => segment.body.includes(" ")) - if (singleWordCheck.length !== 0) { - throw new TypeError(`Cannot combine segments with more than 1 word`) - } - - const outSegments: Array = [] - - let combinedSegments: Array = [] - let newBody = "" - let lastSpeaker = "" - segments.forEach((segment) => { - // next segment would make too long or speaker changed - if ( - `${newBody} ${segment.body}`.length > maxLength || - (lastSpeaker !== "" && lastSpeaker !== segment.speaker) - ) { - outSegments.push(combineSegments(combinedSegments)) - - // reset - combinedSegments = [] - newBody = "" - } - - // buffer segment - combinedSegments.push(segment) - newBody = combineBody(newBody, segment.body) - lastSpeaker = segment.speaker - }) - - // handle trailing data - if (combinedSegments.length > 0) { - outSegments.push(combineSegments(combinedSegments)) - } - - return outSegments -} diff --git a/src/options.ts b/src/options.ts new file mode 100644 index 0000000..9f52ae2 --- /dev/null +++ b/src/options.ts @@ -0,0 +1,248 @@ +import { DEFAULT_COMBINE_SEGMENTS_LENGTH } from "./types" + +/** + * Verifies the type of the value matches the expected type + * + * @param name name of option to check value for + * @param expectedType expected type off the value for the option + * @param value value to check + * @throws TypeError When value is invalid type for option + */ +const verifyType = (name: string, expectedType: string, value: unknown): void => { + if (typeof value !== expectedType) { + throw new TypeError(`Invalid type ${typeof value} for ${name}. Expected ${expectedType}`) + } +} + +export interface IOptions { + /** + * Combine segments if the {@link Segment.startTime}, {@link Segment.endTime}, and {@link Segment.speaker} match + * between the current and prior segments + * + * Cannot be used with {@link combineSegments} or {@link combineSpeaker} + * + * Default: false + */ + combineEqualTimes?: boolean + + /** + * Character to use when {@link combineEqualTimes} is true. + * + * Default: `\n` + */ + combineEqualTimesSeparator?: string + + /** + * Combine segments where speaker is the same and concatenated `body` fits in the {@link combineSegmentsLength} + * + * Cannot be used with {@link combineEqualTimes} or {@link combineSpeaker} + * + * Default: false + */ + combineSegments?: boolean + + /** + * Max length of body text to use when {@link combineSegments} is true + * + * Default: See {@link DEFAULT_COMBINE_SEGMENTS_LENGTH} + */ + combineSegmentsLength?: number + + /** + * Combine consecutive segments from the same speaker. + * + * Note: this will override {@link combineSegments} and {@link combineSegmentsLength} + * + * Warning: if the transcript does not contain speaker information, resulting segment will contain entire transcript text. + * + * Default: false + */ + combineSpeaker?: boolean + /** + * Only include {@link Segment.speaker} when speaker changes + * + * May be used in combination with {@link combineEqualTimes} and {@link combineSegments} + * + * Default: false + */ + speakerChange?: boolean +} + +/** + * Provides a way to convert numeric timestamp to a formatted string. + * + * A custom formatter may be registered. + * If one isn't registered, the default formatter will be used and the data will be formatted as HH:mm:SS.fff + */ +export class OptionsManager implements IOptions { + static _instance: OptionsManager + + /** + * Combine segments if the {@link Segment.startTime}, {@link Segment.endTime}, and {@link Segment.speaker} match + * between the current and prior segments + * + * Cannot be used with {@link combineSegments} or {@link combineSpeaker} + */ + public combineEqualTimes = false + + /** + * Character to use when {@link combineEqualTimes} is true. + */ + public combineEqualTimesSeparator = "\n" + + /** + * Combine segments where speaker is the same and concatenated `body` fits in the {@link combineSegmentsLength} + * + * Cannot be used with {@link combineEqualTimes} or {@link combineSpeaker} + */ + public combineSegments = false + + /** + * Max length of body text to use when {@link combineSegments} is true + */ + public combineSegmentsLength: number = DEFAULT_COMBINE_SEGMENTS_LENGTH + + /** + * Combine consecutive segments from the same speaker. + * + * Note: this will override {@link combineSegments} and {@link combineSegmentsLength} + * + * Warning: if the transcript does not contain speaker information, resulting segment will contain entire transcript text. + */ + public combineSpeaker = false + + /** + * Only include {@link Segment.speaker} when speaker changes + * + * May be used in combination with {@link combineEqualTimes} and {@link combineSegments} + */ + public speakerChange = false + + /** + * Create the options manager + */ + constructor() { + if (!OptionsManager._instance) { + OptionsManager._instance = this + } + // eslint-disable-next-line no-constructor-return + return OptionsManager._instance + } + + /** + * Get option value from it's name + * + * @param name name of option to get + * @returns value of option. If unknown, returns undefined + */ + public getOptionByName = (name: string): boolean | string | number => { + let actual + switch (name) { + case "combineEqualTimes": + actual = this.combineEqualTimes + break + case "combineEqualTimesSeparator": + actual = this.combineEqualTimesSeparator + break + case "combineSegments": + actual = this.combineSegments + break + case "combineSegmentsLength": + actual = this.combineSegmentsLength + break + case "combineSpeaker": + actual = this.combineSpeaker + break + case "speakerChange": + actual = this.speakerChange + break + default: + break + } + return actual + } + + /** + * Set option value using it's name + * + * @param name name of option to set + * @param value value to set option to + */ + public setOptionByName = (name: string, value: boolean | string | number): void => { + switch (name) { + case "combineEqualTimes": + verifyType(name, "boolean", value) + this.combineEqualTimes = value + break + case "combineEqualTimesSeparator": + verifyType(name, "string", value) + this.combineEqualTimesSeparator = value + break + case "combineSegments": + verifyType(name, "boolean", value) + this.combineSegments = value + break + case "combineSegmentsLength": + verifyType(name, "number", value) + this.combineSegmentsLength = value + break + case "combineSpeaker": + verifyType(name, "boolean", value) + this.combineSpeaker = value + break + case "speakerChange": + verifyType(name, "boolean", value) + this.speakerChange = value + break + default: + break + } + } + + /** + * Set all options to their default value + */ + public restoreDefaultSettings = (): void => { + this.setOptions( + { + combineEqualTimes: false, + combineEqualTimesSeparator: "\n", + combineSegments: false, + combineSegmentsLength: DEFAULT_COMBINE_SEGMENTS_LENGTH, + combineSpeaker: false, + speakerChange: false, + }, + false + ) + } + + /** + * Set one or more options + * + * @param options the options to set + * @param setDefault true: set all values to the default before setting values specified by `options` + */ + public setOptions = (options: IOptions, setDefault = true): void => { + if (setDefault) { + this.restoreDefaultSettings() + } + if (options === undefined) { + return + } + ;(Object.keys(options) as Array).forEach((option) => { + this.setOptionByName(option, options[option]) + }) + } + + /** + * Helper to determine if at least one option should be applied + * + * @returns true: at least one option set + */ + public optionsSet = (): boolean => { + const { combineEqualTimes, combineSegments, combineSpeaker, speakerChange } = this + return combineEqualTimes || combineSegments || combineSpeaker || speakerChange + } +} + +export const Options = new OptionsManager() diff --git a/src/segments.ts b/src/segments.ts new file mode 100644 index 0000000..1b20ad4 --- /dev/null +++ b/src/segments.ts @@ -0,0 +1,437 @@ +import { Options } from "./options" +import { timestampFormatter } from "./timestamp" +import { DEFAULT_COMBINE_SEGMENTS_LENGTH, Segment } from "./types" + +/** + * Regular Expression for detecting punctuation that should not be prefixed with a space + */ +const PATTERN_PUNCTUATIONS = /^ *[.,?!}\]>) *$]/ + +/** + * Append `addition` to `body` with the character(s) specified. + * + * If `addition` matches the {@link PATTERN_PUNCTUATIONS} pattern, no character is added before the additional data. + * + * @param body Current body text + * @param addition Additional text to add to `body` + * @param separator Character(s) to use to separate data. If undefined, uses `\n`. + * @returns Combined data + */ +const joinBody = (body: string, addition: string, separator: string = undefined): string => { + if (body) { + let separatorToUse = separator || "\n" + if (PATTERN_PUNCTUATIONS.exec(addition)) { + separatorToUse = "" + } + return `${body}${separatorToUse}${addition}` + } + return addition +} + +/** + * Combine one or more {@link Segment} + * + * @param segments Array of Segment objects to combine + * @param bodySeparator Character(s) to use to separate body data. If undefined, uses `\n`. + * @returns Combined segment where: + * + * - `startTime`: from first segment + * - `startTimeFormatted`: from first segment + * - `endTime`: from last segment + * - `endTimeFormatted`: from last segment + * - `speaker`: from first segment + * - `body`: combination of all segments + */ +const joinSegments = (segments: Array, bodySeparator: string = undefined): Segment => { + const newSegment = { ...segments[0] } + segments.slice(1).forEach((segment) => { + newSegment.endTime = segment.endTime + newSegment.endTimeFormatted = timestampFormatter.format(segment.endTime) + newSegment.body = joinBody(newSegment.body, segment.body, bodySeparator) + }) + return newSegment +} + +/** + * Type returned from combine functions + */ +type CombineResult = { + /** + * The updated segment with any changes applied + */ + segment: Segment + /** + * If true, the {@link segment} contains a {@link Segment} that should replace the prior segment instead of + * appending a new segment + */ + replace: boolean + /** + * Indicates if the combine rule was applied + */ + combined: boolean +} + +/** + * Checks if the new and prior segments have the same speaker. + * + * If so, combines segments where: + * - `startTime`: from priorSegment + * - `startTimeFormatted`: from priorSegment + * - `endTime`: from newSegment + * - `endTimeFormatted`: from newSegment + * - `speaker`: from priorSegment + * - `body`: body of priorSegment with body of newSegment separated with space + * + * @param newSegment segment being created + * @param priorSegment prior parsed segment + * @param lastSpeaker last speaker name. + * Used when speaker in segment has been removed via {@link Options.speakerChange} rule + * @returns result of combination. + * If segments were combined, {@link CombineResult.replace} and {@link CombineResult.combined} set to true. + */ +const doCombineSpeaker = (newSegment: Segment, priorSegment: Segment, lastSpeaker: string): CombineResult => { + if (newSegment.speaker === priorSegment.speaker || newSegment.speaker === lastSpeaker) { + return { + segment: joinSegments([priorSegment, newSegment], " "), + replace: true, + combined: true, + } + } + return { + segment: newSegment, + replace: false, + combined: false, + } +} + +/** + * Checks if the new and prior segments have the same speaker and combining body results in new body shorter than + * max length + * + * If so, combines segments where: + * - `startTime`: from priorSegment + * - `startTimeFormatted`: from priorSegment + * - `endTime`: from newSegment + * - `endTimeFormatted`: from newSegment + * - `speaker`: from priorSegment + * - `body`: body of priorSegment with body of newSegment separated with space + * + * @param newSegment segment being created + * @param priorSegment prior parsed segment + * @param maxLength maximum allowed length of combined body. If undefined, uses {@link DEFAULT_COMBINE_SEGMENTS_LENGTH} + * @param lastSpeaker last speaker name. + * Used when speaker in segment has been removed via {@link Options.speakerChange} rule + * @returns result of combination. + * If segments were combined, {@link CombineResult.replace} and {@link CombineResult.combined} set to true. + */ +const doCombineSegments = ( + newSegment: Segment, + priorSegment: Segment, + maxLength: number, + lastSpeaker: string +): CombineResult => { + const combineSegmentsLength = maxLength || DEFAULT_COMBINE_SEGMENTS_LENGTH + + if ( + (newSegment.speaker === priorSegment.speaker || newSegment.speaker === lastSpeaker) && + joinBody(priorSegment.body, newSegment.body, " ").length <= combineSegmentsLength + ) { + return { + segment: joinSegments([priorSegment, newSegment], " "), + replace: true, + combined: true, + } + } + return { + segment: newSegment, + replace: false, + combined: false, + } +} + +/** + * Checks if the new and prior segments have the same speaker, startTime and endTime. + * + * If so, combines segments where: + * - `startTime`: from priorSegment + * - `startTimeFormatted`: from priorSegment + * - `endTime`: from newSegment + * - `endTimeFormatted`: from newSegment + * - `speaker`: from priorSegment + * - `body`: body of priorSegment with body of newSegment separated with value of separator argument + * + * @param newSegment segment being created + * @param priorSegment prior parsed segment + * @param separator string to use to combine body values. If undefined, uses "\n" + * @param lastSpeaker last speaker name. + * Used when speaker in segment has been removed via {@link Options.speakerChange} rule + * @returns result of combination. + * If segments were combined, {@link CombineResult.replace} and {@link CombineResult.combined} set to true. + */ +const doCombineEqualTimes = ( + newSegment: Segment, + priorSegment: Segment, + separator: string, + lastSpeaker: string +): CombineResult => { + const combineEqualTimesSeparator = separator || "\n" + + if ( + newSegment.startTime === priorSegment.startTime && + newSegment.endTime === priorSegment.endTime && + (newSegment.speaker === priorSegment.speaker || newSegment.speaker === lastSpeaker) + ) { + return { + segment: joinSegments([priorSegment, newSegment], combineEqualTimesSeparator), + replace: true, + combined: true, + } + } + return { + segment: newSegment, + replace: false, + combined: false, + } +} + +/** + * Checks if the new and prior segments have the same speaker. If so, sets the speaker value to undefined + * + * If so, combines segments where: + * - `startTime`: from priorSegment + * - `startTimeFormatted`: from priorSegment + * - `endTime`: from newSegment + * - `endTimeFormatted`: from newSegment + * - `speaker`: from newSegment if different from priorSegment else undefined + * - `body`: body of priorSegment with body of newSegment separated with space + * + * @param newSegment segment being created + * @param priorSegment prior parsed segment. For the first segment, this shall be undefined. + * @param lastSpeaker last speaker name. + * Used when speaker in segment has been removed via {@link Options.speakerChange} rule + * @returns result of combination. + * If segments were combined, {@link CombineResult.replace} set to false and {@link CombineResult.combined} set to true. + */ +const doSpeakerChange = (newSegment: Segment, priorSegment: Segment, lastSpeaker: string): CombineResult => { + const result: CombineResult = { + segment: newSegment, + replace: false, + combined: false, + } + + if (priorSegment === undefined) { + if (newSegment.speaker === lastSpeaker) { + const segment: Segment = { ...newSegment } + segment.speaker = undefined + + return { + segment, + replace: false, + combined: true, + } + } + return result + } + + if (newSegment.speaker === undefined) { + return result + } + + if ( + newSegment.speaker === "" || + newSegment.speaker === priorSegment.speaker || + newSegment.speaker === lastSpeaker + ) { + const segment: Segment = { ...newSegment } + segment.speaker = undefined + + return { + segment, + replace: false, + combined: true, + } + } + + return result +} + +/** + * Determine how {@link Options.speakerChange is applied based an past options being applied} + * + * @param currentResult current result object from any prior options + * @param priorSegment prior parsed segment + * @param lastSpeaker last speaker name. + * @returns result of combination. + * If segments were combined, {@link CombineResult.replace} set to false and {@link CombineResult.combined} set to true. + */ +const applyOptionsAndDoSpeakerChange = ( + currentResult: CombineResult, + priorSegment: Segment, + lastSpeaker: string +): CombineResult => { + const { combineSegments, combineEqualTimes } = Options + let result = currentResult + if (combineSegments && currentResult.combined && currentResult.replace) { + result = doSpeakerChange(currentResult.segment, undefined, undefined) + } else if (combineEqualTimes) { + if (result.combined && result.replace) { + result = doSpeakerChange(currentResult.segment, undefined, undefined) + } else { + result = doSpeakerChange(currentResult.segment, priorSegment, lastSpeaker) + } + } else { + result = doSpeakerChange(currentResult.segment, priorSegment, lastSpeaker) + } + if (result) { + result = { + segment: result.segment, + replace: currentResult.replace || result.replace, + combined: currentResult.combined || result.combined, + } + } + return result +} +/** + * Apply convert rules when no prior segment exits. + * + * NOTE: not all rules applicable when no prior segment + * + * @param newSegment segment before any rules options to it + * @param lastSpeaker last speaker name. + * Used when speaker in segment has been removed via {@link Options.speakerChange} rule + * @returns the updated segment info + */ +const doCombineNoPrior = (newSegment: Segment, lastSpeaker: string): CombineResult => { + const { speakerChange } = Options + let result: CombineResult = { + segment: newSegment, + replace: false, + combined: false, + } + + if (speakerChange) { + result = doSpeakerChange(result.segment, undefined, lastSpeaker) + } + return result +} + +/** + * Apply convert rules when prior segment exits. + * + * @param newSegment segment before any rules options to it + * @param priorSegment prior parsed segment + * @param lastSpeaker last speaker name. + * Used when speaker in segment has been removed via {@link Options.speakerChange} rule + * @returns the updated segment info + */ +const doCombineWithPrior = (newSegment: Segment, priorSegment: Segment, lastSpeaker: string): CombineResult => { + const { + combineEqualTimes, + combineEqualTimesSeparator, + combineSegments, + combineSegmentsLength, + combineSpeaker, + speakerChange, + } = Options + + let result: CombineResult = { + segment: { ...newSegment }, + replace: false, + combined: false, + } + + if (combineSpeaker) { + result = doCombineSpeaker(result.segment, priorSegment, lastSpeaker) + } + if (!result.combined && combineSegments) { + result = doCombineSegments(result.segment, priorSegment, combineSegmentsLength, lastSpeaker) + } + if (!result.combined && combineEqualTimes) { + result = doCombineEqualTimes(result.segment, priorSegment, combineEqualTimesSeparator, lastSpeaker) + } + if (speakerChange) { + result = applyOptionsAndDoSpeakerChange(result, priorSegment, lastSpeaker) + } + + return result +} + +/** + * Apply any options to the current segment + * + * @param newSegment segment before any rules options to it + * @param priorSegment prior parsed segment. For the first segment, this shall be undefined. + * @param lastSpeaker last speaker name. + * Used when speaker in segment has been removed via {@link Options.speakerChange} rule + * @returns the updated segment info + */ +const applyOptions = (newSegment: Segment, priorSegment: Segment, lastSpeaker: string = undefined): CombineResult => { + if (!Options.optionsSet()) { + return { + segment: newSegment, + replace: false, + combined: false, + } + } + + let result: CombineResult + // if no prior segment, limited additional checking + if (priorSegment === undefined) { + result = doCombineNoPrior(newSegment, lastSpeaker) + } else { + result = doCombineWithPrior(newSegment, priorSegment, lastSpeaker) + } + + return result +} + +/** + * Get the last speaker name from the previously parsed segments + * + * @param priorSegment prior parsed segment + * @param priorSegments array of all previous segments + * @returns the name of the last speaker + */ +const getLastSpeaker = (priorSegment: Segment, priorSegments: Array): string => { + let lastSpeaker + if (priorSegment) { + lastSpeaker = priorSegment.speaker + } + if (lastSpeaker === undefined && priorSegments.length > 0) { + lastSpeaker = priorSegments[0].speaker + for (let i = priorSegments.length - 1; i > 0; i--) { + if (priorSegments[i].speaker !== undefined) { + lastSpeaker = priorSegments[i].speaker + break + } + } + } + return lastSpeaker +} + +/** + * Helper for adding segment to or updating last segment in array of segments + * + * @param newSegment segment to add or replace + * @param priorSegments array of all previous segments + * @returns updated array of segments with new segment added or last segment updated (per options) + */ +export const addSegment = (newSegment: Segment, priorSegments: Array): Array => { + const { speakerChange } = Options + const outSegments = priorSegments || [] + const priorSegment = outSegments.length > 0 ? outSegments[outSegments.length - 1] : undefined + + // don't worry about identifying the last speaker if speaker is not being removed by speakerChange + let lastSpeaker: string + if (speakerChange) { + lastSpeaker = getLastSpeaker(priorSegment, outSegments) + } + + const newSegmentInfo = applyOptions(newSegment, priorSegment, lastSpeaker) + if (newSegmentInfo.replace && outSegments.length > 0) { + outSegments[outSegments.length - 1] = newSegmentInfo.segment + } else { + outSegments.push(newSegmentInfo.segment) + } + return outSegments +} diff --git a/src/tsconfig-test.json b/src/tsconfig-test.json deleted file mode 100644 index 180aab6..0000000 --- a/src/tsconfig-test.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "extends": "./tsconfig.json", - "include": ["test"] -} diff --git a/src/types.ts b/src/types.ts index dbaac17..d588c17 100644 --- a/src/types.ts +++ b/src/types.ts @@ -48,9 +48,14 @@ export type Segment = { /** * Name of speaker for `body` */ - speaker: string + speaker?: string /** * Text of transcript for segment */ body: string } + +/** + * Default length to use when combining segments with {@link Options.combineSegments} + */ +export const DEFAULT_COMBINE_SEGMENTS_LENGTH = 32 diff --git a/test/html.test.ts b/test/html.test.ts index ba278b9..45810d2 100644 --- a/test/html.test.ts +++ b/test/html.test.ts @@ -1,3 +1,5 @@ +// noinspection HtmlRequiredLangAttribute + import { describe, expect, test } from "@jest/globals" import { Segment } from "../src" diff --git a/test/json.test.ts b/test/json.test.ts index c68eece..bc37010 100644 --- a/test/json.test.ts +++ b/test/json.test.ts @@ -1,6 +1,6 @@ import { describe, expect, test } from "@jest/globals" -import { Segment } from "../src" +import { IOptions, Options, Segment } from "../src" import { parseJSON } from "../src/formats/json" import { readFile, TestFiles } from "./test_utils" @@ -94,27 +94,87 @@ describe("Parse JSON file data", () => { test.each<{ filePath: string expectedFilePath: string + options: IOptions id: string }>([ { filePath: TestFiles.TRANSCRIPT_JSON_BUZZCAST, expectedFilePath: TestFiles.TRANSCRIPT_JSON_BUZZCAST_OUTPUT, + options: undefined, id: "Buzzcast", }, + { + filePath: TestFiles.TRANSCRIPT_JSON_BUZZCAST, + expectedFilePath: TestFiles.TRANSCRIPT_JSON_BUZZCAST_COMBINE_EQUAL_TIME_OUTPUT, + options: { + combineEqualTimes: true, + }, + id: "Buzzcast, combine equal times", + }, + { + filePath: TestFiles.TRANSCRIPT_JSON_BUZZCAST, + expectedFilePath: TestFiles.TRANSCRIPT_JSON_BUZZCAST_COMBINE_EQUAL_TIME_SPACE_OUTPUT, + options: { + combineEqualTimes: true, + combineEqualTimesSeparator: " ", + }, + id: "Buzzcast, combine equal times, space", + }, { filePath: TestFiles.TRANSCRIPT_JSON_LALALAND, expectedFilePath: TestFiles.TRANSCRIPT_JSON_LALALAND_OUTPUT, + options: undefined, id: "LaLaLand", }, { filePath: TestFiles.TRANSCRIPT_JSON_HOW_TO_START_A_PODCAST, expectedFilePath: TestFiles.TRANSCRIPT_JSON_HOW_TO_START_A_PODCAST_OUTPUT, + options: undefined, id: "How to Start a Podcast", }, - ])("Parse JSON File ($id)", ({ filePath, expectedFilePath }) => { + { + filePath: TestFiles.TRANSCRIPT_JSON_HOW_TO_START_A_PODCAST, + expectedFilePath: TestFiles.TRANSCRIPT_JSON_HOW_TO_START_A_PODCAST_COMBINE_SEGMENTS_32_OUTPUT, + options: { + combineSegments: true, + combineSegmentsLength: 32, + }, + id: "How to Start a Podcast, combine segments, 32", + }, + { + filePath: TestFiles.TRANSCRIPT_JSON_HOW_TO_START_A_PODCAST, + expectedFilePath: TestFiles.TRANSCRIPT_JSON_HOW_TO_START_A_PODCAST_COMBINE_SPEAKER_OUTPUT, + options: { + combineSpeaker: true, + combineSegments: true, + combineSegmentsLength: 32, + }, + id: "How to Start a Podcast, combine speaker", + }, + { + filePath: TestFiles.TRANSCRIPT_JSON_BUZZCAST, + expectedFilePath: TestFiles.TRANSCRIPT_JSON_BUZZCAST_SPEAKER_CHANGE_COMBINE_EQUAL_TIME_SPACE_OUTPUT, + options: { + speakerChange: true, + combineEqualTimes: true, + combineEqualTimesSeparator: " ", + }, + id: "Buzzcast, speaker change", + }, + { + filePath: TestFiles.TRANSCRIPT_JSON_HOW_TO_START_A_PODCAST, + expectedFilePath: TestFiles.TRANSCRIPT_JSON_HOW_TO_START_A_PODCAST_SPEAKER_CHANGE_OUTPUT, + options: { + speakerChange: true, + combineSegments: true, + combineSegmentsLength: 32, + }, + id: "How to Start a Podcast, speaker change", + }, + ])("Parse JSON File ($id)", ({ filePath, expectedFilePath, options }) => { const data = readFile(filePath) const expectedJSONData = JSON.parse(readFile(expectedFilePath)) - + Options.setOptions(options) const segments = parseJSON(data) expect(segments).toEqual(expectedJSONData.segments) }) diff --git a/test/options.test.ts b/test/options.test.ts new file mode 100644 index 0000000..b4e646e --- /dev/null +++ b/test/options.test.ts @@ -0,0 +1,147 @@ +import { describe, expect, test } from "@jest/globals" + +import { IOptions, Options, OptionsManager } from "../src/options" + +test("Option Manager instances", () => { + Options.setOptions({ + combineSpeaker: true, + }) + const second = new OptionsManager() + expect(Options === second).toBe(true) + Options.restoreDefaultSettings() +}) + +describe("setOptions values", () => { + test.each<{ + options: IOptions | unknown + expected: IOptions | unknown + id: string + }>([ + { + options: undefined, + expected: {}, + id: "undefined options", + }, + { + options: {}, + expected: {}, + id: "no options", + }, + { + options: { + combineEqualTimes: true, + }, + expected: { + combineEqualTimes: true, + }, + id: "combineEqualTimes", + }, + { + options: { + combineEqualTimesSeparator: "
", + }, + expected: { + combineEqualTimesSeparator: "
", + }, + id: "combineEqualTimesSeparator", + }, + { + options: { + combineSegments: true, + }, + expected: { + combineSegments: true, + }, + id: "combineSegments", + }, + { + options: { + combineSegmentsLength: 20, + }, + expected: { + combineSegmentsLength: 20, + }, + id: "combineSegmentsLength", + }, + { + options: { + combineSpeaker: true, + }, + expected: { + combineSpeaker: true, + }, + id: "combineSpeaker", + }, + { + options: { + speakerChange: true, + }, + expected: { + speakerChange: true, + }, + id: "speakerChange", + }, + { + options: { + combineTime: true, + }, + expected: { + combineTime: undefined, + }, + id: "invalid, combineTime", + }, + ])("setOptions ($id)", ({ options, expected }) => { + Options.setOptions(options) + ;(Object.keys(expected) as Array).forEach((option) => { + const actual = Options.getOptionByName(option) + const expectedValue = expected[option] + expect(actual === expectedValue).toBe(true) + }) + }) +}) + +describe("Incorrect option type", () => { + test.each<{ + options: IOptions | unknown + id: string + }>([ + { + options: { + combineEqualTimes: "true", + }, + id: "combineEqualTimes", + }, + { + options: { + combineEqualTimesSeparator: 1, + }, + id: "combineEqualTimesSeparator", + }, + { + options: { + combineSegments: "false", + }, + id: "combineSegments", + }, + { + options: { + combineSegmentsLength: "20", + }, + id: "combineSegmentsLength", + }, + { + options: { + combineSpeaker: undefined, + }, + id: "combineSpeaker", + }, + { + options: { + speakerChange: null, + }, + id: "speakerChange", + }, + ])("Incorrect type ($id)", ({ options }) => { + expect(() => Options.setOptions(options)).toThrow(TypeError) + }) +}) diff --git a/test/segments.test.ts b/test/segments.test.ts new file mode 100644 index 0000000..fda296e --- /dev/null +++ b/test/segments.test.ts @@ -0,0 +1,404 @@ +import { describe, expect, test } from "@jest/globals" + +import { IOptions, Options, Segment } from "../src" +import { addSegment } from "../src/segments" + +const SEGMENT_FIRST: Segment = { + startTime: 0.253, + startTimeFormatted: "00:00:00.253", + endTime: 3.373, + endTimeFormatted: "00:00:03.373", + speaker: "Jon", + body: "Welcome to the", +} +const SEGMENT_TIME_SPEAKER_MATCH: Segment = { + startTime: 0.253, + startTimeFormatted: "00:00:00.253", + endTime: 3.373, + endTimeFormatted: "00:00:03.373", + speaker: "Jon", + body: "latest episode of Podcast.", +} +const SEGMENT_TIME_MATCH: Segment = { + startTime: 0.253, + startTimeFormatted: "00:00:00.253", + endTime: 3.373, + endTimeFormatted: "00:00:03.373", + speaker: "Fred", + body: "latest episode of Podcast.", +} +const SEGMENT_SECOND: Segment = { + startTime: 3.4, + startTimeFormatted: "00:00:03.400", + endTime: 5.847, + endTimeFormatted: "00:00:05.847", + speaker: "Jon", + body: "latest episode of Podcast.", +} +const SEGMENT_WORD_1: Segment = { + startTime: 0.253, + startTimeFormatted: "00:00:00.253", + endTime: 0.578, + endTimeFormatted: "00:00:00.578", + speaker: "Jon", + body: "Welcome", +} +const SEGMENT_WORD_2: Segment = { + startTime: 0.579, + startTimeFormatted: "00:00:00.579", + endTime: 1.015, + endTimeFormatted: "00:00:01.015", + speaker: "Jon", + body: "to", +} + +describe("Apply Segment Options", () => { + test.each<{ + newSegment: Segment + priorSegments: Array + options: IOptions + expected: Array + id: string + }>([ + { + newSegment: { ...SEGMENT_FIRST }, + priorSegments: undefined, + options: {}, + expected: [{ ...SEGMENT_FIRST }], + id: "first, no options", + }, + { + newSegment: { ...SEGMENT_TIME_SPEAKER_MATCH }, + priorSegments: [{ ...SEGMENT_FIRST }], + options: { + combineEqualTimes: true, + }, + expected: [ + { + startTime: 0.253, + startTimeFormatted: "00:00:00.253", + endTime: 3.373, + endTimeFormatted: "00:00:03.373", + speaker: "Jon", + body: "Welcome to the\nlatest episode of Podcast.", + }, + ], + id: "time, speaker match - default", + }, + { + newSegment: { ...SEGMENT_TIME_SPEAKER_MATCH }, + priorSegments: [{ ...SEGMENT_FIRST }], + options: { + combineEqualTimes: true, + combineEqualTimesSeparator: " ", + }, + expected: [ + { + startTime: 0.253, + startTimeFormatted: "00:00:00.253", + endTime: 3.373, + endTimeFormatted: "00:00:03.373", + speaker: "Jon", + body: "Welcome to the latest episode of Podcast.", + }, + ], + id: "time, speaker match - space", + }, + { + newSegment: { ...SEGMENT_TIME_MATCH }, + priorSegments: [{ ...SEGMENT_FIRST }], + options: { + combineEqualTimes: true, + }, + expected: [{ ...SEGMENT_FIRST }, { ...SEGMENT_TIME_MATCH }], + id: "time match, speaker different", + }, + { + newSegment: { + startTime: 1.822, + startTimeFormatted: "00:00:01.822", + endTime: 3.373, + endTimeFormatted: "00:00:03.373", + body: "latest episode of Podcast.", + }, + priorSegments: undefined, + options: { + speakerChange: true, + }, + expected: [ + { + startTime: 1.822, + startTimeFormatted: "00:00:01.822", + endTime: 3.373, + endTimeFormatted: "00:00:03.373", + speaker: undefined, + body: "latest episode of Podcast.", + }, + ], + id: "speaker change, no speaker, no prior", + }, + { + newSegment: { + startTime: 1.822, + startTimeFormatted: "00:00:01.822", + endTime: 3.373, + endTimeFormatted: "00:00:03.373", + speaker: "Fred", + body: "latest episode of Podcast.", + }, + priorSegments: [{ ...SEGMENT_FIRST }], + options: { + speakerChange: true, + }, + expected: [ + { ...SEGMENT_FIRST }, + { + startTime: 1.822, + startTimeFormatted: "00:00:01.822", + endTime: 3.373, + endTimeFormatted: "00:00:03.373", + speaker: "Fred", + body: "latest episode of Podcast.", + }, + ], + id: "speaker change, different speaker", + }, + { + newSegment: { + startTime: 1.822, + startTimeFormatted: "00:00:01.822", + endTime: 3.373, + endTimeFormatted: "00:00:03.373", + speaker: "Jon", + body: "latest episode of Podcast.", + }, + priorSegments: [ + { + startTime: 0.253, + startTimeFormatted: "00:00:00.253", + endTime: 1.821, + endTimeFormatted: "00:00:01.821", + speaker: "Jon", + body: "Welcome to the", + }, + ], + options: { + speakerChange: true, + }, + expected: [ + { + startTime: 0.253, + startTimeFormatted: "00:00:00.253", + endTime: 1.821, + endTimeFormatted: "00:00:01.821", + speaker: "Jon", + body: "Welcome to the", + }, + { + startTime: 1.822, + startTimeFormatted: "00:00:01.822", + endTime: 3.373, + endTimeFormatted: "00:00:03.373", + speaker: undefined, + body: "latest episode of Podcast.", + }, + ], + id: "same speaker, remove speaker", + }, + { + newSegment: { + startTime: 1.822, + startTimeFormatted: "00:00:01.822", + endTime: 3.373, + endTimeFormatted: "00:00:03.373", + body: "latest episode of Podcast.", + }, + priorSegments: [ + { + startTime: 0.253, + startTimeFormatted: "00:00:00.253", + endTime: 1.821, + endTimeFormatted: "00:00:01.821", + body: "Welcome to the", + }, + ], + options: { + speakerChange: true, + }, + expected: [ + { + startTime: 0.253, + startTimeFormatted: "00:00:00.253", + endTime: 1.821, + endTimeFormatted: "00:00:01.821", + body: "Welcome to the", + }, + { + startTime: 1.822, + startTimeFormatted: "00:00:01.822", + endTime: 3.373, + endTimeFormatted: "00:00:03.373", + body: "latest episode of Podcast.", + }, + ], + id: "no speaker, remove speaker", + }, + { + newSegment: { ...SEGMENT_SECOND }, + priorSegments: [{ ...SEGMENT_FIRST }], + options: { + combineSegments: true, + }, + expected: [{ ...SEGMENT_FIRST }, { ...SEGMENT_SECOND }], + id: "combine segments, too long, default length", + }, + { + newSegment: { ...SEGMENT_WORD_2 }, + priorSegments: [{ ...SEGMENT_WORD_1 }], + options: { + combineSegments: true, + }, + expected: [ + { + startTime: 0.253, + startTimeFormatted: "00:00:00.253", + endTime: 1.015, + endTimeFormatted: "00:00:01.015", + speaker: "Jon", + body: "Welcome to", + }, + ], + id: "combine segments, default length", + }, + { + newSegment: { ...SEGMENT_SECOND }, + priorSegments: [{ ...SEGMENT_FIRST }], + options: { + combineSegments: true, + combineSegmentsLength: 45, + }, + expected: [ + { + startTime: 0.253, + startTimeFormatted: "00:00:00.253", + endTime: 5.847, + endTimeFormatted: "00:00:05.847", + speaker: "Jon", + body: "Welcome to the latest episode of Podcast.", + }, + ], + id: "combine segments, length 45", + }, + { + newSegment: { ...SEGMENT_SECOND }, + priorSegments: [{ ...SEGMENT_FIRST }], + options: { + combineSegments: true, + combineSegmentsLength: 32, + }, + expected: [{ ...SEGMENT_FIRST }, { ...SEGMENT_SECOND }], + id: "combine segments, too long", + }, + { + newSegment: { + startTime: 0.579, + startTimeFormatted: "00:00:00.579", + endTime: 1.015, + endTimeFormatted: "00:00:01.015", + speaker: "Jon", + body: ", this", + }, + priorSegments: [{ ...SEGMENT_WORD_1 }], + options: { + combineSegments: true, + }, + expected: [ + { + startTime: 0.253, + startTimeFormatted: "00:00:00.253", + endTime: 1.015, + endTimeFormatted: "00:00:01.015", + speaker: "Jon", + body: "Welcome, this", + }, + ], + id: "combine segments, no space", + }, + { + newSegment: { ...SEGMENT_SECOND }, + priorSegments: [{ ...SEGMENT_FIRST }], + options: { + combineSpeaker: true, + }, + expected: [ + { + startTime: 0.253, + startTimeFormatted: "00:00:00.253", + endTime: 5.847, + endTimeFormatted: "00:00:05.847", + speaker: "Jon", + body: "Welcome to the latest episode of Podcast.", + }, + ], + id: "combine speaker", + }, + { + newSegment: { ...SEGMENT_SECOND }, + priorSegments: [ + { + startTime: 0.253, + startTimeFormatted: "00:00:00.253", + endTime: 3.373, + endTimeFormatted: "00:00:03.373", + speaker: "Jon", + body: "", + }, + ], + options: { + combineSpeaker: true, + }, + expected: [ + { + startTime: 0.253, + startTimeFormatted: "00:00:00.253", + endTime: 5.847, + endTimeFormatted: "00:00:05.847", + speaker: "Jon", + body: "latest episode of Podcast.", + }, + ], + id: "no body", + }, + { + newSegment: { ...SEGMENT_SECOND }, + priorSegments: [ + { + startTime: 0.253, + startTimeFormatted: "00:00:00.253", + endTime: 3.373, + endTimeFormatted: "00:00:03.373", + speaker: "Jeff", + body: "Welcome to the", + }, + ], + options: { + combineSpeaker: true, + }, + expected: [ + { + startTime: 0.253, + startTimeFormatted: "00:00:00.253", + endTime: 3.373, + endTimeFormatted: "00:00:03.373", + speaker: "Jeff", + body: "Welcome to the", + }, + { ...SEGMENT_SECOND }, + ], + id: "combine speaker, different speakers", + }, + ])("Apply Options ($id)", ({ newSegment, priorSegments, options, expected }) => { + Options.setOptions(options) + expect(addSegment(newSegment, priorSegments)).toStrictEqual(expected) + }) +}) diff --git a/test/setup.ts b/test/setup.ts new file mode 100644 index 0000000..96208b0 --- /dev/null +++ b/test/setup.ts @@ -0,0 +1,7 @@ +import { beforeEach } from "@jest/globals" + +import { Options } from "../src" + +beforeEach(() => { + Options.restoreDefaultSettings() +}) diff --git a/test/srt.test.ts b/test/srt.test.ts index 3514103..7cda72e 100644 --- a/test/srt.test.ts +++ b/test/srt.test.ts @@ -1,6 +1,6 @@ import { describe, expect, jest, test } from "@jest/globals" -import { Segment } from "../src" +import { IOptions, Options, Segment } from "../src" import { parseSRT, parseSRTSegment, SRTSegment } from "../src/formats/srt" import { readFile, TestFiles } from "./test_utils" @@ -135,22 +135,45 @@ describe("Parse SRT file data", () => { test.each<{ filePath: string expectedFilePath: string + options: IOptions id: string }>([ { filePath: TestFiles.TRANSCRIPT_SRT_BUZZCAST, expectedFilePath: TestFiles.TRANSCRIPT_SRT_BUZZCAST_OUTPUT, + options: undefined, id: "Buzzcast", }, { filePath: TestFiles.TRANSCRIPT_SRT_PODCASTING_20, expectedFilePath: TestFiles.TRANSCRIPT_SRT_PODCASTING_20_OUTPUT, + options: undefined, id: "Podcasting 2.0", }, - ])("Parse SRT File ($id)", ({ filePath, expectedFilePath }) => { + { + filePath: TestFiles.TRANSCRIPT_SRT_BUZZCAST, + expectedFilePath: TestFiles.TRANSCRIPT_SRT_BUZZCAST_COMBINED_SEGMENTS_128_OUTPUT, + options: { + combineSegments: true, + combineSegmentsLength: 128, + }, + id: "Buzzcast, combined segments 128", + }, + { + filePath: TestFiles.TRANSCRIPT_SRT_BUZZCAST, + expectedFilePath: TestFiles.TRANSCRIPT_SRT_BUZZCAST_SPEAKER_CHANGE_COMBINED_SEGMENTS_128_OUTPUT, + options: { + speakerChange: true, + combineSegments: true, + combineSegmentsLength: 128, + }, + id: "Buzzcast, speaker change, combined segments 128", + }, + ])("Parse SRT File ($id)", ({ filePath, expectedFilePath, options }) => { const data = readFile(filePath) const expectedJSONData = JSON.parse(readFile(expectedFilePath)) + Options.setOptions(options) const segments = parseSRT(data) expect(segments).toEqual(expectedJSONData.segments) }) diff --git a/test/test.ts b/test/test.ts index 6c2911a..cb31f20 100644 --- a/test/test.ts +++ b/test/test.ts @@ -1,6 +1,8 @@ +// noinspection HtmlRequiredLangAttribute + import { describe, expect, test } from "@jest/globals" -import { combineSingleWordSegments, convertFile, determineFormat, Segment, TranscriptFormat } from "../src" +import { convertFile, determineFormat, Options, TranscriptFormat } from "../src" import { readFile, TestFiles } from "./test_utils" @@ -130,6 +132,8 @@ describe("Convert File", () => { const data = readFile(filePath) const expectedJSONData = JSON.parse(readFile(expectedFilePath)) + // eslint-disable-next-line @typescript-eslint/ban-ts-comment + // @ts-ignore const segments = convertFile(data, transcriptFormat) expect(segments).toEqual(expectedJSONData.segments) }) @@ -183,6 +187,8 @@ Subtitles: @marlonrock1986 (^^V^^) id: "VTT, wrong format", }, ])("Convert File Error ($id)", ({ data, transcriptFormat }) => { + // eslint-disable-next-line @typescript-eslint/ban-ts-comment + // @ts-ignore expect(() => convertFile(data, transcriptFormat as TranscriptFormat)).toThrow(Error) }) }) @@ -190,17 +196,11 @@ Subtitles: @marlonrock1986 (^^V^^) describe("Combine Single Word Segments", () => { // noinspection HtmlRequiredLangAttribute test.each<{ - segments: Array | string + segments: string maxLength: number - expected: Array | string + expected: string id: string }>([ - { - segments: [], - maxLength: 32, - expected: [], - id: "Empty", - }, { segments: TestFiles.ONE_WORD_SEGMENTS, maxLength: 32, @@ -214,51 +214,14 @@ describe("Combine Single Word Segments", () => { id: "length 50", }, ])("Combine Single Word Segments ($id)", ({ segments, maxLength, expected }) => { - const segmentsJSON = typeof segments === "string" ? JSON.parse(readFile(segments)) : segments - const expectedJSON = typeof expected === "string" ? JSON.parse(readFile(expected)) : expected + const segmentsData = readFile(segments) + const expectedJSON = JSON.parse(readFile(expected)) - const outSegments = combineSingleWordSegments(segmentsJSON as Array, maxLength) + Options.setOptions({ + combineSegments: true, + combineSegmentsLength: maxLength, + }) + const outSegments = convertFile(segmentsData, TranscriptFormat.JSON) expect(outSegments).toStrictEqual(expectedJSON) }) }) - -describe("Unsupported segment data", () => { - test.each<{ - segments: Array - maxLength: number - id: string - }>([ - { - segments: [ - { - speaker: "Travis", - startTime: 0.3, - startTimeFormatted: "00:00:00.300", - endTime: 0.93, - endTimeFormatted: "00:00:00.930", - body: "Hey, Travis", - }, - { - speaker: "Travis", - startTime: 0.931, - startTimeFormatted: "00:00:00.931", - endTime: 1.08, - endTimeFormatted: "00:00:01.080", - body: "Albritain", - }, - { - speaker: "Travis", - startTime: 1.321, - startTimeFormatted: "00:00:01.321", - endTime: 1.65, - endTimeFormatted: "00:00:01.650", - body: "here.", - }, - ], - maxLength: 32, - id: "Space 1", - }, - ])("Unsupported segment data ($id)", ({ segments, maxLength }) => { - expect(() => combineSingleWordSegments(segments, maxLength)).toThrow(Error) - }) -}) diff --git a/test/test_files/buzzcast_json_combine_equal_time_parsed.json b/test/test_files/buzzcast_json_combine_equal_time_parsed.json new file mode 100644 index 0000000..179e329 --- /dev/null +++ b/test/test_files/buzzcast_json_combine_equal_time_parsed.json @@ -0,0 +1,3916 @@ +{ + "segments": [ + { + "startTime": 0, + "startTimeFormatted": "00:00:00.000", + "endTime": 4.8, + "endTimeFormatted": "00:00:04.800", + "speaker": "Alban", + "body": "It is so stinking nice to\nlike, show up and record this" + }, + { + "startTime": 4.8, + "startTimeFormatted": "00:00:04.800", + "endTime": 8.25, + "endTimeFormatted": "00:00:08.250", + "speaker": "Alban", + "body": "show. And Travis has already put\ntogether an outline. Kevin's got" + }, + { + "startTime": 8.25, + "startTimeFormatted": "00:00:08.250", + "endTime": 13.17, + "endTimeFormatted": "00:00:13.170", + "speaker": "Alban", + "body": "suggestions, I throw my thoughts\ninto the mix. And then Travis" + }, + { + "startTime": 13.17, + "startTimeFormatted": "00:00:13.170", + "endTime": 16.74, + "endTimeFormatted": "00:00:16.740", + "speaker": "Alban", + "body": "goes and does all the work from\nthere, too. It's out into the" + }, + { + "startTime": 16.74, + "startTimeFormatted": "00:00:16.740", + "endTime": 21.27, + "endTimeFormatted": "00:00:21.270", + "speaker": "Alban", + "body": "wild. And I don't see anything.\nThat's an absolute joy for at" + }, + { + "startTime": 21.27, + "startTimeFormatted": "00:00:21.270", + "endTime": 23.73, + "endTimeFormatted": "00:00:23.730", + "speaker": "Alban", + "body": "least two thirds of the team.\nYeah, I mean, exactly." + }, + { + "startTime": 30.48, + "startTimeFormatted": "00:00:30.480", + "endTime": 32.85, + "endTimeFormatted": "00:00:32.850", + "speaker": "Kevin", + "body": "You guys remember, like\ntwo months ago, when you were" + }, + { + "startTime": 32.85, + "startTimeFormatted": "00:00:32.850", + "endTime": 35.46, + "endTimeFormatted": "00:00:35.460", + "speaker": "Kevin", + "body": "like, We're going all in on\nvideo Buzzcast. I was like," + }, + { + "startTime": 35.49, + "startTimeFormatted": "00:00:35.490", + "endTime": 39.12, + "endTimeFormatted": "00:00:39.120", + "speaker": "Kevin", + "body": "that's, I mean, I will agree and\ncommit and disagree, disagree" + }, + { + "startTime": 39.12, + "startTimeFormatted": "00:00:39.120", + "endTime": 41.37, + "endTimeFormatted": "00:00:41.370", + "speaker": "Kevin", + "body": "and commit, I'll do something.\nBut I don't want to do this." + }, + { + "startTime": 42.03, + "startTimeFormatted": "00:00:42.030", + "endTime": 48.24, + "endTimeFormatted": "00:00:48.240", + "speaker": "Alban", + "body": "I never said that. The\nonly reason we ever did video" + }, + { + "startTime": 48.27, + "startTimeFormatted": "00:00:48.270", + "endTime": 49.62, + "endTimeFormatted": "00:00:49.620", + "speaker": "Alban", + "body": "was because of you." + }, + { + "startTime": 50.309, + "startTimeFormatted": "00:00:50.309", + "endTime": 53.249, + "endTimeFormatted": "00:00:53.249", + "speaker": "Kevin", + "body": "That is true. I will take\nthat. Because when we first got" + }, + { + "startTime": 53.249, + "startTimeFormatted": "00:00:53.249", + "endTime": 55.979, + "endTimeFormatted": "00:00:55.979", + "speaker": "Kevin", + "body": "locked down, and we weren't\nallowed to see anybody in" + }, + { + "startTime": 55.979, + "startTimeFormatted": "00:00:55.979", + "endTime": 58.259, + "endTimeFormatted": "00:00:58.259", + "speaker": "Kevin", + "body": "person, I was like, well, it\nwould be nice to be able to see" + }, + { + "startTime": 58.259, + "startTimeFormatted": "00:00:58.259", + "endTime": 60.599, + "endTimeFormatted": "00:01:00.599", + "speaker": "Kevin", + "body": "you guys when we record. And if\nwe're going to be doing video" + }, + { + "startTime": 60.599, + "startTimeFormatted": "00:01:00.599", + "endTime": 64.049, + "endTimeFormatted": "00:01:04.049", + "speaker": "Kevin", + "body": "chats Anyway, why don't we go\nahead and publish those. So I do" + }, + { + "startTime": 64.049, + "startTimeFormatted": "00:01:04.049", + "endTime": 66.749, + "endTimeFormatted": "00:01:06.749", + "speaker": "Kevin", + "body": "take the full blame for moving\nus to video in the first place." + }, + { + "startTime": 67.949, + "startTimeFormatted": "00:01:07.949", + "endTime": 70.049, + "endTimeFormatted": "00:01:10.049", + "speaker": "Kevin", + "body": "But how's that working out for\nus?" + }, + { + "startTime": 71.52, + "startTimeFormatted": "00:01:11.520", + "endTime": 76.08, + "endTimeFormatted": "00:01:16.080", + "speaker": "Alban", + "body": "Not good. The first one\nwe did was like a year ago, we" + }, + { + "startTime": 76.08, + "startTimeFormatted": "00:01:16.080", + "endTime": 81.3, + "endTimeFormatted": "00:01:21.300", + "speaker": "Alban", + "body": "did that live stream to our\nYouTube channel. And that just" + }, + { + "startTime": 81.3, + "startTimeFormatted": "00:01:21.300", + "endTime": 85.14, + "endTimeFormatted": "00:01:25.140", + "speaker": "Alban", + "body": "kind of grew into then we wanted\nto play around with Riverside," + }, + { + "startTime": 85.14, + "startTimeFormatted": "00:01:25.140", + "endTime": 88.83, + "endTimeFormatted": "00:01:28.830", + "speaker": "Alban", + "body": "which was doing video remote\nvideo recording, and then squad" + }, + { + "startTime": 88.83, + "startTimeFormatted": "00:01:28.830", + "endTime": 93.06, + "endTimeFormatted": "00:01:33.060", + "speaker": "Alban", + "body": "cast launched video, remote\nvideo recording. And I think," + }, + { + "startTime": 93.87, + "startTimeFormatted": "00:01:33.870", + "endTime": 96.75, + "endTimeFormatted": "00:01:36.750", + "speaker": "Alban", + "body": "you know, we've you kind of had\nthe tools, the tools were there." + }, + { + "startTime": 96.75, + "startTimeFormatted": "00:01:36.750", + "endTime": 100.32, + "endTimeFormatted": "00:01:40.320", + "speaker": "Alban", + "body": "So we started playing with the\ntools and experimenting. And now" + }, + { + "startTime": 100.32, + "startTimeFormatted": "00:01:40.320", + "endTime": 104.46, + "endTimeFormatted": "00:01:44.460", + "speaker": "Alban", + "body": "the experiment is coming to an\nend, at least for now, at least" + }, + { + "startTime": 104.46, + "startTimeFormatted": "00:01:44.460", + "endTime": 109.38, + "endTimeFormatted": "00:01:49.380", + "speaker": "Alban", + "body": "for now. So do we want to give\nlike the whole story of it, kind" + }, + { + "startTime": 109.38, + "startTimeFormatted": "00:01:49.380", + "endTime": 113.04, + "endTimeFormatted": "00:01:53.040", + "speaker": "Alban", + "body": "of walk through why we made each\ndecision along the way? And" + }, + { + "startTime": 113.04, + "startTimeFormatted": "00:01:53.040", + "endTime": 115.86, + "endTimeFormatted": "00:01:55.860", + "speaker": "Alban", + "body": "let's give the sparknotes what\nwe learned the highlights" + }, + { + "startTime": 116.01, + "startTimeFormatted": "00:01:56.010", + "endTime": 118.86, + "endTimeFormatted": "00:01:58.860", + "speaker": "Alban", + "body": "sparknotes? Yeah, start at the\nbeginning. Kevin, why did you" + }, + { + "startTime": 118.86, + "startTimeFormatted": "00:01:58.860", + "endTime": 121.08, + "endTimeFormatted": "00:02:01.080", + "speaker": "Alban", + "body": "want to start doing some video\nBuzzcast." + }, + { + "startTime": 121.44, + "startTimeFormatted": "00:02:01.440", + "endTime": 123.36, + "endTimeFormatted": "00:02:03.360", + "speaker": "Kevin", + "body": "When we first started\nrecording Buzzcast, we would do" + }, + { + "startTime": 123.36, + "startTimeFormatted": "00:02:03.360", + "endTime": 127.26, + "endTimeFormatted": "00:02:07.260", + "speaker": "Kevin", + "body": "it together in the office in our\nlittle studio space. And we" + }, + { + "startTime": 127.26, + "startTimeFormatted": "00:02:07.260", + "endTime": 131.88, + "endTimeFormatted": "00:02:11.880", + "speaker": "Kevin", + "body": "could play off of each other's\nenergy, right? I think, Listen," + }, + { + "startTime": 132.09, + "startTimeFormatted": "00:02:12.090", + "endTime": 135.09, + "endTimeFormatted": "00:02:15.090", + "speaker": "Kevin", + "body": "I'll speak for myself, I'm not a\nsuper high energy person. So it" + }, + { + "startTime": 135.09, + "startTimeFormatted": "00:02:15.090", + "endTime": 138.33, + "endTimeFormatted": "00:02:18.330", + "speaker": "Kevin", + "body": "helps for me to be sitting\nacross the table for somebody or" + }, + { + "startTime": 138.33, + "startTimeFormatted": "00:02:18.330", + "endTime": 141, + "endTimeFormatted": "00:02:21.000", + "speaker": "Kevin", + "body": "to see somebody else's reactions\nto what I'm saying or when" + }, + { + "startTime": 141, + "startTimeFormatted": "00:02:21.000", + "endTime": 144.27, + "endTimeFormatted": "00:02:24.270", + "speaker": "Kevin", + "body": "they're speaking themselves to\nbe able to keep myself amped up" + }, + { + "startTime": 144.27, + "startTimeFormatted": "00:02:24.270", + "endTime": 146.79, + "endTimeFormatted": "00:02:26.790", + "speaker": "Kevin", + "body": "and engaged in the conversation\nwhen we went audio only and" + }, + { + "startTime": 146.79, + "startTimeFormatted": "00:02:26.790", + "endTime": 149.73, + "endTimeFormatted": "00:02:29.730", + "speaker": "Kevin", + "body": "there was no video component, it\nwas hard for me to continue to" + }, + { + "startTime": 149.73, + "startTimeFormatted": "00:02:29.730", + "endTime": 152.67, + "endTimeFormatted": "00:02:32.670", + "speaker": "Kevin", + "body": "keep my energy high. And to stay\nengaged. I've also got a little" + }, + { + "startTime": 152.67, + "startTimeFormatted": "00:02:32.670", + "endTime": 154.92, + "endTimeFormatted": "00:02:34.920", + "speaker": "Kevin", + "body": "bit of add that I'm I'm fighting\nand dealing with at the same" + }, + { + "startTime": 154.92, + "startTimeFormatted": "00:02:34.920", + "endTime": 159.9, + "endTimeFormatted": "00:02:39.900", + "speaker": "Kevin", + "body": "time. So that part was was\nnecessary in order to be able to" + }, + { + "startTime": 160.35, + "startTimeFormatted": "00:02:40.350", + "endTime": 163.44, + "endTimeFormatted": "00:02:43.440", + "speaker": "Kevin", + "body": "just produce good content. What\nI was interested in is that" + }, + { + "startTime": 163.44, + "startTimeFormatted": "00:02:43.440", + "endTime": 165.6, + "endTimeFormatted": "00:02:45.600", + "speaker": "Kevin", + "body": "since we're doing this video\ncomponent Anyway, why don't we" + }, + { + "startTime": 165.6, + "startTimeFormatted": "00:02:45.600", + "endTime": 168.21, + "endTimeFormatted": "00:02:48.210", + "speaker": "Kevin", + "body": "record this, we've always said\nthat YouTube is an interesting" + }, + { + "startTime": 168.21, + "startTimeFormatted": "00:02:48.210", + "endTime": 170.37, + "endTimeFormatted": "00:02:50.370", + "speaker": "Kevin", + "body": "opportunity for people to\npromote their podcasts because" + }, + { + "startTime": 170.37, + "startTimeFormatted": "00:02:50.370", + "endTime": 172.14, + "endTimeFormatted": "00:02:52.140", + "speaker": "Kevin", + "body": "they do have the algorithm, they\ndo have the recommendation" + }, + { + "startTime": 172.14, + "startTimeFormatted": "00:02:52.140", + "endTime": 176.01, + "endTimeFormatted": "00:02:56.010", + "speaker": "Kevin", + "body": "engine. But you shouldn't just\npublish your audio only there." + }, + { + "startTime": 176.07, + "startTimeFormatted": "00:02:56.070", + "endTime": 178.41, + "endTimeFormatted": "00:02:58.410", + "speaker": "Kevin", + "body": "Because that doesn't feed into\nthe strengths of the algorithm." + }, + { + "startTime": 178.41, + "startTimeFormatted": "00:02:58.410", + "endTime": 180.84, + "endTimeFormatted": "00:03:00.840", + "speaker": "Kevin", + "body": "So you're not even getting the\nbenefit. And you're taking all" + }, + { + "startTime": 180.84, + "startTimeFormatted": "00:03:00.840", + "endTime": 184.05, + "endTimeFormatted": "00:03:04.050", + "speaker": "Kevin", + "body": "this extra time to do that. In\nfact, you could be you know," + }, + { + "startTime": 184.05, + "startTimeFormatted": "00:03:04.050", + "endTime": 185.76, + "endTimeFormatted": "00:03:05.760", + "speaker": "Kevin", + "body": "putting yourself at a\ndisadvantage if you do that," + }, + { + "startTime": 185.76, + "startTimeFormatted": "00:03:05.760", + "endTime": 188.19, + "endTimeFormatted": "00:03:08.190", + "speaker": "Kevin", + "body": "because then you get a bad\nreputation with the algorithm." + }, + { + "startTime": 188.49, + "startTimeFormatted": "00:03:08.490", + "endTime": 192.36, + "endTimeFormatted": "00:03:12.360", + "speaker": "Kevin", + "body": "So anyway, we were doing video,\nwhy not go ahead. And while we" + }, + { + "startTime": 192.36, + "startTimeFormatted": "00:03:12.360", + "endTime": 194.7, + "endTimeFormatted": "00:03:14.700", + "speaker": "Kevin", + "body": "edit the podcast, the audio\nversion, why not edit the video" + }, + { + "startTime": 194.7, + "startTimeFormatted": "00:03:14.700", + "endTime": 196.62, + "endTimeFormatted": "00:03:16.620", + "speaker": "Kevin", + "body": "version and just stick it on\nYouTube and see if we get a bump" + }, + { + "startTime": 196.62, + "startTimeFormatted": "00:03:16.620", + "endTime": 200.73, + "endTimeFormatted": "00:03:20.730", + "speaker": "Kevin", + "body": "from it. That is where you guys\ncome in on the analytical side" + }, + { + "startTime": 200.94, + "startTimeFormatted": "00:03:20.940", + "endTime": 204.87, + "endTimeFormatted": "00:03:24.870", + "speaker": "Kevin", + "body": "and say, Is this working is this\nnot I will say that the" + }, + { + "startTime": 204.87, + "startTimeFormatted": "00:03:24.870", + "endTime": 209.64, + "endTimeFormatted": "00:03:29.640", + "speaker": "Kevin", + "body": "constraints from just somebody\nwho's on the podcast are much" + }, + { + "startTime": 209.64, + "startTimeFormatted": "00:03:29.640", + "endTime": 212.34, + "endTimeFormatted": "00:03:32.340", + "speaker": "Kevin", + "body": "higher than I anticipated. It's\none thing when you're out of the" + }, + { + "startTime": 212.34, + "startTimeFormatted": "00:03:32.340", + "endTime": 215.25, + "endTimeFormatted": "00:03:35.250", + "speaker": "Kevin", + "body": "office, or if you're traveling\nor you can't be here there to be" + }, + { + "startTime": 215.25, + "startTimeFormatted": "00:03:35.250", + "endTime": 218.43, + "endTimeFormatted": "00:03:38.430", + "speaker": "Kevin", + "body": "able to quickly grab a USB mic,\nthrow it in your bag go with" + }, + { + "startTime": 218.43, + "startTimeFormatted": "00:03:38.430", + "endTime": 220.41, + "endTimeFormatted": "00:03:40.410", + "speaker": "Kevin", + "body": "you. And you can record audio\nfrom anywhere in the world, it's" + }, + { + "startTime": 220.41, + "startTimeFormatted": "00:03:40.410", + "endTime": 223.2, + "endTimeFormatted": "00:03:43.200", + "speaker": "Kevin", + "body": "not too hard to find a quiet\nspace, most hotel rooms are" + }, + { + "startTime": 223.2, + "startTimeFormatted": "00:03:43.200", + "endTime": 225.24, + "endTimeFormatted": "00:03:45.240", + "speaker": "Kevin", + "body": "pretty quiet. Or if you're\nstaying on Airbnb or something" + }, + { + "startTime": 225.24, + "startTimeFormatted": "00:03:45.240", + "endTime": 227.4, + "endTimeFormatted": "00:03:47.400", + "speaker": "Kevin", + "body": "that you can find a closet, you\ncan find a quiet space to record" + }, + { + "startTime": 227.4, + "startTimeFormatted": "00:03:47.400", + "endTime": 232.98, + "endTimeFormatted": "00:03:52.980", + "speaker": "Kevin", + "body": "audio, being able to travel with\na decent camera setup. Or if you" + }, + { + "startTime": 232.98, + "startTimeFormatted": "00:03:52.980", + "endTime": 234.48, + "endTimeFormatted": "00:03:54.480", + "speaker": "Kevin", + "body": "don't have a decent camera\nsetup, then you're using" + }, + { + "startTime": 234.48, + "startTimeFormatted": "00:03:54.480", + "endTime": 237.54, + "endTimeFormatted": "00:03:57.540", + "speaker": "Kevin", + "body": "whatever on your laptop, you're\nconstantly worried about your" + }, + { + "startTime": 237.54, + "startTimeFormatted": "00:03:57.540", + "endTime": 239.52, + "endTimeFormatted": "00:03:59.520", + "speaker": "Kevin", + "body": "background, like all this stuff\nis going on. It's just a" + }, + { + "startTime": 239.52, + "startTimeFormatted": "00:03:59.520", + "endTime": 242.88, + "endTimeFormatted": "00:04:02.880", + "speaker": "Kevin", + "body": "different level of commitment\nand what's required in terms of" + }, + { + "startTime": 243.12, + "startTimeFormatted": "00:04:03.120", + "endTime": 245.4, + "endTimeFormatted": "00:04:05.400", + "speaker": "Kevin", + "body": "being able to put a show out\nevery week or every other week." + }, + { + "startTime": 245.61, + "startTimeFormatted": "00:04:05.610", + "endTime": 252, + "endTimeFormatted": "00:04:12.000", + "speaker": "Kevin", + "body": "So that has been added an extra\nlevel of commitment to the show," + }, + { + "startTime": 252.03, + "startTimeFormatted": "00:04:12.030", + "endTime": 254.07, + "endTimeFormatted": "00:04:14.070", + "speaker": "Kevin", + "body": "which again, not something that\nwe weren't willing to do, but" + }, + { + "startTime": 254.07, + "startTimeFormatted": "00:04:14.070", + "endTime": 256.53, + "endTimeFormatted": "00:04:16.530", + "speaker": "Kevin", + "body": "something that was a little bit\nunexpected. Didn't know going" + }, + { + "startTime": 256.53, + "startTimeFormatted": "00:04:16.530", + "endTime": 259.56, + "endTimeFormatted": "00:04:19.560", + "speaker": "Kevin", + "body": "into it. And then from an\nanalytical side, like how" + }, + { + "startTime": 259.62, + "startTimeFormatted": "00:04:19.620", + "endTime": 263.07, + "endTimeFormatted": "00:04:23.070", + "speaker": "Kevin", + "body": "helpful was it actually, for us\ngrowing the show? That's what" + }, + { + "startTime": 263.07, + "startTimeFormatted": "00:04:23.070", + "endTime": 264.24, + "endTimeFormatted": "00:04:24.240", + "speaker": "Kevin", + "body": "you guys have dug into. Right?" + }, + { + "startTime": 264.45, + "startTimeFormatted": "00:04:24.450", + "endTime": 267.84, + "endTimeFormatted": "00:04:27.840", + "speaker": "Alban", + "body": "Yeah, I mean, we can talk\na bit about the analytics buzz" + }, + { + "startTime": 268.05, + "startTimeFormatted": "00:04:28.050", + "endTime": 273.69, + "endTimeFormatted": "00:04:33.690", + "speaker": "Alban", + "body": "cast itself was getting more\nattention, let's call it" + }, + { + "startTime": 273.69, + "startTimeFormatted": "00:04:33.690", + "endTime": 277.53, + "endTimeFormatted": "00:04:37.530", + "speaker": "Alban", + "body": "attention than it ever had\nbefore. We were getting between" + }, + { + "startTime": 277.53, + "startTimeFormatted": "00:04:37.530", + "endTime": 285.03, + "endTimeFormatted": "00:04:45.030", + "speaker": "Alban", + "body": "the downloads that continued to\ngrow on the RSS side. And on the" + }, + { + "startTime": 285.03, + "startTimeFormatted": "00:04:45.030", + "endTime": 288.21, + "endTimeFormatted": "00:04:48.210", + "speaker": "Alban", + "body": "YouTube channel being added to\nthat it was huge. And then we" + }, + { + "startTime": 288.21, + "startTimeFormatted": "00:04:48.210", + "endTime": 292.92, + "endTimeFormatted": "00:04:52.920", + "speaker": "Alban", + "body": "started doing clips of Buzzcast\nepisodes. And those were doing" + }, + { + "startTime": 292.92, + "startTimeFormatted": "00:04:52.920", + "endTime": 296.49, + "endTimeFormatted": "00:04:56.490", + "speaker": "Alban", + "body": "really well. And so if you\nwanted to add all that up, it" + }, + { + "startTime": 296.49, + "startTimeFormatted": "00:04:56.490", + "endTime": 301.26, + "endTimeFormatted": "00:05:01.260", + "speaker": "Alban", + "body": "was like wow, this show is\ndoubled in sighs This is great." + }, + { + "startTime": 302.4, + "startTimeFormatted": "00:05:02.400", + "endTime": 308.34, + "endTimeFormatted": "00:05:08.340", + "speaker": "Alban", + "body": "But we on the other side, were\nkind of frustrated with the" + }, + { + "startTime": 308.34, + "startTimeFormatted": "00:05:08.340", + "endTime": 313.26, + "endTimeFormatted": "00:05:13.260", + "speaker": "Alban", + "body": "growth of the YouTube channel.\nWe grew a ton the first year." + }, + { + "startTime": 313.77, + "startTimeFormatted": "00:05:13.770", + "endTime": 317.61, + "endTimeFormatted": "00:05:17.610", + "speaker": "Alban", + "body": "And we just kind of seen a lot\nof slowing down of our growth." + }, + { + "startTime": 317.61, + "startTimeFormatted": "00:05:17.610", + "endTime": 322.05, + "endTimeFormatted": "00:05:22.050", + "speaker": "Alban", + "body": "We didn't know exactly why. And\nwe kept kind of digging into the" + }, + { + "startTime": 322.05, + "startTimeFormatted": "00:05:22.050", + "endTime": 327.84, + "endTimeFormatted": "00:05:27.840", + "speaker": "Alban", + "body": "data. And I think it might have\nbeen Jonathan first, or maybe it" + }, + { + "startTime": 327.84, + "startTimeFormatted": "00:05:27.840", + "endTime": 330.96, + "endTimeFormatted": "00:05:30.960", + "speaker": "Alban", + "body": "was Travis, who said, I just\nclicked through all of the last" + }, + { + "startTime": 330.96, + "startTimeFormatted": "00:05:30.960", + "endTime": 335.19, + "endTimeFormatted": "00:05:35.190", + "speaker": "Alban", + "body": "videos. And I noticed most of\nthe Buzzcast ones lose" + }, + { + "startTime": 335.19, + "startTimeFormatted": "00:05:35.190", + "endTime": 339.78, + "endTimeFormatted": "00:05:39.780", + "speaker": "Alban", + "body": "subscribers. And I was like,\nThat's not true. And then I" + }, + { + "startTime": 339.78, + "startTimeFormatted": "00:05:39.780", + "endTime": 343.71, + "endTimeFormatted": "00:05:43.710", + "speaker": "Alban", + "body": "click through and went, Oh,\nthat's definitely true. I was" + }, + { + "startTime": 343.71, + "startTimeFormatted": "00:05:43.710", + "endTime": 348.09, + "endTimeFormatted": "00:05:48.090", + "speaker": "Alban", + "body": "very skeptical by nature. And so\nand then we started digging in" + }, + { + "startTime": 348.09, + "startTimeFormatted": "00:05:48.090", + "endTime": 354.78, + "endTimeFormatted": "00:05:54.780", + "speaker": "Alban", + "body": "deeper. And I took, I think it\nwas like six different stats" + }, + { + "startTime": 354.78, + "startTimeFormatted": "00:05:54.780", + "endTime": 358.5, + "endTimeFormatted": "00:05:58.500", + "speaker": "Alban", + "body": "that we use to kind of quantify\nhow valuable each individual" + }, + { + "startTime": 358.5, + "startTimeFormatted": "00:05:58.500", + "endTime": 363.3, + "endTimeFormatted": "00:06:03.300", + "speaker": "Alban", + "body": "video is. And I just went back\nand looked at, like the last 90" + }, + { + "startTime": 363.3, + "startTimeFormatted": "00:06:03.300", + "endTime": 365.52, + "endTimeFormatted": "00:06:05.520", + "speaker": "Alban", + "body": "days, all the videos that were\ncreated during that 90 day" + }, + { + "startTime": 365.52, + "startTimeFormatted": "00:06:05.520", + "endTime": 372.48, + "endTimeFormatted": "00:06:12.480", + "speaker": "Alban", + "body": "period, I think we had 22\nvideos, or 26 videos, all of the" + }, + { + "startTime": 372.48, + "startTimeFormatted": "00:06:12.480", + "endTime": 375.54, + "endTimeFormatted": "00:06:15.540", + "speaker": "Alban", + "body": "Buzzcast ones were in the worst\ncategory, they were they" + }, + { + "startTime": 375.54, + "startTimeFormatted": "00:06:15.540", + "endTime": 380.49, + "endTimeFormatted": "00:06:20.490", + "speaker": "Alban", + "body": "represented, like the very\nbottom five episodes, or videos." + }, + { + "startTime": 380.97, + "startTimeFormatted": "00:06:20.970", + "endTime": 385.17, + "endTimeFormatted": "00:06:25.170", + "speaker": "Alban", + "body": "And, you know, we, I think\nTravis, you had some good ideas" + }, + { + "startTime": 385.17, + "startTimeFormatted": "00:06:25.170", + "endTime": 389.55, + "endTimeFormatted": "00:06:29.550", + "speaker": "Alban", + "body": "of why the Buzzcast ones were\nperforming near the bottom. But" + }, + { + "startTime": 389.67, + "startTimeFormatted": "00:06:29.670", + "endTime": 392.7, + "endTimeFormatted": "00:06:32.700", + "speaker": "Alban", + "body": "in the end, we were kind of\ndoing the thing that we've" + }, + { + "startTime": 392.7, + "startTimeFormatted": "00:06:32.700", + "endTime": 394.62, + "endTimeFormatted": "00:06:34.620", + "speaker": "Alban", + "body": "always criticized, we've always\ncriticized people who were" + }, + { + "startTime": 394.62, + "startTimeFormatted": "00:06:34.620", + "endTime": 399.99, + "endTimeFormatted": "00:06:39.990", + "speaker": "Alban", + "body": "putting a static image on a\nYouTube video on a YouTube" + }, + { + "startTime": 399.99, + "startTimeFormatted": "00:06:39.990", + "endTime": 404.79, + "endTimeFormatted": "00:06:44.790", + "speaker": "Alban", + "body": "video, just having audio, you\nknow, we said that can crush an" + }, + { + "startTime": 404.79, + "startTimeFormatted": "00:06:44.790", + "endTime": 409.74, + "endTimeFormatted": "00:06:49.740", + "speaker": "Alban", + "body": "existing valuable YouTube\nchannel. And we were crushing" + }, + { + "startTime": 409.77, + "startTimeFormatted": "00:06:49.770", + "endTime": 415.5, + "endTimeFormatted": "00:06:55.500", + "speaker": "Alban", + "body": "our existing value bowl YouTube\nchannel, by adding this, you" + }, + { + "startTime": 415.5, + "startTimeFormatted": "00:06:55.500", + "endTime": 419.55, + "endTimeFormatted": "00:06:59.550", + "speaker": "Alban", + "body": "know, some of this, basically\npodcast content in video format." + }, + { + "startTime": 419.61, + "startTimeFormatted": "00:06:59.610", + "endTime": 421.8, + "endTimeFormatted": "00:07:01.800", + "speaker": "Kevin", + "body": "To clarify, we weren't\ncrushing it because we weren't" + }, + { + "startTime": 421.8, + "startTimeFormatted": "00:07:01.800", + "endTime": 425.16, + "endTimeFormatted": "00:07:05.160", + "speaker": "Kevin", + "body": "putting the static image when we\nwere putting real video up. But" + }, + { + "startTime": 425.16, + "startTimeFormatted": "00:07:05.160", + "endTime": 429.27, + "endTimeFormatted": "00:07:09.270", + "speaker": "Kevin", + "body": "we weren't playing in line with\nthe the rules of YouTube or to" + }, + { + "startTime": 429.27, + "startTimeFormatted": "00:07:09.270", + "endTime": 431.52, + "endTimeFormatted": "00:07:11.520", + "speaker": "Kevin", + "body": "use the algorithm in the\nsmartest and best way we were" + }, + { + "startTime": 431.52, + "startTimeFormatted": "00:07:11.520", + "endTime": 434.1, + "endTimeFormatted": "00:07:14.100", + "speaker": "Kevin", + "body": "confusing the algorithm. We were\npublishing different lengths of" + }, + { + "startTime": 434.1, + "startTimeFormatted": "00:07:14.100", + "endTime": 437.55, + "endTimeFormatted": "00:07:17.550", + "speaker": "Kevin", + "body": "content, different formats of\ncontent. And so we ended up is a" + }, + { + "startTime": 437.55, + "startTimeFormatted": "00:07:17.550", + "endTime": 440.46, + "endTimeFormatted": "00:07:20.460", + "speaker": "Kevin", + "body": "very important and valuable\nchannel for us for marketing our" + }, + { + "startTime": 440.46, + "startTimeFormatted": "00:07:20.460", + "endTime": 442.77, + "endTimeFormatted": "00:07:22.770", + "speaker": "Kevin", + "body": "software and telling the world\nabout what Buzzsprout can do for" + }, + { + "startTime": 442.77, + "startTimeFormatted": "00:07:22.770", + "endTime": 446.22, + "endTimeFormatted": "00:07:26.220", + "speaker": "Kevin", + "body": "you as a podcaster. We were\nhurting that marketing channel" + }, + { + "startTime": 446.22, + "startTimeFormatted": "00:07:26.220", + "endTime": 446.79, + "endTimeFormatted": "00:07:26.790", + "speaker": "Kevin", + "body": "for us, right?" + }, + { + "startTime": 447.09, + "startTimeFormatted": "00:07:27.090", + "endTime": 450.75, + "endTimeFormatted": "00:07:30.750", + "speaker": "Alban", + "body": "Yeah, I guess what I was\nsaying is, we were not being" + }, + { + "startTime": 450.75, + "startTimeFormatted": "00:07:30.750", + "endTime": 454.92, + "endTimeFormatted": "00:07:34.920", + "speaker": "Alban", + "body": "hypocritical in the way that we\ncreated the video, the content," + }, + { + "startTime": 454.98, + "startTimeFormatted": "00:07:34.980", + "endTime": 458.25, + "endTimeFormatted": "00:07:38.250", + "speaker": "Alban", + "body": "because we weren't publishing\nthe static image with the audio." + }, + { + "startTime": 458.79, + "startTimeFormatted": "00:07:38.790", + "endTime": 461.97, + "endTimeFormatted": "00:07:41.970", + "speaker": "Alban", + "body": "But the reason we say we\nrecommend everybody else not to" + }, + { + "startTime": 461.97, + "startTimeFormatted": "00:07:41.970", + "endTime": 465.66, + "endTimeFormatted": "00:07:45.660", + "speaker": "Alban", + "body": "do that, is because what it's\ndoing is it's showing YouTube" + }, + { + "startTime": 465.66, + "startTimeFormatted": "00:07:45.660", + "endTime": 468.48, + "endTimeFormatted": "00:07:48.480", + "speaker": "Alban", + "body": "that your content is low\nquality, and it's a specific" + }, + { + "startTime": 468.48, + "startTimeFormatted": "00:07:48.480", + "endTime": 473.67, + "endTimeFormatted": "00:07:53.670", + "speaker": "Alban", + "body": "type of content. It's audio plus\nan image. Well, when we were" + }, + { + "startTime": 473.67, + "startTimeFormatted": "00:07:53.670", + "endTime": 477.39, + "endTimeFormatted": "00:07:57.390", + "speaker": "Alban", + "body": "looking at it, YouTube was used\nto a much higher production" + }, + { + "startTime": 477.39, + "startTimeFormatted": "00:07:57.390", + "endTime": 482.64, + "endTimeFormatted": "00:08:02.640", + "speaker": "Alban", + "body": "quality, a very different type\nof content for our channel. And" + }, + { + "startTime": 482.64, + "startTimeFormatted": "00:08:02.640", + "endTime": 485.79, + "endTimeFormatted": "00:08:05.790", + "speaker": "Alban", + "body": "so I think people were\nconstantly confused. They're" + }, + { + "startTime": 485.79, + "startTimeFormatted": "00:08:05.790", + "endTime": 490.71, + "endTimeFormatted": "00:08:10.710", + "speaker": "Alban", + "body": "running into videos that they\nthought were going to be Travis" + }, + { + "startTime": 490.71, + "startTimeFormatted": "00:08:10.710", + "endTime": 494.49, + "endTimeFormatted": "00:08:14.490", + "speaker": "Alban", + "body": "or Sarah jalon, doing an in\ndepth tutorial. And they were" + }, + { + "startTime": 494.49, + "startTimeFormatted": "00:08:14.490", + "endTime": 498.36, + "endTimeFormatted": "00:08:18.360", + "speaker": "Alban", + "body": "clicking, and they were finding\nme pontificating about Facebook" + }, + { + "startTime": 498.36, + "startTimeFormatted": "00:08:18.360", + "endTime": 502.2, + "endTimeFormatted": "00:08:22.200", + "speaker": "Alban", + "body": "podcasts for 20 minutes. So\nTravis, give us some more" + }, + { + "startTime": 502.2, + "startTimeFormatted": "00:08:22.200", + "endTime": 506.01, + "endTimeFormatted": "00:08:26.010", + "speaker": "Alban", + "body": "insight, what's what are the\ndifferentiators between our day" + }, + { + "startTime": 506.01, + "startTimeFormatted": "00:08:26.010", + "endTime": 509.64, + "endTimeFormatted": "00:08:29.640", + "speaker": "Alban", + "body": "to day content are the bread and\nbutter that we do very well, and" + }, + { + "startTime": 509.64, + "startTimeFormatted": "00:08:29.640", + "endTime": 511.35, + "endTimeFormatted": "00:08:31.350", + "speaker": "Alban", + "body": "what Buzzcast was doing on our\nchannel?" + }, + { + "startTime": 511.56, + "startTimeFormatted": "00:08:31.560", + "endTime": 514.38, + "endTimeFormatted": "00:08:34.380", + "speaker": "Travis", + "body": "One thing to keep in\nmind is when we create content" + }, + { + "startTime": 514.38, + "startTimeFormatted": "00:08:34.380", + "endTime": 518.49, + "endTimeFormatted": "00:08:38.490", + "speaker": "Travis", + "body": "for Podcasting, Q&A, when we\ncreate tutorials, things like" + }, + { + "startTime": 518.49, + "startTimeFormatted": "00:08:38.490", + "endTime": 522.09, + "endTimeFormatted": "00:08:42.090", + "speaker": "Travis", + "body": "that, we have a very specific\naim for those videos. Right? So" + }, + { + "startTime": 522.09, + "startTimeFormatted": "00:08:42.090", + "endTime": 525.21, + "endTimeFormatted": "00:08:45.210", + "speaker": "Travis", + "body": "we're trying to answer questions\nreally well, we're trying to" + }, + { + "startTime": 525.42, + "startTimeFormatted": "00:08:45.420", + "endTime": 529.44, + "endTimeFormatted": "00:08:49.440", + "speaker": "Travis", + "body": "take all the knowledge and best\npractices for how to be a" + }, + { + "startTime": 529.44, + "startTimeFormatted": "00:08:49.440", + "endTime": 534.27, + "endTimeFormatted": "00:08:54.270", + "speaker": "Travis", + "body": "podcaster. And consolidating\nthat into a form factor. That is" + }, + { + "startTime": 534.3, + "startTimeFormatted": "00:08:54.300", + "endTime": 536.52, + "endTimeFormatted": "00:08:56.520", + "speaker": "Travis", + "body": "something you could easily watch\nin just a few minutes and get" + }, + { + "startTime": 536.55, + "startTimeFormatted": "00:08:56.550", + "endTime": 540.69, + "endTimeFormatted": "00:09:00.690", + "speaker": "Travis", + "body": "all the information that you\nneed. And because we're able to" + }, + { + "startTime": 540.81, + "startTimeFormatted": "00:09:00.810", + "endTime": 543.6, + "endTimeFormatted": "00:09:03.600", + "speaker": "Travis", + "body": "put that level of focus on it,\nlike Alan mentioned, the" + }, + { + "startTime": 543.6, + "startTimeFormatted": "00:09:03.600", + "endTime": 546.96, + "endTimeFormatted": "00:09:06.960", + "speaker": "Travis", + "body": "production quality is better. We\nhave custom animations, and B" + }, + { + "startTime": 546.96, + "startTimeFormatted": "00:09:06.960", + "endTime": 549.42, + "endTimeFormatted": "00:09:09.420", + "speaker": "Travis", + "body": "roll, which is just a fancy way\nof saying we cut away to" + }, + { + "startTime": 549.42, + "startTimeFormatted": "00:09:09.420", + "endTime": 552.72, + "endTimeFormatted": "00:09:12.720", + "speaker": "Travis", + "body": "different videos of models doing\nthings that match what we're" + }, + { + "startTime": 552.72, + "startTimeFormatted": "00:09:12.720", + "endTime": 558.96, + "endTimeFormatted": "00:09:18.960", + "speaker": "Travis", + "body": "talking about on screen. And so\nwe're able to create a type of" + }, + { + "startTime": 558.96, + "startTimeFormatted": "00:09:18.960", + "endTime": 563.73, + "endTimeFormatted": "00:09:23.730", + "speaker": "Travis", + "body": "content that works really well\nin a YouTube ecosystem. And so" + }, + { + "startTime": 563.73, + "startTimeFormatted": "00:09:23.730", + "endTime": 566.91, + "endTimeFormatted": "00:09:26.910", + "speaker": "Travis", + "body": "if your whole channel is that\nkind of content, then YouTube" + }, + { + "startTime": 566.91, + "startTimeFormatted": "00:09:26.910", + "endTime": 571.38, + "endTimeFormatted": "00:09:31.380", + "speaker": "Travis", + "body": "starts knowing Okay, if someone\nwe've kind of identified them as" + }, + { + "startTime": 571.38, + "startTimeFormatted": "00:09:31.380", + "endTime": 573.87, + "endTimeFormatted": "00:09:33.870", + "speaker": "Travis", + "body": "a potential podcaster, and\nthey're asking a podcast related" + }, + { + "startTime": 573.87, + "startTimeFormatted": "00:09:33.870", + "endTime": 576.69, + "endTimeFormatted": "00:09:36.690", + "speaker": "Travis", + "body": "question, Buzzsprout is going to\nbe the channel we recommend" + }, + { + "startTime": 576.69, + "startTimeFormatted": "00:09:36.690", + "endTime": 579.96, + "endTimeFormatted": "00:09:39.960", + "speaker": "Travis", + "body": "because we know they have this\nkind of content. The reason that" + }, + { + "startTime": 579.96, + "startTimeFormatted": "00:09:39.960", + "endTime": 584.22, + "endTimeFormatted": "00:09:44.220", + "speaker": "Travis", + "body": "we split off Buzzcast the full\nepisodes into a separate channel" + }, + { + "startTime": 584.34, + "startTimeFormatted": "00:09:44.340", + "endTime": 589.59, + "endTimeFormatted": "00:09:49.590", + "speaker": "Travis", + "body": "a couple of months ago, is\nbecause we noticed that those" + }, + { + "startTime": 589.59, + "startTimeFormatted": "00:09:49.590", + "endTime": 594.21, + "endTimeFormatted": "00:09:54.210", + "speaker": "Travis", + "body": "videos were not performing at\nall at the same level as the" + }, + { + "startTime": 594.54, + "startTimeFormatted": "00:09:54.540", + "endTime": 597.75, + "endTimeFormatted": "00:09:57.750", + "speaker": "Travis", + "body": "Podcasting, Q&A and other\ntutorial videos were doing. And" + }, + { + "startTime": 597.75, + "startTimeFormatted": "00:09:57.750", + "endTime": 600.51, + "endTimeFormatted": "00:10:00.510", + "speaker": "Travis", + "body": "that was a common practice we'd\nseen with other youtubers That" + }, + { + "startTime": 600.51, + "startTimeFormatted": "00:10:00.510", + "endTime": 603.69, + "endTimeFormatted": "00:10:03.690", + "speaker": "Travis", + "body": "created video podcasts, they\nwould create new channels for" + }, + { + "startTime": 603.69, + "startTimeFormatted": "00:10:03.690", + "endTime": 606.03, + "endTimeFormatted": "00:10:06.030", + "speaker": "Travis", + "body": "them. And then if they had\nclips, that would be a third" + }, + { + "startTime": 606.03, + "startTimeFormatted": "00:10:06.030", + "endTime": 607.68, + "endTimeFormatted": "00:10:07.680", + "speaker": "Travis", + "body": "channel. So they would actually\nhave three channels, they'd have" + }, + { + "startTime": 607.68, + "startTimeFormatted": "00:10:07.680", + "endTime": 610.44, + "endTimeFormatted": "00:10:10.440", + "speaker": "Travis", + "body": "their main YouTube channel, a\nfull podcast channel and a clips" + }, + { + "startTime": 610.44, + "startTimeFormatted": "00:10:10.440", + "endTime": 614.13, + "endTimeFormatted": "00:10:14.130", + "speaker": "Travis", + "body": "channel, in order to make sure\nthat they were kind of playing" + }, + { + "startTime": 614.13, + "startTimeFormatted": "00:10:14.130", + "endTime": 616.68, + "endTimeFormatted": "00:10:16.680", + "speaker": "Travis", + "body": "by the rules, the best practice\nof YouTube. So these were all" + }, + { + "startTime": 616.68, + "startTimeFormatted": "00:10:16.680", + "endTime": 619.89, + "endTimeFormatted": "00:10:19.890", + "speaker": "Travis", + "body": "things that we, you know, as we\nwere experimenting, we weren't" + }, + { + "startTime": 619.89, + "startTimeFormatted": "00:10:19.890", + "endTime": 623.01, + "endTimeFormatted": "00:10:23.010", + "speaker": "Travis", + "body": "sure like, how far are we really\ngoing to carry this book? Like," + }, + { + "startTime": 623.01, + "startTimeFormatted": "00:10:23.010", + "endTime": 627.69, + "endTimeFormatted": "00:10:27.690", + "speaker": "Travis", + "body": "how invested Are we going to get\ninto video Buzzcast. And so it" + }, + { + "startTime": 627.69, + "startTimeFormatted": "00:10:27.690", + "endTime": 630.15, + "endTimeFormatted": "00:10:30.150", + "speaker": "Travis", + "body": "didn't make sense to spin up a\nwhole YouTube channel, we're" + }, + { + "startTime": 630.15, + "startTimeFormatted": "00:10:30.150", + "endTime": 632.55, + "endTimeFormatted": "00:10:32.550", + "speaker": "Travis", + "body": "just going to do a couple\nepisodes and then retire it" + }, + { + "startTime": 632.55, + "startTimeFormatted": "00:10:32.550", + "endTime": 635.97, + "endTimeFormatted": "00:10:35.970", + "speaker": "Travis", + "body": "right. So we tested in our on\nour main channel first and said," + }, + { + "startTime": 635.97, + "startTimeFormatted": "00:10:35.970", + "endTime": 639.18, + "endTimeFormatted": "00:10:39.180", + "speaker": "Travis", + "body": "Okay, that's working. So then\nwhat if we took the next step," + }, + { + "startTime": 639.18, + "startTimeFormatted": "00:10:39.180", + "endTime": 641.67, + "endTimeFormatted": "00:10:41.670", + "speaker": "Travis", + "body": "and we made it consistent? And\nthen what if we took the next" + }, + { + "startTime": 641.67, + "startTimeFormatted": "00:10:41.670", + "endTime": 644.1, + "endTimeFormatted": "00:10:44.100", + "speaker": "Travis", + "body": "step and made a separate, and so\nit's kind of like evolved over" + }, + { + "startTime": 644.1, + "startTimeFormatted": "00:10:44.100", + "endTime": 648.72, + "endTimeFormatted": "00:10:48.720", + "speaker": "Travis", + "body": "time. And now to Kevin's point,\nit's at the place where we just" + }, + { + "startTime": 648.72, + "startTimeFormatted": "00:10:48.720", + "endTime": 652.44, + "endTimeFormatted": "00:10:52.440", + "speaker": "Travis", + "body": "wanted to make sure, if we keep\ngoing on this trajectory, it's" + }, + { + "startTime": 652.44, + "startTimeFormatted": "00:10:52.440", + "endTime": 655.92, + "endTimeFormatted": "00:10:55.920", + "speaker": "Travis", + "body": "going to serve you guys, it's\ngonna make Buzzcast better for" + }, + { + "startTime": 655.92, + "startTimeFormatted": "00:10:55.920", + "endTime": 659.28, + "endTimeFormatted": "00:10:59.280", + "speaker": "Travis", + "body": "you. And it's also going to make\nsense in the grand scheme of the" + }, + { + "startTime": 659.28, + "startTimeFormatted": "00:10:59.280", + "endTime": 662.94, + "endTimeFormatted": "00:11:02.940", + "speaker": "Travis", + "body": "other things that we're doing to\nproduce and create content. And" + }, + { + "startTime": 662.94, + "startTimeFormatted": "00:11:02.940", + "endTime": 666.48, + "endTimeFormatted": "00:11:06.480", + "speaker": "Travis", + "body": "so we're now at this nexus point\nwhere if we're going to be able" + }, + { + "startTime": 666.48, + "startTimeFormatted": "00:11:06.480", + "endTime": 670.29, + "endTimeFormatted": "00:11:10.290", + "speaker": "Travis", + "body": "to go back and record in the\nstudio, you know, that has a" + }, + { + "startTime": 670.29, + "startTimeFormatted": "00:11:10.290", + "endTime": 672.75, + "endTimeFormatted": "00:11:12.750", + "speaker": "Travis", + "body": "level of production that even\nexceeds what we're currently" + }, + { + "startTime": 672.87, + "startTimeFormatted": "00:11:12.870", + "endTime": 677.37, + "endTimeFormatted": "00:11:17.370", + "speaker": "Travis", + "body": "what we were doing before. And,\nand so at this point in time, it" + }, + { + "startTime": 677.37, + "startTimeFormatted": "00:11:17.370", + "endTime": 681.03, + "endTimeFormatted": "00:11:21.030", + "speaker": "Travis", + "body": "makes more sense for us to pause\nit, knowing we can always turn" + }, + { + "startTime": 681.03, + "startTimeFormatted": "00:11:21.030", + "endTime": 684.27, + "endTimeFormatted": "00:11:24.270", + "speaker": "Travis", + "body": "it back on later. But just to\ndouble down and refocus our" + }, + { + "startTime": 684.27, + "startTimeFormatted": "00:11:24.270", + "endTime": 686.94, + "endTimeFormatted": "00:11:26.940", + "speaker": "Travis", + "body": "efforts on the audio only\nversion of Buzzcast." + }, + { + "startTime": 687.3, + "startTimeFormatted": "00:11:27.300", + "endTime": 690.63, + "endTimeFormatted": "00:11:30.630", + "speaker": "Alban", + "body": "So if I can kind of tie\nthis together with what are the" + }, + { + "startTime": 690.63, + "startTimeFormatted": "00:11:30.630", + "endTime": 695.43, + "endTimeFormatted": "00:11:35.430", + "speaker": "Alban", + "body": "best practices we have learned\nfor YouTube, and podcasting, in" + }, + { + "startTime": 695.43, + "startTimeFormatted": "00:11:35.430", + "endTime": 700.47, + "endTimeFormatted": "00:11:40.470", + "speaker": "Alban", + "body": "particular, because podcasting\nis really growing on YouTube," + }, + { + "startTime": 701.13, + "startTimeFormatted": "00:11:41.130", + "endTime": 704.85, + "endTimeFormatted": "00:11:44.850", + "speaker": "Alban", + "body": "one out of five people now who\nsay they listened to podcasts," + }, + { + "startTime": 704.85, + "startTimeFormatted": "00:11:44.850", + "endTime": 708.42, + "endTimeFormatted": "00:11:48.420", + "speaker": "Alban", + "body": "they listened to most of their\npodcasts on YouTube, one out of" + }, + { + "startTime": 708.42, + "startTimeFormatted": "00:11:48.420", + "endTime": 713.64, + "endTimeFormatted": "00:11:53.640", + "speaker": "Alban", + "body": "five, that's pretty remarkably\nhigh numbers. That comes from" + }, + { + "startTime": 713.7, + "startTimeFormatted": "00:11:53.700", + "endTime": 717.66, + "endTimeFormatted": "00:11:57.660", + "speaker": "Alban", + "body": "Edison research. I actually\ninterviewed Tom Webster this" + }, + { + "startTime": 717.66, + "startTimeFormatted": "00:11:57.660", + "endTime": 721.29, + "endTimeFormatted": "00:12:01.290", + "speaker": "Alban", + "body": "morning, and he told me that so\nit's definitely working there." + }, + { + "startTime": 721.77, + "startTimeFormatted": "00:12:01.770", + "endTime": 726.06, + "endTimeFormatted": "00:12:06.060", + "speaker": "Alban", + "body": "But it takes a lot to make it\nwork. And it was not stuff that" + }, + { + "startTime": 726.06, + "startTimeFormatted": "00:12:06.060", + "endTime": 730.02, + "endTimeFormatted": "00:12:10.020", + "speaker": "Alban", + "body": "was going to make sense for us\nto do. So. I think to do" + }, + { + "startTime": 730.08, + "startTimeFormatted": "00:12:10.080", + "endTime": 734.13, + "endTimeFormatted": "00:12:14.130", + "speaker": "Alban", + "body": "podcasts, well on YouTube, you\nprobably need to be recording a" + }, + { + "startTime": 734.13, + "startTimeFormatted": "00:12:14.130", + "endTime": 739.62, + "endTimeFormatted": "00:12:19.620", + "speaker": "Alban", + "body": "person so that you have that\nlive engaging element. Because I" + }, + { + "startTime": 739.62, + "startTimeFormatted": "00:12:19.620", + "endTime": 743.49, + "endTimeFormatted": "00:12:23.490", + "speaker": "Alban", + "body": "don't know how to say this\nexactly. But like, the level of" + }, + { + "startTime": 743.49, + "startTimeFormatted": "00:12:23.490", + "endTime": 748.62, + "endTimeFormatted": "00:12:28.620", + "speaker": "Alban", + "body": "engagement you want to see\nbetween the hosts during a audio" + }, + { + "startTime": 748.71, + "startTimeFormatted": "00:12:28.710", + "endTime": 753.03, + "endTimeFormatted": "00:12:33.030", + "speaker": "Alban", + "body": "and a video medium is very\ndifferent. Right now, like I can" + }, + { + "startTime": 753.03, + "startTimeFormatted": "00:12:33.030", + "endTime": 756.24, + "endTimeFormatted": "00:12:36.240", + "speaker": "Alban", + "body": "see Kevin and Travis and like\nKevin looks kind of" + }, + { + "startTime": 756.24, + "startTimeFormatted": "00:12:36.240", + "endTime": 759.33, + "endTimeFormatted": "00:12:39.330", + "speaker": "Alban", + "body": "disinterested. That doesn't\nbother anybody who's just" + }, + { + "startTime": 759.33, + "startTimeFormatted": "00:12:39.330", + "endTime": 761.34, + "endTimeFormatted": "00:12:41.340", + "speaker": "Alban", + "body": "listening to this because they\ngo, Oh, Kevin's probably" + }, + { + "startTime": 761.34, + "startTimeFormatted": "00:12:41.340", + "endTime": 768.06, + "endTimeFormatted": "00:12:48.060", + "speaker": "Alban", + "body": "listening attentively. But you\nknow what? But if we're on" + }, + { + "startTime": 768.06, + "startTimeFormatted": "00:12:48.060", + "endTime": 771.06, + "endTimeFormatted": "00:12:51.060", + "speaker": "Alban", + "body": "video, I'd be the first comment\nwe ever got on one of our" + }, + { + "startTime": 771.06, + "startTimeFormatted": "00:12:51.060", + "endTime": 774.57, + "endTimeFormatted": "00:12:54.570", + "speaker": "Alban", + "body": "Buzzcast episodes was why does\nalbot look so mad. And I was" + }, + { + "startTime": 774.57, + "startTimeFormatted": "00:12:54.570", + "endTime": 779.19, + "endTimeFormatted": "00:12:59.190", + "speaker": "Alban", + "body": "like, Oh, that's just my face\nlooks. That's just me. Like," + }, + { + "startTime": 779.19, + "startTimeFormatted": "00:12:59.190", + "endTime": 783.63, + "endTimeFormatted": "00:13:03.630", + "speaker": "Alban", + "body": "that's just me not smiling. And\nso that works perfectly fine." + }, + { + "startTime": 783.66, + "startTimeFormatted": "00:13:03.660", + "endTime": 787.23, + "endTimeFormatted": "00:13:07.230", + "speaker": "Alban", + "body": "When you're recording long\ndistance recordings. When it's" + }, + { + "startTime": 787.23, + "startTimeFormatted": "00:13:07.230", + "endTime": 791.55, + "endTimeFormatted": "00:13:11.550", + "speaker": "Alban", + "body": "on video, it starts to look a\nlittle weird. And you can either" + }, + { + "startTime": 791.58, + "startTimeFormatted": "00:13:11.580", + "endTime": 795.51, + "endTimeFormatted": "00:13:15.510", + "speaker": "Alban", + "body": "kind of over fake enthusiasm, or\nyou can get together in an audio" + }, + { + "startTime": 795.51, + "startTimeFormatted": "00:13:15.510", + "endTime": 799.38, + "endTimeFormatted": "00:13:19.380", + "speaker": "Alban", + "body": "studio get together in a studio\nin person. So like, get together" + }, + { + "startTime": 799.38, + "startTimeFormatted": "00:13:19.380", + "endTime": 803.37, + "endTimeFormatted": "00:13:23.370", + "speaker": "Alban", + "body": "in person, I think is a very\nhigh recommendation, they should" + }, + { + "startTime": 803.37, + "startTimeFormatted": "00:13:23.370", + "endTime": 808.2, + "endTimeFormatted": "00:13:28.200", + "speaker": "Alban", + "body": "try to get that number, you\nknow, if at all possible, then" + }, + { + "startTime": 808.23, + "startTimeFormatted": "00:13:28.230", + "endTime": 811.38, + "endTimeFormatted": "00:13:31.380", + "speaker": "Alban", + "body": "you've also got to have like\nmultiple shots to be able to" + }, + { + "startTime": 811.38, + "startTimeFormatted": "00:13:31.380", + "endTime": 814.47, + "endTimeFormatted": "00:13:34.470", + "speaker": "Alban", + "body": "keep it interesting. So that's\nprobably a camera on each host." + }, + { + "startTime": 815.01, + "startTimeFormatted": "00:13:35.010", + "endTime": 818.7, + "endTimeFormatted": "00:13:38.700", + "speaker": "Alban", + "body": "Maybe an additional wide angle\ncamera, you can see that we've" + }, + { + "startTime": 818.7, + "startTimeFormatted": "00:13:38.700", + "endTime": 822.09, + "endTimeFormatted": "00:13:42.090", + "speaker": "Alban", + "body": "experimented this in some of our\nPodcasting Q&A videos is" + }, + { + "startTime": 822.09, + "startTimeFormatted": "00:13:42.090", + "endTime": 825.93, + "endTimeFormatted": "00:13:45.930", + "speaker": "Alban", + "body": "rolling, I think three different\ncameras now all at once, and" + }, + { + "startTime": 825.93, + "startTimeFormatted": "00:13:45.930", + "endTime": 830.7, + "endTimeFormatted": "00:13:50.700", + "speaker": "Alban", + "body": "then we flipped between them.\nFor us to do the three of us in" + }, + { + "startTime": 830.7, + "startTimeFormatted": "00:13:50.700", + "endTime": 835.11, + "endTimeFormatted": "00:13:55.110", + "speaker": "Alban", + "body": "the studio would require us\nprobably to be shooting like" + }, + { + "startTime": 835.11, + "startTimeFormatted": "00:13:55.110", + "endTime": 839.91, + "endTimeFormatted": "00:13:59.910", + "speaker": "Alban", + "body": "four or five cameras at a time.\nAnd then the, you know, that" + }, + { + "startTime": 839.91, + "startTimeFormatted": "00:13:59.910", + "endTime": 843.33, + "endTimeFormatted": "00:14:03.330", + "speaker": "Alban", + "body": "really ramps up the amount of\nvideo editing that we're doing." + }, + { + "startTime": 843.51, + "startTimeFormatted": "00:14:03.510", + "endTime": 846.51, + "endTimeFormatted": "00:14:06.510", + "speaker": "Alban", + "body": "Okay, so we're buying a bunch of\ncameras. We're buying, we're" + }, + { + "startTime": 846.51, + "startTimeFormatted": "00:14:06.510", + "endTime": 849.96, + "endTimeFormatted": "00:14:09.960", + "speaker": "Alban", + "body": "doing more in video editing.\nWe're getting us all together in" + }, + { + "startTime": 849.96, + "startTimeFormatted": "00:14:09.960", + "endTime": 853.26, + "endTimeFormatted": "00:14:13.260", + "speaker": "Alban", + "body": "the studio in the most\ndangerous, dangerous COVID" + }, + { + "startTime": 853.26, + "startTimeFormatted": "00:14:13.260", + "endTime": 857.79, + "endTimeFormatted": "00:14:17.790", + "speaker": "Alban", + "body": "hotspot United States right now.\nSo three negatives, and all for" + }, + { + "startTime": 857.79, + "startTimeFormatted": "00:14:17.790", + "endTime": 861.09, + "endTimeFormatted": "00:14:21.090", + "speaker": "Alban", + "body": "the benefit of starting a new\nYouTube channel that isn't" + }, + { + "startTime": 861.12, + "startTimeFormatted": "00:14:21.120", + "endTime": 864.93, + "endTimeFormatted": "00:14:24.930", + "speaker": "Alban", + "body": "exactly in alignment with what\nwe want. So that's to kind of" + }, + { + "startTime": 864.93, + "startTimeFormatted": "00:14:24.930", + "endTime": 868.29, + "endTimeFormatted": "00:14:28.290", + "speaker": "Alban", + "body": "wrap it up quickly. What how\nwe're thinking about this. Maybe" + }, + { + "startTime": 868.29, + "startTimeFormatted": "00:14:28.290", + "endTime": 872.34, + "endTimeFormatted": "00:14:32.340", + "speaker": "Alban", + "body": "we come back, maybe not. But\nuntil next time, listen to us on" + }, + { + "startTime": 872.34, + "startTimeFormatted": "00:14:32.340", + "endTime": 874.71, + "endTimeFormatted": "00:14:34.710", + "speaker": "Alban", + "body": "our RSS backed podcast." + }, + { + "startTime": 875.099, + "startTimeFormatted": "00:14:35.099", + "endTime": 878.669, + "endTimeFormatted": "00:14:38.669", + "speaker": "Travis", + "body": "Yes, we are definitely\nnot going anywhere. You'll just" + }, + { + "startTime": 878.669, + "startTimeFormatted": "00:14:38.669", + "endTime": 881.399, + "endTimeFormatted": "00:14:41.399", + "speaker": "Travis", + "body": "need to listen to us anywhere\nexcept for Spotify will be." + }, + { + "startTime": 882.42, + "startTimeFormatted": "00:14:42.420", + "endTime": 885.27, + "endTimeFormatted": "00:14:45.270", + "speaker": "Alban", + "body": "This is basically Apple\npodcasts and indie apps" + }, + { + "startTime": 885.27, + "startTimeFormatted": "00:14:45.270", + "endTime": 888.27, + "endTimeFormatted": "00:14:48.270", + "speaker": "Alban", + "body": "exclusive now. Yeah, I would say\nso. I would say so." + }, + { + "startTime": 888.569, + "startTimeFormatted": "00:14:48.569", + "endTime": 890.849, + "endTimeFormatted": "00:14:50.849", + "speaker": "Kevin", + "body": "Yeah. I think it's an\ninteresting point that you" + }, + { + "startTime": 890.849, + "startTimeFormatted": "00:14:50.849", + "endTime": 893.339, + "endTimeFormatted": "00:14:53.339", + "speaker": "Kevin", + "body": "talked about when you talk about\nyour interview with Tom Webster" + }, + { + "startTime": 893.339, + "startTimeFormatted": "00:14:53.339", + "endTime": 896.219, + "endTimeFormatted": "00:14:56.219", + "speaker": "Kevin", + "body": "and he's saying that one in five\npodcasts are roughly 20% of" + }, + { + "startTime": 896.249, + "startTimeFormatted": "00:14:56.249", + "endTime": 899.969, + "endTimeFormatted": "00:14:59.969", + "speaker": "Kevin", + "body": "people listening the podcast in\nYouTube, and I can't help it" + }, + { + "startTime": 899.999, + "startTimeFormatted": "00:14:59.999", + "endTime": 905.399, + "endTimeFormatted": "00:15:05.399", + "speaker": "Kevin", + "body": "think that that is it just don't\nthink that there's a stat that" + }, + { + "startTime": 905.399, + "startTimeFormatted": "00:15:05.399", + "endTime": 910.259, + "endTimeFormatted": "00:15:10.259", + "speaker": "Kevin", + "body": "we should just take without some\nadditional thought, right? Like" + }, + { + "startTime": 910.619, + "startTimeFormatted": "00:15:10.619", + "endTime": 912.539, + "endTimeFormatted": "00:15:12.539", + "speaker": "Kevin", + "body": "listening to a podcast and\nYouTube is a different" + }, + { + "startTime": 912.539, + "startTimeFormatted": "00:15:12.539", + "endTime": 915.989, + "endTimeFormatted": "00:15:15.989", + "speaker": "Kevin", + "body": "experience than what a lot of us\nwho produce podcasts are in the" + }, + { + "startTime": 915.989, + "startTimeFormatted": "00:15:15.989", + "endTime": 918.089, + "endTimeFormatted": "00:15:18.089", + "speaker": "Kevin", + "body": "podcasting space probably think\nabout when we think about" + }, + { + "startTime": 918.119, + "startTimeFormatted": "00:15:18.119", + "endTime": 921.329, + "endTimeFormatted": "00:15:21.329", + "speaker": "Kevin", + "body": "podcasting, like the benefits in\nthe beauty of podcasting is it's" + }, + { + "startTime": 921.329, + "startTimeFormatted": "00:15:21.329", + "endTime": 923.909, + "endTimeFormatted": "00:15:23.909", + "speaker": "Kevin", + "body": "it's passive, it's something\nthat you can do not only on" + }, + { + "startTime": 923.909, + "startTimeFormatted": "00:15:23.909", + "endTime": 926.069, + "endTimeFormatted": "00:15:26.069", + "speaker": "Kevin", + "body": "demand, but at your convenience\nwhile you're doing other things" + }, + { + "startTime": 926.069, + "startTimeFormatted": "00:15:26.069", + "endTime": 927.899, + "endTimeFormatted": "00:15:27.899", + "speaker": "Kevin", + "body": "while you're doing housework\nwhile you're exercising, while" + }, + { + "startTime": 927.899, + "startTimeFormatted": "00:15:27.899", + "endTime": 930.329, + "endTimeFormatted": "00:15:30.329", + "speaker": "Kevin", + "body": "you're at work while you're\ndriving a car, you the YouTube" + }, + { + "startTime": 930.329, + "startTimeFormatted": "00:15:30.329", + "endTime": 934.229, + "endTimeFormatted": "00:15:34.229", + "speaker": "Kevin", + "body": "experience is different than\nthat. And so while the YouTube" + }, + { + "startTime": 934.229, + "startTimeFormatted": "00:15:34.229", + "endTime": 937.199, + "endTimeFormatted": "00:15:37.199", + "speaker": "Kevin", + "body": "ecosystem is huge, and it might\nbe a lot more mainstream in" + }, + { + "startTime": 937.199, + "startTimeFormatted": "00:15:37.199", + "endTime": 939.239, + "endTimeFormatted": "00:15:39.239", + "speaker": "Kevin", + "body": "terms of the number of people\nwho engage in that space, and" + }, + { + "startTime": 939.239, + "startTimeFormatted": "00:15:39.239", + "endTime": 941.819, + "endTimeFormatted": "00:15:41.819", + "speaker": "Kevin", + "body": "then at some point, click on\nsomething that is calling itself" + }, + { + "startTime": 941.819, + "startTimeFormatted": "00:15:41.819", + "endTime": 945.929, + "endTimeFormatted": "00:15:45.929", + "speaker": "Kevin", + "body": "a podcast, it's, it might just\nbe an exposure thing, it might" + }, + { + "startTime": 945.929, + "startTimeFormatted": "00:15:45.929", + "endTime": 947.849, + "endTimeFormatted": "00:15:47.849", + "speaker": "Kevin", + "body": "just be the size of the\necosystem thing, it might not" + }, + { + "startTime": 947.849, + "startTimeFormatted": "00:15:47.849", + "endTime": 952.049, + "endTimeFormatted": "00:15:52.049", + "speaker": "Kevin", + "body": "necessarily be what we would\nconsider a podcast and all the" + }, + { + "startTime": 952.049, + "startTimeFormatted": "00:15:52.049", + "endTime": 953.939, + "endTimeFormatted": "00:15:53.939", + "speaker": "Kevin", + "body": "great benefits that go along\nwith podcasting. And I don't" + }, + { + "startTime": 953.939, + "startTimeFormatted": "00:15:53.939", + "endTime": 956.789, + "endTimeFormatted": "00:15:56.789", + "speaker": "Kevin", + "body": "want to get into the details of\nis it does it really have an RSS" + }, + { + "startTime": 956.789, + "startTimeFormatted": "00:15:56.789", + "endTime": 958.439, + "endTimeFormatted": "00:15:58.439", + "speaker": "Kevin", + "body": "feed and all that stuff, that's\nnot really what I'm talking" + }, + { + "startTime": 958.439, + "startTimeFormatted": "00:15:58.439", + "endTime": 960.659, + "endTimeFormatted": "00:16:00.659", + "speaker": "Kevin", + "body": "about. I'm just kind of talking\nabout the size of the medium and" + }, + { + "startTime": 960.659, + "startTimeFormatted": "00:16:00.659", + "endTime": 962.999, + "endTimeFormatted": "00:16:02.999", + "speaker": "Kevin", + "body": "the number of people who at some\npoint during their normal day," + }, + { + "startTime": 963.209, + "startTimeFormatted": "00:16:03.209", + "endTime": 965.789, + "endTimeFormatted": "00:16:05.789", + "speaker": "Kevin", + "body": "flip open YouTube, and might\nclick on something that is" + }, + { + "startTime": 965.789, + "startTimeFormatted": "00:16:05.789", + "endTime": 971.129, + "endTimeFormatted": "00:16:11.129", + "speaker": "Kevin", + "body": "calling itself a podcast. So\nthat being said, YouTube is a" + }, + { + "startTime": 971.159, + "startTimeFormatted": "00:16:11.159", + "endTime": 973.769, + "endTimeFormatted": "00:16:13.769", + "speaker": "Kevin", + "body": "fine place for you to distribute\ncontent and being creator. But" + }, + { + "startTime": 973.769, + "startTimeFormatted": "00:16:13.769", + "endTime": 976.289, + "endTimeFormatted": "00:16:16.289", + "speaker": "Kevin", + "body": "hopefully, there's some\ntakeaways from what we've" + }, + { + "startTime": 976.289, + "startTimeFormatted": "00:16:16.289", + "endTime": 978.719, + "endTimeFormatted": "00:16:18.719", + "speaker": "Kevin", + "body": "experienced over the past year,\npressing into the YouTube Space" + }, + { + "startTime": 978.719, + "startTimeFormatted": "00:16:18.719", + "endTime": 982.439, + "endTimeFormatted": "00:16:22.439", + "speaker": "Kevin", + "body": "a little bit in terms of putting\na podcast onto YouTube, there's" + }, + { + "startTime": 982.439, + "startTimeFormatted": "00:16:22.439", + "endTime": 985.829, + "endTimeFormatted": "00:16:25.829", + "speaker": "Kevin", + "body": "a lot more that goes into it\nthan just recording a zoom call," + }, + { + "startTime": 985.949, + "startTimeFormatted": "00:16:25.949", + "endTime": 988.109, + "endTimeFormatted": "00:16:28.109", + "speaker": "Kevin", + "body": "and then throwing it up there.\nIf you really want to succeed," + }, + { + "startTime": 988.469, + "startTimeFormatted": "00:16:28.469", + "endTime": 990.059, + "endTimeFormatted": "00:16:30.059", + "speaker": "Kevin", + "body": "you have to understand the\nalgorithm, you have to" + }, + { + "startTime": 990.059, + "startTimeFormatted": "00:16:30.059", + "endTime": 992.189, + "endTimeFormatted": "00:16:32.189", + "speaker": "Kevin", + "body": "understand how the medium works,\nyou have to understand what type" + }, + { + "startTime": 992.189, + "startTimeFormatted": "00:16:32.189", + "endTime": 995.249, + "endTimeFormatted": "00:16:35.249", + "speaker": "Kevin", + "body": "of content works there is, this\nis a larger level of commitment." + }, + { + "startTime": 995.399, + "startTimeFormatted": "00:16:35.399", + "endTime": 998.189, + "endTimeFormatted": "00:16:38.189", + "speaker": "Kevin", + "body": "And you might find a huge\naudience and huge following" + }, + { + "startTime": 998.189, + "startTimeFormatted": "00:16:38.189", + "endTime": 1003.259, + "endTimeFormatted": "00:16:43.259", + "speaker": "Kevin", + "body": "there. But it's probably not\ngoing to be it's not an" + }, + { + "startTime": 1003.259, + "startTimeFormatted": "00:16:43.259", + "endTime": 1005.269, + "endTimeFormatted": "00:16:45.269", + "speaker": "Kevin", + "body": "overnight success. It is a lot\nof work. And it is very" + }, + { + "startTime": 1005.269, + "startTimeFormatted": "00:16:45.269", + "endTime": 1007.849, + "endTimeFormatted": "00:16:47.849", + "speaker": "Kevin", + "body": "different than audio only\npodcasting. So as we continue to" + }, + { + "startTime": 1007.849, + "startTimeFormatted": "00:16:47.849", + "endTime": 1012.559, + "endTimeFormatted": "00:16:52.559", + "speaker": "Kevin", + "body": "unpack, and learn things about\nhow to use YouTube, or other" + }, + { + "startTime": 1012.559, + "startTimeFormatted": "00:16:52.559", + "endTime": 1015.649, + "endTimeFormatted": "00:16:55.649", + "speaker": "Kevin", + "body": "channels to grow your main\npodcast, your audio only" + }, + { + "startTime": 1015.649, + "startTimeFormatted": "00:16:55.649", + "endTime": 1018.379, + "endTimeFormatted": "00:16:58.379", + "speaker": "Kevin", + "body": "podcast, it's distributed\nthrough RSS, we will continue to" + }, + { + "startTime": 1018.379, + "startTimeFormatted": "00:16:58.379", + "endTime": 1020.179, + "endTimeFormatted": "00:17:00.179", + "speaker": "Kevin", + "body": "share those learnings with you\nand hopefully make you a better" + }, + { + "startTime": 1020.179, + "startTimeFormatted": "00:17:00.179", + "endTime": 1023.719, + "endTimeFormatted": "00:17:03.719", + "speaker": "Kevin", + "body": "podcaster. But this is where we\nare today. And the decisions" + }, + { + "startTime": 1023.719, + "startTimeFormatted": "00:17:03.719", + "endTime": 1027.649, + "endTimeFormatted": "00:17:07.649", + "speaker": "Kevin", + "body": "we've made. So this podcast will\nnot be on YouTube, and not in" + }, + { + "startTime": 1027.649, + "startTimeFormatted": "00:17:07.649", + "endTime": 1031.639, + "endTimeFormatted": "00:17:11.639", + "speaker": "Kevin", + "body": "video form. And as we learn more\nand grow more, we'll share all" + }, + { + "startTime": 1031.639, + "startTimeFormatted": "00:17:11.639", + "endTime": 1032.179, + "endTimeFormatted": "00:17:12.179", + "speaker": "Kevin", + "body": "our learnings with" + }, + { + "startTime": 1035.42, + "startTimeFormatted": "00:17:15.420", + "endTime": 1037.61, + "endTimeFormatted": "00:17:17.610", + "speaker": "Travis", + "body": "so if you've been a\nBuzzcast listener for any length" + }, + { + "startTime": 1037.61, + "startTimeFormatted": "00:17:17.610", + "endTime": 1041.9, + "endTimeFormatted": "00:17:21.900", + "speaker": "Travis", + "body": "of time, you know, we're big\nfans of the podcast index and" + }, + { + "startTime": 1041.9, + "startTimeFormatted": "00:17:21.900", + "endTime": 1045.08, + "endTimeFormatted": "00:17:25.080", + "speaker": "Travis", + "body": "podcasting 2.0, that entire\ngroup, that entire working group" + }, + { + "startTime": 1045.38, + "startTimeFormatted": "00:17:25.380", + "endTime": 1049.28, + "endTimeFormatted": "00:17:29.280", + "speaker": "Travis", + "body": "of people dedicating themselves\nto improving the open podcast" + }, + { + "startTime": 1049.28, + "startTimeFormatted": "00:17:29.280", + "endTime": 1053, + "endTimeFormatted": "00:17:33.000", + "speaker": "Travis", + "body": "ecosystem, and creating really\nfun new features that allow you" + }, + { + "startTime": 1053, + "startTimeFormatted": "00:17:33.000", + "endTime": 1056.42, + "endTimeFormatted": "00:17:36.420", + "speaker": "Travis", + "body": "as a creator, to make awesome\ncontent and help your listeners" + }, + { + "startTime": 1056.69, + "startTimeFormatted": "00:17:36.690", + "endTime": 1060.35, + "endTimeFormatted": "00:17:40.350", + "speaker": "Travis", + "body": "really engage with your show in\nsome really unique ways. Kevin" + }, + { + "startTime": 1060.35, + "startTimeFormatted": "00:17:40.350", + "endTime": 1064.07, + "endTimeFormatted": "00:17:44.070", + "speaker": "Travis", + "body": "and Tom had an opportunity to\nsit down with Dave Jones, who is" + }, + { + "startTime": 1064.07, + "startTimeFormatted": "00:17:44.070", + "endTime": 1067.31, + "endTimeFormatted": "00:17:47.310", + "speaker": "Travis", + "body": "working on the podcast index and\npodcasting 2.0 to talk about a" + }, + { + "startTime": 1067.31, + "startTimeFormatted": "00:17:47.310", + "endTime": 1072.17, + "endTimeFormatted": "00:17:52.170", + "speaker": "Travis", + "body": "new feature that Buzzsprout is\nnow supporting, and also tease" + }, + { + "startTime": 1072.17, + "startTimeFormatted": "00:17:52.170", + "endTime": 1074.84, + "endTimeFormatted": "00:17:54.840", + "speaker": "Travis", + "body": "out some fun new things that\nthey have coming down the" + }, + { + "startTime": 1074.84, + "startTimeFormatted": "00:17:54.840", + "endTime": 1077.96, + "endTimeFormatted": "00:17:57.960", + "speaker": "Travis", + "body": "pipeline. So here's that\nconversation between Kevin Tom" + }, + { + "startTime": 1078.17, + "startTimeFormatted": "00:17:58.170", + "endTime": 1079.01, + "endTimeFormatted": "00:17:59.010", + "speaker": "Travis", + "body": "and Dave Jones." + }, + { + "startTime": 1079.31, + "startTimeFormatted": "00:17:59.310", + "endTime": 1081.59, + "endTimeFormatted": "00:18:01.590", + "speaker": "Tom", + "body": "This is Tom Rossi,\ntechnical co founder of" + }, + { + "startTime": 1081.59, + "startTimeFormatted": "00:18:01.590", + "endTime": 1086.99, + "endTimeFormatted": "00:18:06.990", + "speaker": "Tom", + "body": "Buzzsprout. And I am glad to be\njoined by Dave Jones, one of the" + }, + { + "startTime": 1086.99, + "startTimeFormatted": "00:18:06.990", + "endTime": 1090.11, + "endTimeFormatted": "00:18:10.110", + "speaker": "Tom", + "body": "two guys running the podcast\nindex, Dave Jones and Adam curry" + }, + { + "startTime": 1090.11, + "startTimeFormatted": "00:18:10.110", + "endTime": 1093.86, + "endTimeFormatted": "00:18:13.860", + "speaker": "Tom", + "body": "have been doing amazing work\nwith the podcast index. Dave," + }, + { + "startTime": 1093.89, + "startTimeFormatted": "00:18:13.890", + "endTime": 1097.91, + "endTimeFormatted": "00:18:17.910", + "speaker": "Tom", + "body": "welcome to the show. Thanks for\nall that you're doing. Tell us a" + }, + { + "startTime": 1097.91, + "startTimeFormatted": "00:18:17.910", + "endTime": 1100.64, + "endTimeFormatted": "00:18:20.640", + "speaker": "Tom", + "body": "little bit about the podcast\nindex and what you guys are" + }, + { + "startTime": 1100.64, + "startTimeFormatted": "00:18:20.640", + "endTime": 1101.27, + "endTimeFormatted": "00:18:21.270", + "speaker": "Tom", + "body": "doing over there." + }, + { + "startTime": 1101.66, + "startTimeFormatted": "00:18:21.660", + "endTime": 1103.64, + "endTimeFormatted": "00:18:23.640", + "speaker": "Dave", + "body": "Let's see, what are we\ndoing at the podcast? And what" + }, + { + "startTime": 1103.64, + "startTimeFormatted": "00:18:23.640", + "endTime": 1104.84, + "endTimeFormatted": "00:18:24.840", + "speaker": "Dave", + "body": "are we not doing at podcast?" + }, + { + "startTime": 1105.44, + "startTimeFormatted": "00:18:25.440", + "endTime": 1109.82, + "endTimeFormatted": "00:18:29.820", + "speaker": "Kevin", + "body": "So Dave, the podcasting\nto auto project is like it" + }, + { + "startTime": 1109.82, + "startTimeFormatted": "00:18:29.820", + "endTime": 1112.7, + "endTimeFormatted": "00:18:32.700", + "speaker": "Kevin", + "body": "incorporates the podcast index\nand the podcasting namespace" + }, + { + "startTime": 1112.7, + "startTimeFormatted": "00:18:32.700", + "endTime": 1114.65, + "endTimeFormatted": "00:18:34.650", + "speaker": "Kevin", + "body": "right and a whole bunch of\nthings. Can you tell us like" + }, + { + "startTime": 1114.65, + "startTimeFormatted": "00:18:34.650", + "endTime": 1116.69, + "endTimeFormatted": "00:18:36.690", + "speaker": "Kevin", + "body": "what's the difference? What are\nthe two functions that those" + }, + { + "startTime": 1116.72, + "startTimeFormatted": "00:18:36.720", + "endTime": 1118.88, + "endTimeFormatted": "00:18:38.880", + "speaker": "Kevin", + "body": "those two things sort of where\nthey come together? How does it" + }, + { + "startTime": 1118.88, + "startTimeFormatted": "00:18:38.880", + "endTime": 1119.3, + "endTimeFormatted": "00:18:39.300", + "speaker": "Kevin", + "body": "all work?" + }, + { + "startTime": 1119.45, + "startTimeFormatted": "00:18:39.450", + "endTime": 1122.48, + "endTimeFormatted": "00:18:42.480", + "speaker": "Dave", + "body": "Yeah, we get this question\na lot. What the heck are y'all" + }, + { + "startTime": 1122.54, + "startTimeFormatted": "00:18:42.540", + "endTime": 1125.63, + "endTimeFormatted": "00:18:45.630", + "speaker": "Dave", + "body": "doing with all these various\nprojects? And then what did they" + }, + { + "startTime": 1125.63, + "startTimeFormatted": "00:18:45.630", + "endTime": 1131.51, + "endTimeFormatted": "00:18:51.510", + "speaker": "Dave", + "body": "even mean? And so podcasting 2.0\nis the name of our podcast, but" + }, + { + "startTime": 1131.51, + "startTimeFormatted": "00:18:51.510", + "endTime": 1134.36, + "endTimeFormatted": "00:18:54.360", + "speaker": "Dave", + "body": "it's also the name of the\nbroader movement of trying to" + }, + { + "startTime": 1134.36, + "startTimeFormatted": "00:18:54.360", + "endTime": 1137.27, + "endTimeFormatted": "00:18:57.270", + "speaker": "Dave", + "body": "preserve, protect and extend the\nopen RSS ecosystem," + }, + { + "startTime": 1137.3, + "startTimeFormatted": "00:18:57.300", + "endTime": 1139.01, + "endTimeFormatted": "00:18:59.010", + "speaker": "Kevin", + "body": "right. When we say this,\nthis is a little bit different" + }, + { + "startTime": 1139.01, + "startTimeFormatted": "00:18:59.010", + "endTime": 1141.68, + "endTimeFormatted": "00:19:01.680", + "speaker": "Kevin", + "body": "than what like fireside chat\nintroduced it podcast movement," + }, + { + "startTime": 1141.68, + "startTimeFormatted": "00:19:01.680", + "endTime": 1144.11, + "endTimeFormatted": "00:19:04.110", + "speaker": "Kevin", + "body": "is podcasting to Dotto, right.\nYeah," + }, + { + "startTime": 1144.26, + "startTimeFormatted": "00:19:04.260", + "endTime": 1147.68, + "endTimeFormatted": "00:19:07.680", + "speaker": "Dave", + "body": "I gotta hope it is\ncompletely different. Yeah, but" + }, + { + "startTime": 1147.68, + "startTimeFormatted": "00:19:07.680", + "endTime": 1153.29, + "endTimeFormatted": "00:19:13.290", + "speaker": "Dave", + "body": "podcasting. 2.0 is just an open\nsource, volunteer movement of" + }, + { + "startTime": 1153.29, + "startTimeFormatted": "00:19:13.290", + "endTime": 1157.13, + "endTimeFormatted": "00:19:17.130", + "speaker": "Dave", + "body": "people coming up with ideas and\nlaunching projects to help" + }, + { + "startTime": 1157.37, + "startTimeFormatted": "00:19:17.370", + "endTime": 1161.75, + "endTimeFormatted": "00:19:21.750", + "speaker": "Dave", + "body": "preserve the open RSS ecosystem\nof podcasting, and podcasting" + }, + { + "startTime": 1161.78, + "startTimeFormatted": "00:19:21.780", + "endTime": 1164.54, + "endTimeFormatted": "00:19:24.540", + "speaker": "Dave", + "body": "inside the app. So pod inside\npodcasting 2.0. But that would" + }, + { + "startTime": 1164.54, + "startTimeFormatted": "00:19:24.540", + "endTime": 1166.97, + "endTimeFormatted": "00:19:26.970", + "speaker": "Dave", + "body": "be the podcast namespace where\nall these new features and tags" + }, + { + "startTime": 1166.97, + "startTimeFormatted": "00:19:26.970", + "endTime": 1170.03, + "endTimeFormatted": "00:19:30.030", + "speaker": "Dave", + "body": "are coming from. Also within\npodcasting, 2.0 would be" + }, + { + "startTime": 1170.03, + "startTimeFormatted": "00:19:30.030", + "endTime": 1173.72, + "endTimeFormatted": "00:19:33.720", + "speaker": "Dave", + "body": "something like pod ping, which\nallows hosts to rapidly notified" + }, + { + "startTime": 1173.84, + "startTimeFormatted": "00:19:33.840", + "endTime": 1176.93, + "endTimeFormatted": "00:19:36.930", + "speaker": "Dave", + "body": "apps and aggregators of new\nepisodes, things like that." + }, + { + "startTime": 1176.96, + "startTimeFormatted": "00:19:36.960", + "endTime": 1180.23, + "endTimeFormatted": "00:19:40.230", + "speaker": "Dave", + "body": "That's all in the podcasting 2.0\nside of things. The podcast" + }, + { + "startTime": 1180.26, + "startTimeFormatted": "00:19:40.260", + "endTime": 1184.85, + "endTimeFormatted": "00:19:44.850", + "speaker": "Dave", + "body": "index is the thing that we\ncreated at the very beginning in" + }, + { + "startTime": 1184.85, + "startTimeFormatted": "00:19:44.850", + "endTime": 1188.15, + "endTimeFormatted": "00:19:48.150", + "speaker": "Dave", + "body": "order to facilitate all these\nother things. So the podcast" + }, + { + "startTime": 1188.15, + "startTimeFormatted": "00:19:48.150", + "endTime": 1191.39, + "endTimeFormatted": "00:19:51.390", + "speaker": "Dave", + "body": "index is the largest directory\nof podcasts on the internet." + }, + { + "startTime": 1191.39, + "startTimeFormatted": "00:19:51.390", + "endTime": 1195.83, + "endTimeFormatted": "00:19:55.830", + "speaker": "Dave", + "body": "It's were like 4.1 million\npodcasts right now feeds. We are" + }, + { + "startTime": 1195.83, + "startTimeFormatted": "00:19:55.830", + "endTime": 1201.71, + "endTimeFormatted": "00:20:01.710", + "speaker": "Dave", + "body": "a directory and also an API for\npodcast app. to hook in to get" + }, + { + "startTime": 1201.71, + "startTimeFormatted": "00:20:01.710", + "endTime": 1204.29, + "endTimeFormatted": "00:20:04.290", + "speaker": "Dave", + "body": "their podcast data from,\nbasically, they just start" + }, + { + "startTime": 1204.29, + "startTimeFormatted": "00:20:04.290", + "endTime": 1208.22, + "endTimeFormatted": "00:20:08.220", + "speaker": "Dave", + "body": "coding an app, they plug into us\nand they get all their data in," + }, + { + "startTime": 1208.34, + "startTimeFormatted": "00:20:08.340", + "endTime": 1212.21, + "endTimeFormatted": "00:20:12.210", + "speaker": "Dave", + "body": "it saves them a world of hurt on\nthat side of things. So those," + }, + { + "startTime": 1212.45, + "startTimeFormatted": "00:20:12.450", + "endTime": 1216.47, + "endTimeFormatted": "00:20:16.470", + "speaker": "Dave", + "body": "the podcasts index is the APN\ndirectory, but geisen 2.0 is all" + }, + { + "startTime": 1216.47, + "startTimeFormatted": "00:20:16.470", + "endTime": 1218.6, + "endTimeFormatted": "00:20:18.600", + "speaker": "Dave", + "body": "the features and community\nmovement." + }, + { + "startTime": 1219.23, + "startTimeFormatted": "00:20:19.230", + "endTime": 1222.35, + "endTimeFormatted": "00:20:22.350", + "speaker": "Kevin", + "body": "Right, and then huge\nopportunity with the index is" + }, + { + "startTime": 1222.35, + "startTimeFormatted": "00:20:22.350", + "endTime": 1224.93, + "endTimeFormatted": "00:20:24.930", + "speaker": "Kevin", + "body": "that we're not tied in or\nreliant on Apple anymore. So" + }, + { + "startTime": 1224.93, + "startTimeFormatted": "00:20:24.930", + "endTime": 1226.91, + "endTimeFormatted": "00:20:26.910", + "speaker": "Kevin", + "body": "like over the past two or three\nmonths, Apple's directory has" + }, + { + "startTime": 1226.91, + "startTimeFormatted": "00:20:26.910", + "endTime": 1229.61, + "endTimeFormatted": "00:20:29.610", + "speaker": "Kevin", + "body": "been having a ton of problems.\nNot to mention even before that," + }, + { + "startTime": 1229.61, + "startTimeFormatted": "00:20:29.610", + "endTime": 1231.77, + "endTimeFormatted": "00:20:31.770", + "speaker": "Kevin", + "body": "when it was working, well, it\nwould take you probably a" + }, + { + "startTime": 1231.77, + "startTimeFormatted": "00:20:31.770", + "endTime": 1234.77, + "endTimeFormatted": "00:20:34.770", + "speaker": "Kevin", + "body": "minimum of two or three days up\nto a couple weeks to even get in" + }, + { + "startTime": 1234.98, + "startTimeFormatted": "00:20:34.980", + "endTime": 1237.71, + "endTimeFormatted": "00:20:37.710", + "speaker": "Kevin", + "body": "Apple podcast directory, then\nwhen you publish a new episode," + }, + { + "startTime": 1237.71, + "startTimeFormatted": "00:20:37.710", + "endTime": 1240.95, + "endTimeFormatted": "00:20:40.950", + "speaker": "Kevin", + "body": "it might be 24 hours or more\nbefore that new episode gets" + }, + { + "startTime": 1240.95, + "startTimeFormatted": "00:20:40.950", + "endTime": 1243.74, + "endTimeFormatted": "00:20:43.740", + "speaker": "Kevin", + "body": "released in search showing up on\nany of the apps that rely on" + }, + { + "startTime": 1243.74, + "startTimeFormatted": "00:20:43.740", + "endTime": 1246.95, + "endTimeFormatted": "00:20:46.950", + "speaker": "Kevin", + "body": "that directory. And the index\nsolves all that along with other" + }, + { + "startTime": 1246.95, + "startTimeFormatted": "00:20:46.950", + "endTime": 1249.44, + "endTimeFormatted": "00:20:49.440", + "speaker": "Kevin", + "body": "technologies that you're\ndeveloping as well like the pod" + }, + { + "startTime": 1249.44, + "startTimeFormatted": "00:20:49.440", + "endTime": 1250.46, + "endTimeFormatted": "00:20:50.460", + "speaker": "Kevin", + "body": "paying and everything else.\nRight." + }, + { + "startTime": 1250.52, + "startTimeFormatted": "00:20:50.520", + "endTime": 1253.52, + "endTimeFormatted": "00:20:53.520", + "speaker": "Dave", + "body": "Yeah, we started this\nwhole project with with the" + }, + { + "startTime": 1253.52, + "startTimeFormatted": "00:20:53.520", + "endTime": 1256.7, + "endTimeFormatted": "00:20:56.700", + "speaker": "Dave", + "body": "directory and the API with the\nidea that we wanted to take" + }, + { + "startTime": 1257.21, + "startTimeFormatted": "00:20:57.210", + "endTime": 1262.25, + "endTimeFormatted": "00:21:02.250", + "speaker": "Dave", + "body": "Apple Apple's directory away\nfrom being the center of the" + }, + { + "startTime": 1262.25, + "startTimeFormatted": "00:21:02.250", + "endTime": 1265.43, + "endTimeFormatted": "00:21:05.430", + "speaker": "Dave", + "body": "podcasting universe, which has\nbeen for, you know, 15 years at" + }, + { + "startTime": 1265.43, + "startTimeFormatted": "00:21:05.430", + "endTime": 1270.71, + "endTimeFormatted": "00:21:10.710", + "speaker": "Dave", + "body": "least. And the idea there was\nthat, you know, no, no knock on" + }, + { + "startTime": 1270.71, + "startTimeFormatted": "00:21:10.710", + "endTime": 1273.32, + "endTimeFormatted": "00:21:13.320", + "speaker": "Dave", + "body": "Apple, I mean, they've been good\nstewards of podcasting, it's" + }, + { + "startTime": 1273.32, + "startTimeFormatted": "00:21:13.320", + "endTime": 1277.82, + "endTimeFormatted": "00:21:17.820", + "speaker": "Dave", + "body": "just that it doesn't make a lot\nof sense for an open" + }, + { + "startTime": 1278.6, + "startTimeFormatted": "00:21:18.600", + "endTime": 1283.55, + "endTimeFormatted": "00:21:23.550", + "speaker": "Dave", + "body": "specification, like podcasting,\nan open system that anybody can" + }, + { + "startTime": 1283.55, + "startTimeFormatted": "00:21:23.550", + "endTime": 1289.07, + "endTimeFormatted": "00:21:29.070", + "speaker": "Dave", + "body": "participate in, it does not make\na lot of sense for that. To be" + }, + { + "startTime": 1289.07, + "startTimeFormatted": "00:21:29.070", + "endTime": 1293.18, + "endTimeFormatted": "00:21:33.180", + "speaker": "Dave", + "body": "controlled by a single humongous\nentity like apple, I mean," + }, + { + "startTime": 1293.18, + "startTimeFormatted": "00:21:33.180", + "endTime": 1295.67, + "endTimeFormatted": "00:21:35.670", + "speaker": "Dave", + "body": "they're literally the biggest\ncompany in the world. And so" + }, + { + "startTime": 1295.67, + "startTimeFormatted": "00:21:35.670", + "endTime": 1297.89, + "endTimeFormatted": "00:21:37.890", + "speaker": "Dave", + "body": "it's sort of like you have this\nweird spectrum where you got" + }, + { + "startTime": 1297.89, + "startTimeFormatted": "00:21:37.890", + "endTime": 1301.82, + "endTimeFormatted": "00:21:41.820", + "speaker": "Dave", + "body": "podcasting, which is completely\nopen, I can hand write an RSS" + }, + { + "startTime": 1301.82, + "startTimeFormatted": "00:21:41.820", + "endTime": 1305.15, + "endTimeFormatted": "00:21:45.150", + "speaker": "Dave", + "body": "feed today, and get into the\ninbox and create a podcast. And" + }, + { + "startTime": 1305.18, + "startTimeFormatted": "00:21:45.180", + "endTime": 1308.78, + "endTimeFormatted": "00:21:48.780", + "speaker": "Dave", + "body": "I can do it from my computer in\nfive minutes. But then you have" + }, + { + "startTime": 1309.05, + "startTimeFormatted": "00:21:49.050", + "endTime": 1312.56, + "endTimeFormatted": "00:21:52.560", + "speaker": "Dave", + "body": "the directory where all the\npodcasts are found, his career" + }, + { + "startTime": 1312.59, + "startTimeFormatted": "00:21:52.590", + "endTime": 1316.22, + "endTimeFormatted": "00:21:56.220", + "speaker": "Dave", + "body": "is controlled by this huge\ncorporation. So it really just" + }, + { + "startTime": 1316.22, + "startTimeFormatted": "00:21:56.220", + "endTime": 1320.06, + "endTimeFormatted": "00:22:00.060", + "speaker": "Dave", + "body": "didn't didn't make a lot of\nsense, the goal there was create" + }, + { + "startTime": 1320.06, + "startTimeFormatted": "00:22:00.060", + "endTime": 1323.93, + "endTimeFormatted": "00:22:03.930", + "speaker": "Dave", + "body": "a directory that is completely\nopen, anybody can join it," + }, + { + "startTime": 1323.93, + "startTimeFormatted": "00:22:03.930", + "endTime": 1327.23, + "endTimeFormatted": "00:22:07.230", + "speaker": "Dave", + "body": "anybody can add to it, anybody\ncan put their podcast into it in" + }, + { + "startTime": 1327.41, + "startTimeFormatted": "00:22:07.410", + "endTime": 1332.06, + "endTimeFormatted": "00:22:12.060", + "speaker": "Dave", + "body": "15 seconds. And then the next\nstep, which is the which is the" + }, + { + "startTime": 1332.06, + "startTimeFormatted": "00:22:12.060", + "endTime": 1335.51, + "endTimeFormatted": "00:22:15.510", + "speaker": "Dave", + "body": "part that has to happen, make it\navailable for free, and" + }, + { + "startTime": 1335.51, + "startTimeFormatted": "00:22:15.510", + "endTime": 1338.69, + "endTimeFormatted": "00:22:18.690", + "speaker": "Dave", + "body": "everybody can download it, you\ncan download it our entire" + }, + { + "startTime": 1338.69, + "startTimeFormatted": "00:22:18.690", + "endTime": 1343.22, + "endTimeFormatted": "00:22:23.220", + "speaker": "Dave", + "body": "database right now from our From\nthe homepage of our website, and" + }, + { + "startTime": 1343.37, + "startTimeFormatted": "00:22:23.370", + "endTime": 1345.47, + "endTimeFormatted": "00:22:25.470", + "speaker": "Dave", + "body": "do whatever you want with it,\nyou can go create your own" + }, + { + "startTime": 1345.47, + "startTimeFormatted": "00:22:25.470", + "endTime": 1348.71, + "endTimeFormatted": "00:22:28.710", + "speaker": "Dave", + "body": "directory or your own API or\nyour own apps. So if it's not" + }, + { + "startTime": 1348.71, + "startTimeFormatted": "00:22:28.710", + "endTime": 1352.07, + "endTimeFormatted": "00:22:32.070", + "speaker": "Dave", + "body": "free, then it doesn't solve any\nof the problem. And if you have" + }, + { + "startTime": 1352.07, + "startTimeFormatted": "00:22:32.070", + "endTime": 1354.35, + "endTimeFormatted": "00:22:34.350", + "speaker": "Dave", + "body": "to have us, it still doesn't\nsolve the problem. You need to" + }, + { + "startTime": 1354.35, + "startTimeFormatted": "00:22:34.350", + "endTime": 1357.11, + "endTimeFormatted": "00:22:37.110", + "speaker": "Dave", + "body": "be we need to redistribute it.\nAnd so that's what we that was" + }, + { + "startTime": 1357.11, + "startTimeFormatted": "00:22:37.110", + "endTime": 1358.04, + "endTimeFormatted": "00:22:38.040", + "speaker": "Dave", + "body": "the Gulf in the beginning." + }, + { + "startTime": 1358.46, + "startTimeFormatted": "00:22:38.460", + "endTime": 1360.89, + "endTimeFormatted": "00:22:40.890", + "speaker": "Tom", + "body": "One of the features that\nI'm most excited about out of" + }, + { + "startTime": 1360.89, + "startTimeFormatted": "00:22:40.890", + "endTime": 1364.19, + "endTimeFormatted": "00:22:44.190", + "speaker": "Tom", + "body": "podcasting 2.0 is pod ping, can\nyou tell us a little bit about" + }, + { + "startTime": 1364.19, + "startTimeFormatted": "00:22:44.190", + "endTime": 1364.46, + "endTimeFormatted": "00:22:44.460", + "speaker": "Tom", + "body": "that?" + }, + { + "startTime": 1364.52, + "startTimeFormatted": "00:22:44.520", + "endTime": 1367.43, + "endTimeFormatted": "00:22:47.430", + "speaker": "Dave", + "body": "Yeah, sure. podcasting\nsuffers from the same thing that" + }, + { + "startTime": 1367.43, + "startTimeFormatted": "00:22:47.430", + "endTime": 1372.77, + "endTimeFormatted": "00:22:52.770", + "speaker": "Dave", + "body": "all RSS based infrastructure\ndoes it, what you have is a" + }, + { + "startTime": 1372.77, + "startTimeFormatted": "00:22:52.770", + "endTime": 1375.89, + "endTimeFormatted": "00:22:55.890", + "speaker": "Dave", + "body": "system where you publish an\nepisode of whatever this is, or" + }, + { + "startTime": 1375.89, + "startTimeFormatted": "00:22:55.890", + "endTime": 1380.33, + "endTimeFormatted": "00:23:00.330", + "speaker": "Dave", + "body": "a blog post or anything, any bit\nof information, you publish that" + }, + { + "startTime": 1380.33, + "startTimeFormatted": "00:23:00.330", + "endTime": 1384.29, + "endTimeFormatted": "00:23:04.290", + "speaker": "Dave", + "body": "to an RSS feed, think of it like\na WordPress blog. So then the" + }, + { + "startTime": 1384.29, + "startTimeFormatted": "00:23:04.290", + "endTime": 1387.35, + "endTimeFormatted": "00:23:07.350", + "speaker": "Dave", + "body": "RSS feed, which is just a file\non a web server somewhere, it" + }, + { + "startTime": 1387.35, + "startTimeFormatted": "00:23:07.350", + "endTime": 1390.44, + "endTimeFormatted": "00:23:10.440", + "speaker": "Dave", + "body": "gets updated. How does the rest\nof the world know that you've" + }, + { + "startTime": 1390.44, + "startTimeFormatted": "00:23:10.440", + "endTime": 1393.65, + "endTimeFormatted": "00:23:13.650", + "speaker": "Dave", + "body": "just put a blog post up on your\nwebsite, they have to be" + }, + { + "startTime": 1393.65, + "startTimeFormatted": "00:23:13.650", + "endTime": 1397.58, + "endTimeFormatted": "00:23:17.580", + "speaker": "Dave", + "body": "notified, or they have to go and\ncheck in there's, there's the" + }, + { + "startTime": 1397.58, + "startTimeFormatted": "00:23:17.580", + "endTime": 1400.94, + "endTimeFormatted": "00:23:20.940", + "speaker": "Dave", + "body": "only two ways to get that\ninformation. So just think of it" + }, + { + "startTime": 1400.94, + "startTimeFormatted": "00:23:20.940", + "endTime": 1404.33, + "endTimeFormatted": "00:23:24.330", + "speaker": "Dave", + "body": "like, you know, clicking on a\nwebsite refresh button over and" + }, + { + "startTime": 1404.33, + "startTimeFormatted": "00:23:24.330", + "endTime": 1407.78, + "endTimeFormatted": "00:23:27.780", + "speaker": "Dave", + "body": "over and over just to see if\nsomething new pops up. That's" + }, + { + "startTime": 1407.78, + "startTimeFormatted": "00:23:27.780", + "endTime": 1411.44, + "endTimeFormatted": "00:23:31.440", + "speaker": "Dave", + "body": "essentially what all of these\ninfrastructures have to do," + }, + { + "startTime": 1411.44, + "startTimeFormatted": "00:23:31.440", + "endTime": 1414.02, + "endTimeFormatted": "00:23:34.020", + "speaker": "Dave", + "body": "whether it's podcasting or\nblogosphere, or any of these" + }, + { + "startTime": 1414.02, + "startTimeFormatted": "00:23:34.020", + "endTime": 1417.08, + "endTimeFormatted": "00:23:37.080", + "speaker": "Dave", + "body": "things. It's just what you\nresort to is just checking the" + }, + { + "startTime": 1417.08, + "startTimeFormatted": "00:23:37.080", + "endTime": 1418.28, + "endTimeFormatted": "00:23:38.280", + "speaker": "Dave", + "body": "website over and over and over." + }, + { + "startTime": 1418.55, + "startTimeFormatted": "00:23:38.550", + "endTime": 1420.62, + "endTimeFormatted": "00:23:40.620", + "speaker": "Tom", + "body": "And this is this is one of\nthe things that we see all the" + }, + { + "startTime": 1420.62, + "startTimeFormatted": "00:23:40.620", + "endTime": 1423.26, + "endTimeFormatted": "00:23:43.260", + "speaker": "Tom", + "body": "time, right, where we have\npodcasters, who will publish an" + }, + { + "startTime": 1423.26, + "startTimeFormatted": "00:23:43.260", + "endTime": 1426.95, + "endTimeFormatted": "00:23:46.950", + "speaker": "Tom", + "body": "episode. And then they're\nwondering, Well, where is it? I" + }, + { + "startTime": 1426.95, + "startTimeFormatted": "00:23:46.950", + "endTime": 1429.71, + "endTimeFormatted": "00:23:49.710", + "speaker": "Tom", + "body": "published it an hour ago? Why\ndon't I see it anywhere? Why" + }, + { + "startTime": 1429.71, + "startTimeFormatted": "00:23:49.710", + "endTime": 1432.44, + "endTimeFormatted": "00:23:52.440", + "speaker": "Tom", + "body": "don't I see it on Apple? Why\ndon't I see it on Spotify? And I" + }, + { + "startTime": 1432.44, + "startTimeFormatted": "00:23:52.440", + "endTime": 1436.19, + "endTimeFormatted": "00:23:56.190", + "speaker": "Tom", + "body": "think what what's exciting about\npod pain is this is a solution" + }, + { + "startTime": 1436.19, + "startTimeFormatted": "00:23:56.190", + "endTime": 1440.54, + "endTimeFormatted": "00:24:00.540", + "speaker": "Tom", + "body": "to that problem, which is if you\nsubscribe to a feed with with" + }, + { + "startTime": 1440.54, + "startTimeFormatted": "00:24:00.540", + "endTime": 1443.78, + "endTimeFormatted": "00:24:03.780", + "speaker": "Tom", + "body": "pod pain, you'll know whenever\nit gets updated. You'll know" + }, + { + "startTime": 1443.78, + "startTimeFormatted": "00:24:03.780", + "endTime": 1444.77, + "endTimeFormatted": "00:24:04.770", + "speaker": "Tom", + "body": "about it immediately." + }, + { + "startTime": 1445.13, + "startTimeFormatted": "00:24:05.130", + "endTime": 1448.85, + "endTimeFormatted": "00:24:08.850", + "speaker": "Dave", + "body": "Yeah, and that's a just a\nreversal of that whole thing of" + }, + { + "startTime": 1448.88, + "startTimeFormatted": "00:24:08.880", + "endTime": 1451.4, + "endTimeFormatted": "00:24:11.400", + "speaker": "Dave", + "body": "instead of checking over and\nover and over for new content." + }, + { + "startTime": 1451.91, + "startTimeFormatted": "00:24:11.910", + "endTime": 1455.12, + "endTimeFormatted": "00:24:15.120", + "speaker": "Dave", + "body": "We tell you, you know, the\npublisher tells you when there's" + }, + { + "startTime": 1455.12, + "startTimeFormatted": "00:24:15.120", + "endTime": 1455.66, + "endTimeFormatted": "00:24:15.660", + "speaker": "Dave", + "body": "content," + }, + { + "startTime": 1455.93, + "startTimeFormatted": "00:24:15.930", + "endTime": 1458.63, + "endTimeFormatted": "00:24:18.630", + "speaker": "Tom", + "body": "pod ping solves two\nproblems. One is the polling" + }, + { + "startTime": 1458.87, + "startTimeFormatted": "00:24:18.870", + "endTime": 1462.47, + "endTimeFormatted": "00:24:22.470", + "speaker": "Tom", + "body": "with RSS feeds. And then you\nalso have the problem of much of" + }, + { + "startTime": 1462.47, + "startTimeFormatted": "00:24:22.470", + "endTime": 1467.45, + "endTimeFormatted": "00:24:27.450", + "speaker": "Tom", + "body": "the web sub pub pub is built on\nGoogle, which isn't reliable. So" + }, + { + "startTime": 1467.45, + "startTimeFormatted": "00:24:27.450", + "endTime": 1470.09, + "endTimeFormatted": "00:24:30.090", + "speaker": "Tom", + "body": "pod ping does it in a reliable\nway. And so as I've talked to" + }, + { + "startTime": 1470.09, + "startTimeFormatted": "00:24:30.090", + "endTime": 1472.01, + "endTimeFormatted": "00:24:32.010", + "speaker": "Tom", + "body": "people about pod paying, and\nthey said, Well, don't we" + }, + { + "startTime": 1472.01, + "startTimeFormatted": "00:24:32.010", + "endTime": 1473.93, + "endTimeFormatted": "00:24:33.930", + "speaker": "Tom", + "body": "already have a solution for\nthis? Well, we don't have a" + }, + { + "startTime": 1473.93, + "startTimeFormatted": "00:24:33.930", + "endTime": 1477.26, + "endTimeFormatted": "00:24:37.260", + "speaker": "Tom", + "body": "reliable solution for this. And\nso that's why a lot of people" + }, + { + "startTime": 1477.26, + "startTimeFormatted": "00:24:37.260", + "endTime": 1480.92, + "endTimeFormatted": "00:24:40.920", + "speaker": "Tom", + "body": "just continue to pull RSS feeds.\nSo really excited about the work" + }, + { + "startTime": 1480.92, + "startTimeFormatted": "00:24:40.920", + "endTime": 1484.73, + "endTimeFormatted": "00:24:44.730", + "speaker": "Tom", + "body": "that you did with with pod Ping.\nOne of the features of the" + }, + { + "startTime": 1484.76, + "startTimeFormatted": "00:24:44.760", + "endTime": 1487.49, + "endTimeFormatted": "00:24:47.490", + "speaker": "Tom", + "body": "podcast namespace that we've\njust implemented at Buzzsprout." + }, + { + "startTime": 1487.52, + "startTimeFormatted": "00:24:47.520", + "endTime": 1491.39, + "endTimeFormatted": "00:24:51.390", + "speaker": "Tom", + "body": "That I'm sure everyone would\nlove to hear why we did it. Is" + }, + { + "startTime": 1491.39, + "startTimeFormatted": "00:24:51.390", + "endTime": 1496.01, + "endTimeFormatted": "00:24:56.010", + "speaker": "Tom", + "body": "the gu ID, or the gu ID. How do\nyou say Dave gwit? Yeah, let's" + }, + { + "startTime": 1496.01, + "startTimeFormatted": "00:24:56.010", + "endTime": 1499.25, + "endTimeFormatted": "00:24:59.250", + "speaker": "Tom", + "body": "Duguid. Goo it sounds gross.\nLet's do good. There's no way" + }, + { + "startTime": 1499.25, + "startTimeFormatted": "00:24:59.250", + "endTime": 1502.22, + "endTimeFormatted": "00:25:02.220", + "speaker": "Tom", + "body": "around it that it's He's gonna\nsound gross. So but tell us" + }, + { + "startTime": 1502.64, + "startTimeFormatted": "00:25:02.640", + "endTime": 1506.6, + "endTimeFormatted": "00:25:06.600", + "speaker": "Tom", + "body": "what, what's the grid? And why\ndo you want podcasting companies" + }, + { + "startTime": 1506.6, + "startTimeFormatted": "00:25:06.600", + "endTime": 1509.57, + "endTimeFormatted": "00:25:09.570", + "speaker": "Tom", + "body": "like Buzzsprout and podcasters.\nto include this in their RSS" + }, + { + "startTime": 1509.57, + "startTimeFormatted": "00:25:09.570", + "endTime": 1509.87, + "endTimeFormatted": "00:25:09.870", + "speaker": "Tom", + "body": "feed," + }, + { + "startTime": 1510.26, + "startTimeFormatted": "00:25:10.260", + "endTime": 1515.33, + "endTimeFormatted": "00:25:15.330", + "speaker": "Dave", + "body": "a grid is a globally\nunique identifier, geo ID. It is" + }, + { + "startTime": 1515.36, + "startTimeFormatted": "00:25:15.360", + "endTime": 1520.28, + "endTimeFormatted": "00:25:20.280", + "speaker": "Dave", + "body": "a long number that uniquely\nidentifies a thing and object" + }, + { + "startTime": 1520.73, + "startTimeFormatted": "00:25:20.730", + "endTime": 1525.95, + "endTimeFormatted": "00:25:25.950", + "speaker": "Dave", + "body": "globally in the world. It's this\nthing is this number. And so" + }, + { + "startTime": 1526.01, + "startTimeFormatted": "00:25:26.010", + "endTime": 1529.97, + "endTimeFormatted": "00:25:29.970", + "speaker": "Dave", + "body": "that is a thing that Apple's\ndirectory has always had." + }, + { + "startTime": 1530.6, + "startTimeFormatted": "00:25:30.600", + "endTime": 1535.07, + "endTimeFormatted": "00:25:35.070", + "speaker": "Dave", + "body": "Everybody's podcast has an\niTunes ID, or an apple podcast" + }, + { + "startTime": 1535.1, + "startTimeFormatted": "00:25:35.100", + "endTime": 1540.41, + "endTimeFormatted": "00:25:40.410", + "speaker": "Dave", + "body": "ID. And if you go and look for\nyour podcast on Apple's podcast" + }, + { + "startTime": 1540.41, + "startTimeFormatted": "00:25:40.410", + "endTime": 1542.99, + "endTimeFormatted": "00:25:42.990", + "speaker": "Dave", + "body": "directory, you can see at the\nend of the little URL in the" + }, + { + "startTime": 1542.99, + "startTimeFormatted": "00:25:42.990", + "endTime": 1546.62, + "endTimeFormatted": "00:25:46.620", + "speaker": "Dave", + "body": "address bar up there, you can\nsee your Apple ID, because Apple" + }, + { + "startTime": 1546.62, + "startTimeFormatted": "00:25:46.620", + "endTime": 1549.17, + "endTimeFormatted": "00:25:49.170", + "speaker": "Dave", + "body": "has been the center of the\npodcasting universe for so long," + }, + { + "startTime": 1549.65, + "startTimeFormatted": "00:25:49.650", + "endTime": 1554.42, + "endTimeFormatted": "00:25:54.420", + "speaker": "Dave", + "body": "that iTunes ID has become the\nway that many apps identify a" + }, + { + "startTime": 1554.42, + "startTimeFormatted": "00:25:54.420", + "endTime": 1559.22, + "endTimeFormatted": "00:25:59.220", + "speaker": "Dave", + "body": "podcast in there's problems with\nthat. We solve those problems" + }, + { + "startTime": 1559.25, + "startTimeFormatted": "00:25:59.250", + "endTime": 1564.56, + "endTimeFormatted": "00:26:04.560", + "speaker": "Dave", + "body": "earlier this year, when Apple's\nAPI stopped returning the" + }, + { + "startTime": 1564.56, + "startTimeFormatted": "00:26:04.560", + "endTime": 1569, + "endTimeFormatted": "00:26:09.000", + "speaker": "Dave", + "body": "location of where podcast live\nat. So they stopped returning in" + }, + { + "startTime": 1569, + "startTimeFormatted": "00:26:09.000", + "endTime": 1573.2, + "endTimeFormatted": "00:26:13.200", + "speaker": "Dave", + "body": "their API for many, many feeds,\nthey stopped returning the" + }, + { + "startTime": 1573.2, + "startTimeFormatted": "00:26:13.200", + "endTime": 1576.89, + "endTimeFormatted": "00:26:16.890", + "speaker": "Dave", + "body": "actual URL, which is would be\nlike, you know, buzzsprout.com" + }, + { + "startTime": 1576.89, + "startTimeFormatted": "00:26:16.890", + "endTime": 1580.19, + "endTimeFormatted": "00:26:20.190", + "speaker": "Dave", + "body": "slash such and such. That's a\nhuge problem because it broke" + }, + { + "startTime": 1580.19, + "startTimeFormatted": "00:26:20.190", + "endTime": 1584.18, + "endTimeFormatted": "00:26:24.180", + "speaker": "Dave", + "body": "tons of apps. And we were on the\nfront lines of that, because a" + }, + { + "startTime": 1584.18, + "startTimeFormatted": "00:26:24.180", + "endTime": 1586.79, + "endTimeFormatted": "00:26:26.790", + "speaker": "Dave", + "body": "lot of people started using our\nAPI when that happened, because" + }, + { + "startTime": 1586.79, + "startTimeFormatted": "00:26:26.790", + "endTime": 1588.41, + "endTimeFormatted": "00:26:28.410", + "speaker": "Dave", + "body": "it broke and broke their app." + }, + { + "startTime": 1588.56, + "startTimeFormatted": "00:26:28.560", + "endTime": 1591.65, + "endTimeFormatted": "00:26:31.650", + "speaker": "Kevin", + "body": "Is this stuff going to\nhelp us move in the direction of" + }, + { + "startTime": 1591.95, + "startTimeFormatted": "00:26:31.950", + "endTime": 1595.04, + "endTimeFormatted": "00:26:35.040", + "speaker": "Kevin", + "body": "like global comments, global\nratings and reviews? Are you" + }, + { + "startTime": 1595.04, + "startTimeFormatted": "00:26:35.040", + "endTime": 1598.97, + "endTimeFormatted": "00:26:38.970", + "speaker": "Kevin", + "body": "guys working on infrastructure\nto be able to allow podcasters" + }, + { + "startTime": 1598.97, + "startTimeFormatted": "00:26:38.970", + "endTime": 1602.54, + "endTimeFormatted": "00:26:42.540", + "speaker": "Kevin", + "body": "to leave a five star rating in\none app that then translates" + }, + { + "startTime": 1602.54, + "startTimeFormatted": "00:26:42.540", + "endTime": 1605.96, + "endTimeFormatted": "00:26:45.960", + "speaker": "Kevin", + "body": "over to another app or a comment\nover here on pod friend that" + }, + { + "startTime": 1605.96, + "startTimeFormatted": "00:26:45.960", + "endTime": 1608.39, + "endTimeFormatted": "00:26:48.390", + "speaker": "Kevin", + "body": "could get posted in pod chaser?" + }, + { + "startTime": 1608.78, + "startTimeFormatted": "00:26:48.780", + "endTime": 1611.54, + "endTimeFormatted": "00:26:51.540", + "speaker": "Dave", + "body": "Yeah, I hope so. I mean,\nthat's the idea. That's, that's" + }, + { + "startTime": 1611.54, + "startTimeFormatted": "00:26:51.540", + "endTime": 1612.98, + "endTimeFormatted": "00:26:52.980", + "speaker": "Dave", + "body": "absolutely the goal with this." + }, + { + "startTime": 1613.16, + "startTimeFormatted": "00:26:53.160", + "endTime": 1616.64, + "endTimeFormatted": "00:26:56.640", + "speaker": "Tom", + "body": "Just a quick note for our\nBuzzsprout listeners, don't you" + }, + { + "startTime": 1616.64, + "startTimeFormatted": "00:26:56.640", + "endTime": 1619.73, + "endTimeFormatted": "00:26:59.730", + "speaker": "Tom", + "body": "don't have to write into the\nport and ask us to put a grid on" + }, + { + "startTime": 1619.73, + "startTimeFormatted": "00:26:59.730", + "endTime": 1623.03, + "endTimeFormatted": "00:27:03.030", + "speaker": "Tom", + "body": "your RSS feed, they're already\nthere. So all these features" + }, + { + "startTime": 1623.03, + "startTimeFormatted": "00:27:03.030", + "endTime": 1626.09, + "endTimeFormatted": "00:27:06.090", + "speaker": "Tom", + "body": "whenever we can we want to\nimplement them without having to" + }, + { + "startTime": 1626.09, + "startTimeFormatted": "00:27:06.090", + "endTime": 1629.42, + "endTimeFormatted": "00:27:09.420", + "speaker": "Tom", + "body": "require, you know, any, any kind\nof, you know, technical" + }, + { + "startTime": 1629.42, + "startTimeFormatted": "00:27:09.420", + "endTime": 1632.42, + "endTimeFormatted": "00:27:12.420", + "speaker": "Tom", + "body": "knowledge on our podcasters. And\nso, yes, the goods are already" + }, + { + "startTime": 1632.42, + "startTimeFormatted": "00:27:12.420", + "endTime": 1634.97, + "endTimeFormatted": "00:27:14.970", + "speaker": "Tom", + "body": "there. And we continue to follow\nall the work that Dave and Adam" + }, + { + "startTime": 1634.97, + "startTimeFormatted": "00:27:14.970", + "endTime": 1637.4, + "endTimeFormatted": "00:27:17.400", + "speaker": "Tom", + "body": "are doing, and we will implement\nthose features as they come up." + }, + { + "startTime": 1637.58, + "startTimeFormatted": "00:27:17.580", + "endTime": 1641.06, + "endTimeFormatted": "00:27:21.060", + "speaker": "Tom", + "body": "Dave, thank you for being on the\nshow. Thank you for all the work" + }, + { + "startTime": 1641.06, + "startTimeFormatted": "00:27:21.060", + "endTime": 1644.96, + "endTimeFormatted": "00:27:24.960", + "speaker": "Tom", + "body": "that you're doing to help make\npodcasting. Awesome. We" + }, + { + "startTime": 1644.96, + "startTimeFormatted": "00:27:24.960", + "endTime": 1646.43, + "endTimeFormatted": "00:27:26.430", + "speaker": "Tom", + "body": "appreciate it. And thanks for\nbeing here." + }, + { + "startTime": 1646.52, + "startTimeFormatted": "00:27:26.520", + "endTime": 1649.04, + "endTimeFormatted": "00:27:29.040", + "speaker": "Kevin", + "body": "Yeah, thanks, guys.\nAppreciate it. listeners, please" + }, + { + "startTime": 1649.07, + "startTimeFormatted": "00:27:29.070", + "endTime": 1652.13, + "endTimeFormatted": "00:27:32.130", + "speaker": "Kevin", + "body": "check out podcast index.org\nclick on apps, download a new" + }, + { + "startTime": 1652.13, + "startTimeFormatted": "00:27:32.130", + "endTime": 1655.7, + "endTimeFormatted": "00:27:35.700", + "speaker": "Kevin", + "body": "podcast app, recommend it to\nyour listening audience. And" + }, + { + "startTime": 1656.15, + "startTimeFormatted": "00:27:36.150", + "endTime": 1658.28, + "endTimeFormatted": "00:27:38.280", + "speaker": "Kevin", + "body": "yeah, support the movement. It's\nreally good stuff for" + }, + { + "startTime": 1658.28, + "startTimeFormatted": "00:27:38.280", + "endTime": 1658.79, + "endTimeFormatted": "00:27:38.790", + "speaker": "Kevin", + "body": "podcasting." + }, + { + "startTime": 1661.93, + "startTimeFormatted": "00:27:41.930", + "endTime": 1665.17, + "endTimeFormatted": "00:27:45.170", + "speaker": "Travis", + "body": "So we asked the good\npeople of the internet, namely" + }, + { + "startTime": 1665.2, + "startTimeFormatted": "00:27:45.200", + "endTime": 1668.05, + "endTimeFormatted": "00:27:48.050", + "speaker": "Travis", + "body": "on our YouTube community chats\nif you subscribe to the YouTube," + }, + { + "startTime": 1668.08, + "startTimeFormatted": "00:27:48.080", + "endTime": 1670.27, + "endTimeFormatted": "00:27:50.270", + "speaker": "Travis", + "body": "the main Buzzsprout YouTube\nchannel, you may have seen this" + }, + { + "startTime": 1670.27, + "startTimeFormatted": "00:27:50.270", + "endTime": 1674.38, + "endTimeFormatted": "00:27:54.380", + "speaker": "Travis", + "body": "in your subscriber feed. Alban\nasked on Twitter, we also posted" + }, + { + "startTime": 1674.38, + "startTimeFormatted": "00:27:54.380", + "endTime": 1676.63, + "endTimeFormatted": "00:27:56.630", + "speaker": "Travis", + "body": "in the Facebook group, the\nBuzzsprout podcast, Facebook" + }, + { + "startTime": 1676.66, + "startTimeFormatted": "00:27:56.660", + "endTime": 1680.05, + "endTimeFormatted": "00:28:00.050", + "speaker": "Travis", + "body": "group, just your questions. So\nwe're going to run through a" + }, + { + "startTime": 1680.05, + "startTimeFormatted": "00:28:00.050", + "endTime": 1684.46, + "endTimeFormatted": "00:28:04.460", + "speaker": "Travis", + "body": "lightning round, have a bunch of\nquestions and hopefully will" + } + ] +} \ No newline at end of file diff --git a/test/test_files/buzzcast_json_combine_equal_time_space_parsed.json b/test/test_files/buzzcast_json_combine_equal_time_space_parsed.json new file mode 100644 index 0000000..5a0dad0 --- /dev/null +++ b/test/test_files/buzzcast_json_combine_equal_time_space_parsed.json @@ -0,0 +1,3916 @@ +{ + "segments": [ + { + "startTime": 0, + "startTimeFormatted": "00:00:00.000", + "endTime": 4.8, + "endTimeFormatted": "00:00:04.800", + "speaker": "Alban", + "body": "It is so stinking nice to like, show up and record this" + }, + { + "startTime": 4.8, + "startTimeFormatted": "00:00:04.800", + "endTime": 8.25, + "endTimeFormatted": "00:00:08.250", + "speaker": "Alban", + "body": "show. And Travis has already put together an outline. Kevin's got" + }, + { + "startTime": 8.25, + "startTimeFormatted": "00:00:08.250", + "endTime": 13.17, + "endTimeFormatted": "00:00:13.170", + "speaker": "Alban", + "body": "suggestions, I throw my thoughts into the mix. And then Travis" + }, + { + "startTime": 13.17, + "startTimeFormatted": "00:00:13.170", + "endTime": 16.74, + "endTimeFormatted": "00:00:16.740", + "speaker": "Alban", + "body": "goes and does all the work from there, too. It's out into the" + }, + { + "startTime": 16.74, + "startTimeFormatted": "00:00:16.740", + "endTime": 21.27, + "endTimeFormatted": "00:00:21.270", + "speaker": "Alban", + "body": "wild. And I don't see anything. That's an absolute joy for at" + }, + { + "startTime": 21.27, + "startTimeFormatted": "00:00:21.270", + "endTime": 23.73, + "endTimeFormatted": "00:00:23.730", + "speaker": "Alban", + "body": "least two thirds of the team. Yeah, I mean, exactly." + }, + { + "startTime": 30.48, + "startTimeFormatted": "00:00:30.480", + "endTime": 32.85, + "endTimeFormatted": "00:00:32.850", + "speaker": "Kevin", + "body": "You guys remember, like two months ago, when you were" + }, + { + "startTime": 32.85, + "startTimeFormatted": "00:00:32.850", + "endTime": 35.46, + "endTimeFormatted": "00:00:35.460", + "speaker": "Kevin", + "body": "like, We're going all in on video Buzzcast. I was like," + }, + { + "startTime": 35.49, + "startTimeFormatted": "00:00:35.490", + "endTime": 39.12, + "endTimeFormatted": "00:00:39.120", + "speaker": "Kevin", + "body": "that's, I mean, I will agree and commit and disagree, disagree" + }, + { + "startTime": 39.12, + "startTimeFormatted": "00:00:39.120", + "endTime": 41.37, + "endTimeFormatted": "00:00:41.370", + "speaker": "Kevin", + "body": "and commit, I'll do something. But I don't want to do this." + }, + { + "startTime": 42.03, + "startTimeFormatted": "00:00:42.030", + "endTime": 48.24, + "endTimeFormatted": "00:00:48.240", + "speaker": "Alban", + "body": "I never said that. The only reason we ever did video" + }, + { + "startTime": 48.27, + "startTimeFormatted": "00:00:48.270", + "endTime": 49.62, + "endTimeFormatted": "00:00:49.620", + "speaker": "Alban", + "body": "was because of you." + }, + { + "startTime": 50.309, + "startTimeFormatted": "00:00:50.309", + "endTime": 53.249, + "endTimeFormatted": "00:00:53.249", + "speaker": "Kevin", + "body": "That is true. I will take that. Because when we first got" + }, + { + "startTime": 53.249, + "startTimeFormatted": "00:00:53.249", + "endTime": 55.979, + "endTimeFormatted": "00:00:55.979", + "speaker": "Kevin", + "body": "locked down, and we weren't allowed to see anybody in" + }, + { + "startTime": 55.979, + "startTimeFormatted": "00:00:55.979", + "endTime": 58.259, + "endTimeFormatted": "00:00:58.259", + "speaker": "Kevin", + "body": "person, I was like, well, it would be nice to be able to see" + }, + { + "startTime": 58.259, + "startTimeFormatted": "00:00:58.259", + "endTime": 60.599, + "endTimeFormatted": "00:01:00.599", + "speaker": "Kevin", + "body": "you guys when we record. And if we're going to be doing video" + }, + { + "startTime": 60.599, + "startTimeFormatted": "00:01:00.599", + "endTime": 64.049, + "endTimeFormatted": "00:01:04.049", + "speaker": "Kevin", + "body": "chats Anyway, why don't we go ahead and publish those. So I do" + }, + { + "startTime": 64.049, + "startTimeFormatted": "00:01:04.049", + "endTime": 66.749, + "endTimeFormatted": "00:01:06.749", + "speaker": "Kevin", + "body": "take the full blame for moving us to video in the first place." + }, + { + "startTime": 67.949, + "startTimeFormatted": "00:01:07.949", + "endTime": 70.049, + "endTimeFormatted": "00:01:10.049", + "speaker": "Kevin", + "body": "But how's that working out for us?" + }, + { + "startTime": 71.52, + "startTimeFormatted": "00:01:11.520", + "endTime": 76.08, + "endTimeFormatted": "00:01:16.080", + "speaker": "Alban", + "body": "Not good. The first one we did was like a year ago, we" + }, + { + "startTime": 76.08, + "startTimeFormatted": "00:01:16.080", + "endTime": 81.3, + "endTimeFormatted": "00:01:21.300", + "speaker": "Alban", + "body": "did that live stream to our YouTube channel. And that just" + }, + { + "startTime": 81.3, + "startTimeFormatted": "00:01:21.300", + "endTime": 85.14, + "endTimeFormatted": "00:01:25.140", + "speaker": "Alban", + "body": "kind of grew into then we wanted to play around with Riverside," + }, + { + "startTime": 85.14, + "startTimeFormatted": "00:01:25.140", + "endTime": 88.83, + "endTimeFormatted": "00:01:28.830", + "speaker": "Alban", + "body": "which was doing video remote video recording, and then squad" + }, + { + "startTime": 88.83, + "startTimeFormatted": "00:01:28.830", + "endTime": 93.06, + "endTimeFormatted": "00:01:33.060", + "speaker": "Alban", + "body": "cast launched video, remote video recording. And I think," + }, + { + "startTime": 93.87, + "startTimeFormatted": "00:01:33.870", + "endTime": 96.75, + "endTimeFormatted": "00:01:36.750", + "speaker": "Alban", + "body": "you know, we've you kind of had the tools, the tools were there." + }, + { + "startTime": 96.75, + "startTimeFormatted": "00:01:36.750", + "endTime": 100.32, + "endTimeFormatted": "00:01:40.320", + "speaker": "Alban", + "body": "So we started playing with the tools and experimenting. And now" + }, + { + "startTime": 100.32, + "startTimeFormatted": "00:01:40.320", + "endTime": 104.46, + "endTimeFormatted": "00:01:44.460", + "speaker": "Alban", + "body": "the experiment is coming to an end, at least for now, at least" + }, + { + "startTime": 104.46, + "startTimeFormatted": "00:01:44.460", + "endTime": 109.38, + "endTimeFormatted": "00:01:49.380", + "speaker": "Alban", + "body": "for now. So do we want to give like the whole story of it, kind" + }, + { + "startTime": 109.38, + "startTimeFormatted": "00:01:49.380", + "endTime": 113.04, + "endTimeFormatted": "00:01:53.040", + "speaker": "Alban", + "body": "of walk through why we made each decision along the way? And" + }, + { + "startTime": 113.04, + "startTimeFormatted": "00:01:53.040", + "endTime": 115.86, + "endTimeFormatted": "00:01:55.860", + "speaker": "Alban", + "body": "let's give the sparknotes what we learned the highlights" + }, + { + "startTime": 116.01, + "startTimeFormatted": "00:01:56.010", + "endTime": 118.86, + "endTimeFormatted": "00:01:58.860", + "speaker": "Alban", + "body": "sparknotes? Yeah, start at the beginning. Kevin, why did you" + }, + { + "startTime": 118.86, + "startTimeFormatted": "00:01:58.860", + "endTime": 121.08, + "endTimeFormatted": "00:02:01.080", + "speaker": "Alban", + "body": "want to start doing some video Buzzcast." + }, + { + "startTime": 121.44, + "startTimeFormatted": "00:02:01.440", + "endTime": 123.36, + "endTimeFormatted": "00:02:03.360", + "speaker": "Kevin", + "body": "When we first started recording Buzzcast, we would do" + }, + { + "startTime": 123.36, + "startTimeFormatted": "00:02:03.360", + "endTime": 127.26, + "endTimeFormatted": "00:02:07.260", + "speaker": "Kevin", + "body": "it together in the office in our little studio space. And we" + }, + { + "startTime": 127.26, + "startTimeFormatted": "00:02:07.260", + "endTime": 131.88, + "endTimeFormatted": "00:02:11.880", + "speaker": "Kevin", + "body": "could play off of each other's energy, right? I think, Listen," + }, + { + "startTime": 132.09, + "startTimeFormatted": "00:02:12.090", + "endTime": 135.09, + "endTimeFormatted": "00:02:15.090", + "speaker": "Kevin", + "body": "I'll speak for myself, I'm not a super high energy person. So it" + }, + { + "startTime": 135.09, + "startTimeFormatted": "00:02:15.090", + "endTime": 138.33, + "endTimeFormatted": "00:02:18.330", + "speaker": "Kevin", + "body": "helps for me to be sitting across the table for somebody or" + }, + { + "startTime": 138.33, + "startTimeFormatted": "00:02:18.330", + "endTime": 141, + "endTimeFormatted": "00:02:21.000", + "speaker": "Kevin", + "body": "to see somebody else's reactions to what I'm saying or when" + }, + { + "startTime": 141, + "startTimeFormatted": "00:02:21.000", + "endTime": 144.27, + "endTimeFormatted": "00:02:24.270", + "speaker": "Kevin", + "body": "they're speaking themselves to be able to keep myself amped up" + }, + { + "startTime": 144.27, + "startTimeFormatted": "00:02:24.270", + "endTime": 146.79, + "endTimeFormatted": "00:02:26.790", + "speaker": "Kevin", + "body": "and engaged in the conversation when we went audio only and" + }, + { + "startTime": 146.79, + "startTimeFormatted": "00:02:26.790", + "endTime": 149.73, + "endTimeFormatted": "00:02:29.730", + "speaker": "Kevin", + "body": "there was no video component, it was hard for me to continue to" + }, + { + "startTime": 149.73, + "startTimeFormatted": "00:02:29.730", + "endTime": 152.67, + "endTimeFormatted": "00:02:32.670", + "speaker": "Kevin", + "body": "keep my energy high. And to stay engaged. I've also got a little" + }, + { + "startTime": 152.67, + "startTimeFormatted": "00:02:32.670", + "endTime": 154.92, + "endTimeFormatted": "00:02:34.920", + "speaker": "Kevin", + "body": "bit of add that I'm I'm fighting and dealing with at the same" + }, + { + "startTime": 154.92, + "startTimeFormatted": "00:02:34.920", + "endTime": 159.9, + "endTimeFormatted": "00:02:39.900", + "speaker": "Kevin", + "body": "time. So that part was was necessary in order to be able to" + }, + { + "startTime": 160.35, + "startTimeFormatted": "00:02:40.350", + "endTime": 163.44, + "endTimeFormatted": "00:02:43.440", + "speaker": "Kevin", + "body": "just produce good content. What I was interested in is that" + }, + { + "startTime": 163.44, + "startTimeFormatted": "00:02:43.440", + "endTime": 165.6, + "endTimeFormatted": "00:02:45.600", + "speaker": "Kevin", + "body": "since we're doing this video component Anyway, why don't we" + }, + { + "startTime": 165.6, + "startTimeFormatted": "00:02:45.600", + "endTime": 168.21, + "endTimeFormatted": "00:02:48.210", + "speaker": "Kevin", + "body": "record this, we've always said that YouTube is an interesting" + }, + { + "startTime": 168.21, + "startTimeFormatted": "00:02:48.210", + "endTime": 170.37, + "endTimeFormatted": "00:02:50.370", + "speaker": "Kevin", + "body": "opportunity for people to promote their podcasts because" + }, + { + "startTime": 170.37, + "startTimeFormatted": "00:02:50.370", + "endTime": 172.14, + "endTimeFormatted": "00:02:52.140", + "speaker": "Kevin", + "body": "they do have the algorithm, they do have the recommendation" + }, + { + "startTime": 172.14, + "startTimeFormatted": "00:02:52.140", + "endTime": 176.01, + "endTimeFormatted": "00:02:56.010", + "speaker": "Kevin", + "body": "engine. But you shouldn't just publish your audio only there." + }, + { + "startTime": 176.07, + "startTimeFormatted": "00:02:56.070", + "endTime": 178.41, + "endTimeFormatted": "00:02:58.410", + "speaker": "Kevin", + "body": "Because that doesn't feed into the strengths of the algorithm." + }, + { + "startTime": 178.41, + "startTimeFormatted": "00:02:58.410", + "endTime": 180.84, + "endTimeFormatted": "00:03:00.840", + "speaker": "Kevin", + "body": "So you're not even getting the benefit. And you're taking all" + }, + { + "startTime": 180.84, + "startTimeFormatted": "00:03:00.840", + "endTime": 184.05, + "endTimeFormatted": "00:03:04.050", + "speaker": "Kevin", + "body": "this extra time to do that. In fact, you could be you know," + }, + { + "startTime": 184.05, + "startTimeFormatted": "00:03:04.050", + "endTime": 185.76, + "endTimeFormatted": "00:03:05.760", + "speaker": "Kevin", + "body": "putting yourself at a disadvantage if you do that," + }, + { + "startTime": 185.76, + "startTimeFormatted": "00:03:05.760", + "endTime": 188.19, + "endTimeFormatted": "00:03:08.190", + "speaker": "Kevin", + "body": "because then you get a bad reputation with the algorithm." + }, + { + "startTime": 188.49, + "startTimeFormatted": "00:03:08.490", + "endTime": 192.36, + "endTimeFormatted": "00:03:12.360", + "speaker": "Kevin", + "body": "So anyway, we were doing video, why not go ahead. And while we" + }, + { + "startTime": 192.36, + "startTimeFormatted": "00:03:12.360", + "endTime": 194.7, + "endTimeFormatted": "00:03:14.700", + "speaker": "Kevin", + "body": "edit the podcast, the audio version, why not edit the video" + }, + { + "startTime": 194.7, + "startTimeFormatted": "00:03:14.700", + "endTime": 196.62, + "endTimeFormatted": "00:03:16.620", + "speaker": "Kevin", + "body": "version and just stick it on YouTube and see if we get a bump" + }, + { + "startTime": 196.62, + "startTimeFormatted": "00:03:16.620", + "endTime": 200.73, + "endTimeFormatted": "00:03:20.730", + "speaker": "Kevin", + "body": "from it. That is where you guys come in on the analytical side" + }, + { + "startTime": 200.94, + "startTimeFormatted": "00:03:20.940", + "endTime": 204.87, + "endTimeFormatted": "00:03:24.870", + "speaker": "Kevin", + "body": "and say, Is this working is this not I will say that the" + }, + { + "startTime": 204.87, + "startTimeFormatted": "00:03:24.870", + "endTime": 209.64, + "endTimeFormatted": "00:03:29.640", + "speaker": "Kevin", + "body": "constraints from just somebody who's on the podcast are much" + }, + { + "startTime": 209.64, + "startTimeFormatted": "00:03:29.640", + "endTime": 212.34, + "endTimeFormatted": "00:03:32.340", + "speaker": "Kevin", + "body": "higher than I anticipated. It's one thing when you're out of the" + }, + { + "startTime": 212.34, + "startTimeFormatted": "00:03:32.340", + "endTime": 215.25, + "endTimeFormatted": "00:03:35.250", + "speaker": "Kevin", + "body": "office, or if you're traveling or you can't be here there to be" + }, + { + "startTime": 215.25, + "startTimeFormatted": "00:03:35.250", + "endTime": 218.43, + "endTimeFormatted": "00:03:38.430", + "speaker": "Kevin", + "body": "able to quickly grab a USB mic, throw it in your bag go with" + }, + { + "startTime": 218.43, + "startTimeFormatted": "00:03:38.430", + "endTime": 220.41, + "endTimeFormatted": "00:03:40.410", + "speaker": "Kevin", + "body": "you. And you can record audio from anywhere in the world, it's" + }, + { + "startTime": 220.41, + "startTimeFormatted": "00:03:40.410", + "endTime": 223.2, + "endTimeFormatted": "00:03:43.200", + "speaker": "Kevin", + "body": "not too hard to find a quiet space, most hotel rooms are" + }, + { + "startTime": 223.2, + "startTimeFormatted": "00:03:43.200", + "endTime": 225.24, + "endTimeFormatted": "00:03:45.240", + "speaker": "Kevin", + "body": "pretty quiet. Or if you're staying on Airbnb or something" + }, + { + "startTime": 225.24, + "startTimeFormatted": "00:03:45.240", + "endTime": 227.4, + "endTimeFormatted": "00:03:47.400", + "speaker": "Kevin", + "body": "that you can find a closet, you can find a quiet space to record" + }, + { + "startTime": 227.4, + "startTimeFormatted": "00:03:47.400", + "endTime": 232.98, + "endTimeFormatted": "00:03:52.980", + "speaker": "Kevin", + "body": "audio, being able to travel with a decent camera setup. Or if you" + }, + { + "startTime": 232.98, + "startTimeFormatted": "00:03:52.980", + "endTime": 234.48, + "endTimeFormatted": "00:03:54.480", + "speaker": "Kevin", + "body": "don't have a decent camera setup, then you're using" + }, + { + "startTime": 234.48, + "startTimeFormatted": "00:03:54.480", + "endTime": 237.54, + "endTimeFormatted": "00:03:57.540", + "speaker": "Kevin", + "body": "whatever on your laptop, you're constantly worried about your" + }, + { + "startTime": 237.54, + "startTimeFormatted": "00:03:57.540", + "endTime": 239.52, + "endTimeFormatted": "00:03:59.520", + "speaker": "Kevin", + "body": "background, like all this stuff is going on. It's just a" + }, + { + "startTime": 239.52, + "startTimeFormatted": "00:03:59.520", + "endTime": 242.88, + "endTimeFormatted": "00:04:02.880", + "speaker": "Kevin", + "body": "different level of commitment and what's required in terms of" + }, + { + "startTime": 243.12, + "startTimeFormatted": "00:04:03.120", + "endTime": 245.4, + "endTimeFormatted": "00:04:05.400", + "speaker": "Kevin", + "body": "being able to put a show out every week or every other week." + }, + { + "startTime": 245.61, + "startTimeFormatted": "00:04:05.610", + "endTime": 252, + "endTimeFormatted": "00:04:12.000", + "speaker": "Kevin", + "body": "So that has been added an extra level of commitment to the show," + }, + { + "startTime": 252.03, + "startTimeFormatted": "00:04:12.030", + "endTime": 254.07, + "endTimeFormatted": "00:04:14.070", + "speaker": "Kevin", + "body": "which again, not something that we weren't willing to do, but" + }, + { + "startTime": 254.07, + "startTimeFormatted": "00:04:14.070", + "endTime": 256.53, + "endTimeFormatted": "00:04:16.530", + "speaker": "Kevin", + "body": "something that was a little bit unexpected. Didn't know going" + }, + { + "startTime": 256.53, + "startTimeFormatted": "00:04:16.530", + "endTime": 259.56, + "endTimeFormatted": "00:04:19.560", + "speaker": "Kevin", + "body": "into it. And then from an analytical side, like how" + }, + { + "startTime": 259.62, + "startTimeFormatted": "00:04:19.620", + "endTime": 263.07, + "endTimeFormatted": "00:04:23.070", + "speaker": "Kevin", + "body": "helpful was it actually, for us growing the show? That's what" + }, + { + "startTime": 263.07, + "startTimeFormatted": "00:04:23.070", + "endTime": 264.24, + "endTimeFormatted": "00:04:24.240", + "speaker": "Kevin", + "body": "you guys have dug into. Right?" + }, + { + "startTime": 264.45, + "startTimeFormatted": "00:04:24.450", + "endTime": 267.84, + "endTimeFormatted": "00:04:27.840", + "speaker": "Alban", + "body": "Yeah, I mean, we can talk a bit about the analytics buzz" + }, + { + "startTime": 268.05, + "startTimeFormatted": "00:04:28.050", + "endTime": 273.69, + "endTimeFormatted": "00:04:33.690", + "speaker": "Alban", + "body": "cast itself was getting more attention, let's call it" + }, + { + "startTime": 273.69, + "startTimeFormatted": "00:04:33.690", + "endTime": 277.53, + "endTimeFormatted": "00:04:37.530", + "speaker": "Alban", + "body": "attention than it ever had before. We were getting between" + }, + { + "startTime": 277.53, + "startTimeFormatted": "00:04:37.530", + "endTime": 285.03, + "endTimeFormatted": "00:04:45.030", + "speaker": "Alban", + "body": "the downloads that continued to grow on the RSS side. And on the" + }, + { + "startTime": 285.03, + "startTimeFormatted": "00:04:45.030", + "endTime": 288.21, + "endTimeFormatted": "00:04:48.210", + "speaker": "Alban", + "body": "YouTube channel being added to that it was huge. And then we" + }, + { + "startTime": 288.21, + "startTimeFormatted": "00:04:48.210", + "endTime": 292.92, + "endTimeFormatted": "00:04:52.920", + "speaker": "Alban", + "body": "started doing clips of Buzzcast episodes. And those were doing" + }, + { + "startTime": 292.92, + "startTimeFormatted": "00:04:52.920", + "endTime": 296.49, + "endTimeFormatted": "00:04:56.490", + "speaker": "Alban", + "body": "really well. And so if you wanted to add all that up, it" + }, + { + "startTime": 296.49, + "startTimeFormatted": "00:04:56.490", + "endTime": 301.26, + "endTimeFormatted": "00:05:01.260", + "speaker": "Alban", + "body": "was like wow, this show is doubled in sighs This is great." + }, + { + "startTime": 302.4, + "startTimeFormatted": "00:05:02.400", + "endTime": 308.34, + "endTimeFormatted": "00:05:08.340", + "speaker": "Alban", + "body": "But we on the other side, were kind of frustrated with the" + }, + { + "startTime": 308.34, + "startTimeFormatted": "00:05:08.340", + "endTime": 313.26, + "endTimeFormatted": "00:05:13.260", + "speaker": "Alban", + "body": "growth of the YouTube channel. We grew a ton the first year." + }, + { + "startTime": 313.77, + "startTimeFormatted": "00:05:13.770", + "endTime": 317.61, + "endTimeFormatted": "00:05:17.610", + "speaker": "Alban", + "body": "And we just kind of seen a lot of slowing down of our growth." + }, + { + "startTime": 317.61, + "startTimeFormatted": "00:05:17.610", + "endTime": 322.05, + "endTimeFormatted": "00:05:22.050", + "speaker": "Alban", + "body": "We didn't know exactly why. And we kept kind of digging into the" + }, + { + "startTime": 322.05, + "startTimeFormatted": "00:05:22.050", + "endTime": 327.84, + "endTimeFormatted": "00:05:27.840", + "speaker": "Alban", + "body": "data. And I think it might have been Jonathan first, or maybe it" + }, + { + "startTime": 327.84, + "startTimeFormatted": "00:05:27.840", + "endTime": 330.96, + "endTimeFormatted": "00:05:30.960", + "speaker": "Alban", + "body": "was Travis, who said, I just clicked through all of the last" + }, + { + "startTime": 330.96, + "startTimeFormatted": "00:05:30.960", + "endTime": 335.19, + "endTimeFormatted": "00:05:35.190", + "speaker": "Alban", + "body": "videos. And I noticed most of the Buzzcast ones lose" + }, + { + "startTime": 335.19, + "startTimeFormatted": "00:05:35.190", + "endTime": 339.78, + "endTimeFormatted": "00:05:39.780", + "speaker": "Alban", + "body": "subscribers. And I was like, That's not true. And then I" + }, + { + "startTime": 339.78, + "startTimeFormatted": "00:05:39.780", + "endTime": 343.71, + "endTimeFormatted": "00:05:43.710", + "speaker": "Alban", + "body": "click through and went, Oh, that's definitely true. I was" + }, + { + "startTime": 343.71, + "startTimeFormatted": "00:05:43.710", + "endTime": 348.09, + "endTimeFormatted": "00:05:48.090", + "speaker": "Alban", + "body": "very skeptical by nature. And so and then we started digging in" + }, + { + "startTime": 348.09, + "startTimeFormatted": "00:05:48.090", + "endTime": 354.78, + "endTimeFormatted": "00:05:54.780", + "speaker": "Alban", + "body": "deeper. And I took, I think it was like six different stats" + }, + { + "startTime": 354.78, + "startTimeFormatted": "00:05:54.780", + "endTime": 358.5, + "endTimeFormatted": "00:05:58.500", + "speaker": "Alban", + "body": "that we use to kind of quantify how valuable each individual" + }, + { + "startTime": 358.5, + "startTimeFormatted": "00:05:58.500", + "endTime": 363.3, + "endTimeFormatted": "00:06:03.300", + "speaker": "Alban", + "body": "video is. And I just went back and looked at, like the last 90" + }, + { + "startTime": 363.3, + "startTimeFormatted": "00:06:03.300", + "endTime": 365.52, + "endTimeFormatted": "00:06:05.520", + "speaker": "Alban", + "body": "days, all the videos that were created during that 90 day" + }, + { + "startTime": 365.52, + "startTimeFormatted": "00:06:05.520", + "endTime": 372.48, + "endTimeFormatted": "00:06:12.480", + "speaker": "Alban", + "body": "period, I think we had 22 videos, or 26 videos, all of the" + }, + { + "startTime": 372.48, + "startTimeFormatted": "00:06:12.480", + "endTime": 375.54, + "endTimeFormatted": "00:06:15.540", + "speaker": "Alban", + "body": "Buzzcast ones were in the worst category, they were they" + }, + { + "startTime": 375.54, + "startTimeFormatted": "00:06:15.540", + "endTime": 380.49, + "endTimeFormatted": "00:06:20.490", + "speaker": "Alban", + "body": "represented, like the very bottom five episodes, or videos." + }, + { + "startTime": 380.97, + "startTimeFormatted": "00:06:20.970", + "endTime": 385.17, + "endTimeFormatted": "00:06:25.170", + "speaker": "Alban", + "body": "And, you know, we, I think Travis, you had some good ideas" + }, + { + "startTime": 385.17, + "startTimeFormatted": "00:06:25.170", + "endTime": 389.55, + "endTimeFormatted": "00:06:29.550", + "speaker": "Alban", + "body": "of why the Buzzcast ones were performing near the bottom. But" + }, + { + "startTime": 389.67, + "startTimeFormatted": "00:06:29.670", + "endTime": 392.7, + "endTimeFormatted": "00:06:32.700", + "speaker": "Alban", + "body": "in the end, we were kind of doing the thing that we've" + }, + { + "startTime": 392.7, + "startTimeFormatted": "00:06:32.700", + "endTime": 394.62, + "endTimeFormatted": "00:06:34.620", + "speaker": "Alban", + "body": "always criticized, we've always criticized people who were" + }, + { + "startTime": 394.62, + "startTimeFormatted": "00:06:34.620", + "endTime": 399.99, + "endTimeFormatted": "00:06:39.990", + "speaker": "Alban", + "body": "putting a static image on a YouTube video on a YouTube" + }, + { + "startTime": 399.99, + "startTimeFormatted": "00:06:39.990", + "endTime": 404.79, + "endTimeFormatted": "00:06:44.790", + "speaker": "Alban", + "body": "video, just having audio, you know, we said that can crush an" + }, + { + "startTime": 404.79, + "startTimeFormatted": "00:06:44.790", + "endTime": 409.74, + "endTimeFormatted": "00:06:49.740", + "speaker": "Alban", + "body": "existing valuable YouTube channel. And we were crushing" + }, + { + "startTime": 409.77, + "startTimeFormatted": "00:06:49.770", + "endTime": 415.5, + "endTimeFormatted": "00:06:55.500", + "speaker": "Alban", + "body": "our existing value bowl YouTube channel, by adding this, you" + }, + { + "startTime": 415.5, + "startTimeFormatted": "00:06:55.500", + "endTime": 419.55, + "endTimeFormatted": "00:06:59.550", + "speaker": "Alban", + "body": "know, some of this, basically podcast content in video format." + }, + { + "startTime": 419.61, + "startTimeFormatted": "00:06:59.610", + "endTime": 421.8, + "endTimeFormatted": "00:07:01.800", + "speaker": "Kevin", + "body": "To clarify, we weren't crushing it because we weren't" + }, + { + "startTime": 421.8, + "startTimeFormatted": "00:07:01.800", + "endTime": 425.16, + "endTimeFormatted": "00:07:05.160", + "speaker": "Kevin", + "body": "putting the static image when we were putting real video up. But" + }, + { + "startTime": 425.16, + "startTimeFormatted": "00:07:05.160", + "endTime": 429.27, + "endTimeFormatted": "00:07:09.270", + "speaker": "Kevin", + "body": "we weren't playing in line with the the rules of YouTube or to" + }, + { + "startTime": 429.27, + "startTimeFormatted": "00:07:09.270", + "endTime": 431.52, + "endTimeFormatted": "00:07:11.520", + "speaker": "Kevin", + "body": "use the algorithm in the smartest and best way we were" + }, + { + "startTime": 431.52, + "startTimeFormatted": "00:07:11.520", + "endTime": 434.1, + "endTimeFormatted": "00:07:14.100", + "speaker": "Kevin", + "body": "confusing the algorithm. We were publishing different lengths of" + }, + { + "startTime": 434.1, + "startTimeFormatted": "00:07:14.100", + "endTime": 437.55, + "endTimeFormatted": "00:07:17.550", + "speaker": "Kevin", + "body": "content, different formats of content. And so we ended up is a" + }, + { + "startTime": 437.55, + "startTimeFormatted": "00:07:17.550", + "endTime": 440.46, + "endTimeFormatted": "00:07:20.460", + "speaker": "Kevin", + "body": "very important and valuable channel for us for marketing our" + }, + { + "startTime": 440.46, + "startTimeFormatted": "00:07:20.460", + "endTime": 442.77, + "endTimeFormatted": "00:07:22.770", + "speaker": "Kevin", + "body": "software and telling the world about what Buzzsprout can do for" + }, + { + "startTime": 442.77, + "startTimeFormatted": "00:07:22.770", + "endTime": 446.22, + "endTimeFormatted": "00:07:26.220", + "speaker": "Kevin", + "body": "you as a podcaster. We were hurting that marketing channel" + }, + { + "startTime": 446.22, + "startTimeFormatted": "00:07:26.220", + "endTime": 446.79, + "endTimeFormatted": "00:07:26.790", + "speaker": "Kevin", + "body": "for us, right?" + }, + { + "startTime": 447.09, + "startTimeFormatted": "00:07:27.090", + "endTime": 450.75, + "endTimeFormatted": "00:07:30.750", + "speaker": "Alban", + "body": "Yeah, I guess what I was saying is, we were not being" + }, + { + "startTime": 450.75, + "startTimeFormatted": "00:07:30.750", + "endTime": 454.92, + "endTimeFormatted": "00:07:34.920", + "speaker": "Alban", + "body": "hypocritical in the way that we created the video, the content," + }, + { + "startTime": 454.98, + "startTimeFormatted": "00:07:34.980", + "endTime": 458.25, + "endTimeFormatted": "00:07:38.250", + "speaker": "Alban", + "body": "because we weren't publishing the static image with the audio." + }, + { + "startTime": 458.79, + "startTimeFormatted": "00:07:38.790", + "endTime": 461.97, + "endTimeFormatted": "00:07:41.970", + "speaker": "Alban", + "body": "But the reason we say we recommend everybody else not to" + }, + { + "startTime": 461.97, + "startTimeFormatted": "00:07:41.970", + "endTime": 465.66, + "endTimeFormatted": "00:07:45.660", + "speaker": "Alban", + "body": "do that, is because what it's doing is it's showing YouTube" + }, + { + "startTime": 465.66, + "startTimeFormatted": "00:07:45.660", + "endTime": 468.48, + "endTimeFormatted": "00:07:48.480", + "speaker": "Alban", + "body": "that your content is low quality, and it's a specific" + }, + { + "startTime": 468.48, + "startTimeFormatted": "00:07:48.480", + "endTime": 473.67, + "endTimeFormatted": "00:07:53.670", + "speaker": "Alban", + "body": "type of content. It's audio plus an image. Well, when we were" + }, + { + "startTime": 473.67, + "startTimeFormatted": "00:07:53.670", + "endTime": 477.39, + "endTimeFormatted": "00:07:57.390", + "speaker": "Alban", + "body": "looking at it, YouTube was used to a much higher production" + }, + { + "startTime": 477.39, + "startTimeFormatted": "00:07:57.390", + "endTime": 482.64, + "endTimeFormatted": "00:08:02.640", + "speaker": "Alban", + "body": "quality, a very different type of content for our channel. And" + }, + { + "startTime": 482.64, + "startTimeFormatted": "00:08:02.640", + "endTime": 485.79, + "endTimeFormatted": "00:08:05.790", + "speaker": "Alban", + "body": "so I think people were constantly confused. They're" + }, + { + "startTime": 485.79, + "startTimeFormatted": "00:08:05.790", + "endTime": 490.71, + "endTimeFormatted": "00:08:10.710", + "speaker": "Alban", + "body": "running into videos that they thought were going to be Travis" + }, + { + "startTime": 490.71, + "startTimeFormatted": "00:08:10.710", + "endTime": 494.49, + "endTimeFormatted": "00:08:14.490", + "speaker": "Alban", + "body": "or Sarah jalon, doing an in depth tutorial. And they were" + }, + { + "startTime": 494.49, + "startTimeFormatted": "00:08:14.490", + "endTime": 498.36, + "endTimeFormatted": "00:08:18.360", + "speaker": "Alban", + "body": "clicking, and they were finding me pontificating about Facebook" + }, + { + "startTime": 498.36, + "startTimeFormatted": "00:08:18.360", + "endTime": 502.2, + "endTimeFormatted": "00:08:22.200", + "speaker": "Alban", + "body": "podcasts for 20 minutes. So Travis, give us some more" + }, + { + "startTime": 502.2, + "startTimeFormatted": "00:08:22.200", + "endTime": 506.01, + "endTimeFormatted": "00:08:26.010", + "speaker": "Alban", + "body": "insight, what's what are the differentiators between our day" + }, + { + "startTime": 506.01, + "startTimeFormatted": "00:08:26.010", + "endTime": 509.64, + "endTimeFormatted": "00:08:29.640", + "speaker": "Alban", + "body": "to day content are the bread and butter that we do very well, and" + }, + { + "startTime": 509.64, + "startTimeFormatted": "00:08:29.640", + "endTime": 511.35, + "endTimeFormatted": "00:08:31.350", + "speaker": "Alban", + "body": "what Buzzcast was doing on our channel?" + }, + { + "startTime": 511.56, + "startTimeFormatted": "00:08:31.560", + "endTime": 514.38, + "endTimeFormatted": "00:08:34.380", + "speaker": "Travis", + "body": "One thing to keep in mind is when we create content" + }, + { + "startTime": 514.38, + "startTimeFormatted": "00:08:34.380", + "endTime": 518.49, + "endTimeFormatted": "00:08:38.490", + "speaker": "Travis", + "body": "for Podcasting, Q&A, when we create tutorials, things like" + }, + { + "startTime": 518.49, + "startTimeFormatted": "00:08:38.490", + "endTime": 522.09, + "endTimeFormatted": "00:08:42.090", + "speaker": "Travis", + "body": "that, we have a very specific aim for those videos. Right? So" + }, + { + "startTime": 522.09, + "startTimeFormatted": "00:08:42.090", + "endTime": 525.21, + "endTimeFormatted": "00:08:45.210", + "speaker": "Travis", + "body": "we're trying to answer questions really well, we're trying to" + }, + { + "startTime": 525.42, + "startTimeFormatted": "00:08:45.420", + "endTime": 529.44, + "endTimeFormatted": "00:08:49.440", + "speaker": "Travis", + "body": "take all the knowledge and best practices for how to be a" + }, + { + "startTime": 529.44, + "startTimeFormatted": "00:08:49.440", + "endTime": 534.27, + "endTimeFormatted": "00:08:54.270", + "speaker": "Travis", + "body": "podcaster. And consolidating that into a form factor. That is" + }, + { + "startTime": 534.3, + "startTimeFormatted": "00:08:54.300", + "endTime": 536.52, + "endTimeFormatted": "00:08:56.520", + "speaker": "Travis", + "body": "something you could easily watch in just a few minutes and get" + }, + { + "startTime": 536.55, + "startTimeFormatted": "00:08:56.550", + "endTime": 540.69, + "endTimeFormatted": "00:09:00.690", + "speaker": "Travis", + "body": "all the information that you need. And because we're able to" + }, + { + "startTime": 540.81, + "startTimeFormatted": "00:09:00.810", + "endTime": 543.6, + "endTimeFormatted": "00:09:03.600", + "speaker": "Travis", + "body": "put that level of focus on it, like Alan mentioned, the" + }, + { + "startTime": 543.6, + "startTimeFormatted": "00:09:03.600", + "endTime": 546.96, + "endTimeFormatted": "00:09:06.960", + "speaker": "Travis", + "body": "production quality is better. We have custom animations, and B" + }, + { + "startTime": 546.96, + "startTimeFormatted": "00:09:06.960", + "endTime": 549.42, + "endTimeFormatted": "00:09:09.420", + "speaker": "Travis", + "body": "roll, which is just a fancy way of saying we cut away to" + }, + { + "startTime": 549.42, + "startTimeFormatted": "00:09:09.420", + "endTime": 552.72, + "endTimeFormatted": "00:09:12.720", + "speaker": "Travis", + "body": "different videos of models doing things that match what we're" + }, + { + "startTime": 552.72, + "startTimeFormatted": "00:09:12.720", + "endTime": 558.96, + "endTimeFormatted": "00:09:18.960", + "speaker": "Travis", + "body": "talking about on screen. And so we're able to create a type of" + }, + { + "startTime": 558.96, + "startTimeFormatted": "00:09:18.960", + "endTime": 563.73, + "endTimeFormatted": "00:09:23.730", + "speaker": "Travis", + "body": "content that works really well in a YouTube ecosystem. And so" + }, + { + "startTime": 563.73, + "startTimeFormatted": "00:09:23.730", + "endTime": 566.91, + "endTimeFormatted": "00:09:26.910", + "speaker": "Travis", + "body": "if your whole channel is that kind of content, then YouTube" + }, + { + "startTime": 566.91, + "startTimeFormatted": "00:09:26.910", + "endTime": 571.38, + "endTimeFormatted": "00:09:31.380", + "speaker": "Travis", + "body": "starts knowing Okay, if someone we've kind of identified them as" + }, + { + "startTime": 571.38, + "startTimeFormatted": "00:09:31.380", + "endTime": 573.87, + "endTimeFormatted": "00:09:33.870", + "speaker": "Travis", + "body": "a potential podcaster, and they're asking a podcast related" + }, + { + "startTime": 573.87, + "startTimeFormatted": "00:09:33.870", + "endTime": 576.69, + "endTimeFormatted": "00:09:36.690", + "speaker": "Travis", + "body": "question, Buzzsprout is going to be the channel we recommend" + }, + { + "startTime": 576.69, + "startTimeFormatted": "00:09:36.690", + "endTime": 579.96, + "endTimeFormatted": "00:09:39.960", + "speaker": "Travis", + "body": "because we know they have this kind of content. The reason that" + }, + { + "startTime": 579.96, + "startTimeFormatted": "00:09:39.960", + "endTime": 584.22, + "endTimeFormatted": "00:09:44.220", + "speaker": "Travis", + "body": "we split off Buzzcast the full episodes into a separate channel" + }, + { + "startTime": 584.34, + "startTimeFormatted": "00:09:44.340", + "endTime": 589.59, + "endTimeFormatted": "00:09:49.590", + "speaker": "Travis", + "body": "a couple of months ago, is because we noticed that those" + }, + { + "startTime": 589.59, + "startTimeFormatted": "00:09:49.590", + "endTime": 594.21, + "endTimeFormatted": "00:09:54.210", + "speaker": "Travis", + "body": "videos were not performing at all at the same level as the" + }, + { + "startTime": 594.54, + "startTimeFormatted": "00:09:54.540", + "endTime": 597.75, + "endTimeFormatted": "00:09:57.750", + "speaker": "Travis", + "body": "Podcasting, Q&A and other tutorial videos were doing. And" + }, + { + "startTime": 597.75, + "startTimeFormatted": "00:09:57.750", + "endTime": 600.51, + "endTimeFormatted": "00:10:00.510", + "speaker": "Travis", + "body": "that was a common practice we'd seen with other youtubers That" + }, + { + "startTime": 600.51, + "startTimeFormatted": "00:10:00.510", + "endTime": 603.69, + "endTimeFormatted": "00:10:03.690", + "speaker": "Travis", + "body": "created video podcasts, they would create new channels for" + }, + { + "startTime": 603.69, + "startTimeFormatted": "00:10:03.690", + "endTime": 606.03, + "endTimeFormatted": "00:10:06.030", + "speaker": "Travis", + "body": "them. And then if they had clips, that would be a third" + }, + { + "startTime": 606.03, + "startTimeFormatted": "00:10:06.030", + "endTime": 607.68, + "endTimeFormatted": "00:10:07.680", + "speaker": "Travis", + "body": "channel. So they would actually have three channels, they'd have" + }, + { + "startTime": 607.68, + "startTimeFormatted": "00:10:07.680", + "endTime": 610.44, + "endTimeFormatted": "00:10:10.440", + "speaker": "Travis", + "body": "their main YouTube channel, a full podcast channel and a clips" + }, + { + "startTime": 610.44, + "startTimeFormatted": "00:10:10.440", + "endTime": 614.13, + "endTimeFormatted": "00:10:14.130", + "speaker": "Travis", + "body": "channel, in order to make sure that they were kind of playing" + }, + { + "startTime": 614.13, + "startTimeFormatted": "00:10:14.130", + "endTime": 616.68, + "endTimeFormatted": "00:10:16.680", + "speaker": "Travis", + "body": "by the rules, the best practice of YouTube. So these were all" + }, + { + "startTime": 616.68, + "startTimeFormatted": "00:10:16.680", + "endTime": 619.89, + "endTimeFormatted": "00:10:19.890", + "speaker": "Travis", + "body": "things that we, you know, as we were experimenting, we weren't" + }, + { + "startTime": 619.89, + "startTimeFormatted": "00:10:19.890", + "endTime": 623.01, + "endTimeFormatted": "00:10:23.010", + "speaker": "Travis", + "body": "sure like, how far are we really going to carry this book? Like," + }, + { + "startTime": 623.01, + "startTimeFormatted": "00:10:23.010", + "endTime": 627.69, + "endTimeFormatted": "00:10:27.690", + "speaker": "Travis", + "body": "how invested Are we going to get into video Buzzcast. And so it" + }, + { + "startTime": 627.69, + "startTimeFormatted": "00:10:27.690", + "endTime": 630.15, + "endTimeFormatted": "00:10:30.150", + "speaker": "Travis", + "body": "didn't make sense to spin up a whole YouTube channel, we're" + }, + { + "startTime": 630.15, + "startTimeFormatted": "00:10:30.150", + "endTime": 632.55, + "endTimeFormatted": "00:10:32.550", + "speaker": "Travis", + "body": "just going to do a couple episodes and then retire it" + }, + { + "startTime": 632.55, + "startTimeFormatted": "00:10:32.550", + "endTime": 635.97, + "endTimeFormatted": "00:10:35.970", + "speaker": "Travis", + "body": "right. So we tested in our on our main channel first and said," + }, + { + "startTime": 635.97, + "startTimeFormatted": "00:10:35.970", + "endTime": 639.18, + "endTimeFormatted": "00:10:39.180", + "speaker": "Travis", + "body": "Okay, that's working. So then what if we took the next step," + }, + { + "startTime": 639.18, + "startTimeFormatted": "00:10:39.180", + "endTime": 641.67, + "endTimeFormatted": "00:10:41.670", + "speaker": "Travis", + "body": "and we made it consistent? And then what if we took the next" + }, + { + "startTime": 641.67, + "startTimeFormatted": "00:10:41.670", + "endTime": 644.1, + "endTimeFormatted": "00:10:44.100", + "speaker": "Travis", + "body": "step and made a separate, and so it's kind of like evolved over" + }, + { + "startTime": 644.1, + "startTimeFormatted": "00:10:44.100", + "endTime": 648.72, + "endTimeFormatted": "00:10:48.720", + "speaker": "Travis", + "body": "time. And now to Kevin's point, it's at the place where we just" + }, + { + "startTime": 648.72, + "startTimeFormatted": "00:10:48.720", + "endTime": 652.44, + "endTimeFormatted": "00:10:52.440", + "speaker": "Travis", + "body": "wanted to make sure, if we keep going on this trajectory, it's" + }, + { + "startTime": 652.44, + "startTimeFormatted": "00:10:52.440", + "endTime": 655.92, + "endTimeFormatted": "00:10:55.920", + "speaker": "Travis", + "body": "going to serve you guys, it's gonna make Buzzcast better for" + }, + { + "startTime": 655.92, + "startTimeFormatted": "00:10:55.920", + "endTime": 659.28, + "endTimeFormatted": "00:10:59.280", + "speaker": "Travis", + "body": "you. And it's also going to make sense in the grand scheme of the" + }, + { + "startTime": 659.28, + "startTimeFormatted": "00:10:59.280", + "endTime": 662.94, + "endTimeFormatted": "00:11:02.940", + "speaker": "Travis", + "body": "other things that we're doing to produce and create content. And" + }, + { + "startTime": 662.94, + "startTimeFormatted": "00:11:02.940", + "endTime": 666.48, + "endTimeFormatted": "00:11:06.480", + "speaker": "Travis", + "body": "so we're now at this nexus point where if we're going to be able" + }, + { + "startTime": 666.48, + "startTimeFormatted": "00:11:06.480", + "endTime": 670.29, + "endTimeFormatted": "00:11:10.290", + "speaker": "Travis", + "body": "to go back and record in the studio, you know, that has a" + }, + { + "startTime": 670.29, + "startTimeFormatted": "00:11:10.290", + "endTime": 672.75, + "endTimeFormatted": "00:11:12.750", + "speaker": "Travis", + "body": "level of production that even exceeds what we're currently" + }, + { + "startTime": 672.87, + "startTimeFormatted": "00:11:12.870", + "endTime": 677.37, + "endTimeFormatted": "00:11:17.370", + "speaker": "Travis", + "body": "what we were doing before. And, and so at this point in time, it" + }, + { + "startTime": 677.37, + "startTimeFormatted": "00:11:17.370", + "endTime": 681.03, + "endTimeFormatted": "00:11:21.030", + "speaker": "Travis", + "body": "makes more sense for us to pause it, knowing we can always turn" + }, + { + "startTime": 681.03, + "startTimeFormatted": "00:11:21.030", + "endTime": 684.27, + "endTimeFormatted": "00:11:24.270", + "speaker": "Travis", + "body": "it back on later. But just to double down and refocus our" + }, + { + "startTime": 684.27, + "startTimeFormatted": "00:11:24.270", + "endTime": 686.94, + "endTimeFormatted": "00:11:26.940", + "speaker": "Travis", + "body": "efforts on the audio only version of Buzzcast." + }, + { + "startTime": 687.3, + "startTimeFormatted": "00:11:27.300", + "endTime": 690.63, + "endTimeFormatted": "00:11:30.630", + "speaker": "Alban", + "body": "So if I can kind of tie this together with what are the" + }, + { + "startTime": 690.63, + "startTimeFormatted": "00:11:30.630", + "endTime": 695.43, + "endTimeFormatted": "00:11:35.430", + "speaker": "Alban", + "body": "best practices we have learned for YouTube, and podcasting, in" + }, + { + "startTime": 695.43, + "startTimeFormatted": "00:11:35.430", + "endTime": 700.47, + "endTimeFormatted": "00:11:40.470", + "speaker": "Alban", + "body": "particular, because podcasting is really growing on YouTube," + }, + { + "startTime": 701.13, + "startTimeFormatted": "00:11:41.130", + "endTime": 704.85, + "endTimeFormatted": "00:11:44.850", + "speaker": "Alban", + "body": "one out of five people now who say they listened to podcasts," + }, + { + "startTime": 704.85, + "startTimeFormatted": "00:11:44.850", + "endTime": 708.42, + "endTimeFormatted": "00:11:48.420", + "speaker": "Alban", + "body": "they listened to most of their podcasts on YouTube, one out of" + }, + { + "startTime": 708.42, + "startTimeFormatted": "00:11:48.420", + "endTime": 713.64, + "endTimeFormatted": "00:11:53.640", + "speaker": "Alban", + "body": "five, that's pretty remarkably high numbers. That comes from" + }, + { + "startTime": 713.7, + "startTimeFormatted": "00:11:53.700", + "endTime": 717.66, + "endTimeFormatted": "00:11:57.660", + "speaker": "Alban", + "body": "Edison research. I actually interviewed Tom Webster this" + }, + { + "startTime": 717.66, + "startTimeFormatted": "00:11:57.660", + "endTime": 721.29, + "endTimeFormatted": "00:12:01.290", + "speaker": "Alban", + "body": "morning, and he told me that so it's definitely working there." + }, + { + "startTime": 721.77, + "startTimeFormatted": "00:12:01.770", + "endTime": 726.06, + "endTimeFormatted": "00:12:06.060", + "speaker": "Alban", + "body": "But it takes a lot to make it work. And it was not stuff that" + }, + { + "startTime": 726.06, + "startTimeFormatted": "00:12:06.060", + "endTime": 730.02, + "endTimeFormatted": "00:12:10.020", + "speaker": "Alban", + "body": "was going to make sense for us to do. So. I think to do" + }, + { + "startTime": 730.08, + "startTimeFormatted": "00:12:10.080", + "endTime": 734.13, + "endTimeFormatted": "00:12:14.130", + "speaker": "Alban", + "body": "podcasts, well on YouTube, you probably need to be recording a" + }, + { + "startTime": 734.13, + "startTimeFormatted": "00:12:14.130", + "endTime": 739.62, + "endTimeFormatted": "00:12:19.620", + "speaker": "Alban", + "body": "person so that you have that live engaging element. Because I" + }, + { + "startTime": 739.62, + "startTimeFormatted": "00:12:19.620", + "endTime": 743.49, + "endTimeFormatted": "00:12:23.490", + "speaker": "Alban", + "body": "don't know how to say this exactly. But like, the level of" + }, + { + "startTime": 743.49, + "startTimeFormatted": "00:12:23.490", + "endTime": 748.62, + "endTimeFormatted": "00:12:28.620", + "speaker": "Alban", + "body": "engagement you want to see between the hosts during a audio" + }, + { + "startTime": 748.71, + "startTimeFormatted": "00:12:28.710", + "endTime": 753.03, + "endTimeFormatted": "00:12:33.030", + "speaker": "Alban", + "body": "and a video medium is very different. Right now, like I can" + }, + { + "startTime": 753.03, + "startTimeFormatted": "00:12:33.030", + "endTime": 756.24, + "endTimeFormatted": "00:12:36.240", + "speaker": "Alban", + "body": "see Kevin and Travis and like Kevin looks kind of" + }, + { + "startTime": 756.24, + "startTimeFormatted": "00:12:36.240", + "endTime": 759.33, + "endTimeFormatted": "00:12:39.330", + "speaker": "Alban", + "body": "disinterested. That doesn't bother anybody who's just" + }, + { + "startTime": 759.33, + "startTimeFormatted": "00:12:39.330", + "endTime": 761.34, + "endTimeFormatted": "00:12:41.340", + "speaker": "Alban", + "body": "listening to this because they go, Oh, Kevin's probably" + }, + { + "startTime": 761.34, + "startTimeFormatted": "00:12:41.340", + "endTime": 768.06, + "endTimeFormatted": "00:12:48.060", + "speaker": "Alban", + "body": "listening attentively. But you know what? But if we're on" + }, + { + "startTime": 768.06, + "startTimeFormatted": "00:12:48.060", + "endTime": 771.06, + "endTimeFormatted": "00:12:51.060", + "speaker": "Alban", + "body": "video, I'd be the first comment we ever got on one of our" + }, + { + "startTime": 771.06, + "startTimeFormatted": "00:12:51.060", + "endTime": 774.57, + "endTimeFormatted": "00:12:54.570", + "speaker": "Alban", + "body": "Buzzcast episodes was why does albot look so mad. And I was" + }, + { + "startTime": 774.57, + "startTimeFormatted": "00:12:54.570", + "endTime": 779.19, + "endTimeFormatted": "00:12:59.190", + "speaker": "Alban", + "body": "like, Oh, that's just my face looks. That's just me. Like," + }, + { + "startTime": 779.19, + "startTimeFormatted": "00:12:59.190", + "endTime": 783.63, + "endTimeFormatted": "00:13:03.630", + "speaker": "Alban", + "body": "that's just me not smiling. And so that works perfectly fine." + }, + { + "startTime": 783.66, + "startTimeFormatted": "00:13:03.660", + "endTime": 787.23, + "endTimeFormatted": "00:13:07.230", + "speaker": "Alban", + "body": "When you're recording long distance recordings. When it's" + }, + { + "startTime": 787.23, + "startTimeFormatted": "00:13:07.230", + "endTime": 791.55, + "endTimeFormatted": "00:13:11.550", + "speaker": "Alban", + "body": "on video, it starts to look a little weird. And you can either" + }, + { + "startTime": 791.58, + "startTimeFormatted": "00:13:11.580", + "endTime": 795.51, + "endTimeFormatted": "00:13:15.510", + "speaker": "Alban", + "body": "kind of over fake enthusiasm, or you can get together in an audio" + }, + { + "startTime": 795.51, + "startTimeFormatted": "00:13:15.510", + "endTime": 799.38, + "endTimeFormatted": "00:13:19.380", + "speaker": "Alban", + "body": "studio get together in a studio in person. So like, get together" + }, + { + "startTime": 799.38, + "startTimeFormatted": "00:13:19.380", + "endTime": 803.37, + "endTimeFormatted": "00:13:23.370", + "speaker": "Alban", + "body": "in person, I think is a very high recommendation, they should" + }, + { + "startTime": 803.37, + "startTimeFormatted": "00:13:23.370", + "endTime": 808.2, + "endTimeFormatted": "00:13:28.200", + "speaker": "Alban", + "body": "try to get that number, you know, if at all possible, then" + }, + { + "startTime": 808.23, + "startTimeFormatted": "00:13:28.230", + "endTime": 811.38, + "endTimeFormatted": "00:13:31.380", + "speaker": "Alban", + "body": "you've also got to have like multiple shots to be able to" + }, + { + "startTime": 811.38, + "startTimeFormatted": "00:13:31.380", + "endTime": 814.47, + "endTimeFormatted": "00:13:34.470", + "speaker": "Alban", + "body": "keep it interesting. So that's probably a camera on each host." + }, + { + "startTime": 815.01, + "startTimeFormatted": "00:13:35.010", + "endTime": 818.7, + "endTimeFormatted": "00:13:38.700", + "speaker": "Alban", + "body": "Maybe an additional wide angle camera, you can see that we've" + }, + { + "startTime": 818.7, + "startTimeFormatted": "00:13:38.700", + "endTime": 822.09, + "endTimeFormatted": "00:13:42.090", + "speaker": "Alban", + "body": "experimented this in some of our Podcasting Q&A videos is" + }, + { + "startTime": 822.09, + "startTimeFormatted": "00:13:42.090", + "endTime": 825.93, + "endTimeFormatted": "00:13:45.930", + "speaker": "Alban", + "body": "rolling, I think three different cameras now all at once, and" + }, + { + "startTime": 825.93, + "startTimeFormatted": "00:13:45.930", + "endTime": 830.7, + "endTimeFormatted": "00:13:50.700", + "speaker": "Alban", + "body": "then we flipped between them. For us to do the three of us in" + }, + { + "startTime": 830.7, + "startTimeFormatted": "00:13:50.700", + "endTime": 835.11, + "endTimeFormatted": "00:13:55.110", + "speaker": "Alban", + "body": "the studio would require us probably to be shooting like" + }, + { + "startTime": 835.11, + "startTimeFormatted": "00:13:55.110", + "endTime": 839.91, + "endTimeFormatted": "00:13:59.910", + "speaker": "Alban", + "body": "four or five cameras at a time. And then the, you know, that" + }, + { + "startTime": 839.91, + "startTimeFormatted": "00:13:59.910", + "endTime": 843.33, + "endTimeFormatted": "00:14:03.330", + "speaker": "Alban", + "body": "really ramps up the amount of video editing that we're doing." + }, + { + "startTime": 843.51, + "startTimeFormatted": "00:14:03.510", + "endTime": 846.51, + "endTimeFormatted": "00:14:06.510", + "speaker": "Alban", + "body": "Okay, so we're buying a bunch of cameras. We're buying, we're" + }, + { + "startTime": 846.51, + "startTimeFormatted": "00:14:06.510", + "endTime": 849.96, + "endTimeFormatted": "00:14:09.960", + "speaker": "Alban", + "body": "doing more in video editing. We're getting us all together in" + }, + { + "startTime": 849.96, + "startTimeFormatted": "00:14:09.960", + "endTime": 853.26, + "endTimeFormatted": "00:14:13.260", + "speaker": "Alban", + "body": "the studio in the most dangerous, dangerous COVID" + }, + { + "startTime": 853.26, + "startTimeFormatted": "00:14:13.260", + "endTime": 857.79, + "endTimeFormatted": "00:14:17.790", + "speaker": "Alban", + "body": "hotspot United States right now. So three negatives, and all for" + }, + { + "startTime": 857.79, + "startTimeFormatted": "00:14:17.790", + "endTime": 861.09, + "endTimeFormatted": "00:14:21.090", + "speaker": "Alban", + "body": "the benefit of starting a new YouTube channel that isn't" + }, + { + "startTime": 861.12, + "startTimeFormatted": "00:14:21.120", + "endTime": 864.93, + "endTimeFormatted": "00:14:24.930", + "speaker": "Alban", + "body": "exactly in alignment with what we want. So that's to kind of" + }, + { + "startTime": 864.93, + "startTimeFormatted": "00:14:24.930", + "endTime": 868.29, + "endTimeFormatted": "00:14:28.290", + "speaker": "Alban", + "body": "wrap it up quickly. What how we're thinking about this. Maybe" + }, + { + "startTime": 868.29, + "startTimeFormatted": "00:14:28.290", + "endTime": 872.34, + "endTimeFormatted": "00:14:32.340", + "speaker": "Alban", + "body": "we come back, maybe not. But until next time, listen to us on" + }, + { + "startTime": 872.34, + "startTimeFormatted": "00:14:32.340", + "endTime": 874.71, + "endTimeFormatted": "00:14:34.710", + "speaker": "Alban", + "body": "our RSS backed podcast." + }, + { + "startTime": 875.099, + "startTimeFormatted": "00:14:35.099", + "endTime": 878.669, + "endTimeFormatted": "00:14:38.669", + "speaker": "Travis", + "body": "Yes, we are definitely not going anywhere. You'll just" + }, + { + "startTime": 878.669, + "startTimeFormatted": "00:14:38.669", + "endTime": 881.399, + "endTimeFormatted": "00:14:41.399", + "speaker": "Travis", + "body": "need to listen to us anywhere except for Spotify will be." + }, + { + "startTime": 882.42, + "startTimeFormatted": "00:14:42.420", + "endTime": 885.27, + "endTimeFormatted": "00:14:45.270", + "speaker": "Alban", + "body": "This is basically Apple podcasts and indie apps" + }, + { + "startTime": 885.27, + "startTimeFormatted": "00:14:45.270", + "endTime": 888.27, + "endTimeFormatted": "00:14:48.270", + "speaker": "Alban", + "body": "exclusive now. Yeah, I would say so. I would say so." + }, + { + "startTime": 888.569, + "startTimeFormatted": "00:14:48.569", + "endTime": 890.849, + "endTimeFormatted": "00:14:50.849", + "speaker": "Kevin", + "body": "Yeah. I think it's an interesting point that you" + }, + { + "startTime": 890.849, + "startTimeFormatted": "00:14:50.849", + "endTime": 893.339, + "endTimeFormatted": "00:14:53.339", + "speaker": "Kevin", + "body": "talked about when you talk about your interview with Tom Webster" + }, + { + "startTime": 893.339, + "startTimeFormatted": "00:14:53.339", + "endTime": 896.219, + "endTimeFormatted": "00:14:56.219", + "speaker": "Kevin", + "body": "and he's saying that one in five podcasts are roughly 20% of" + }, + { + "startTime": 896.249, + "startTimeFormatted": "00:14:56.249", + "endTime": 899.969, + "endTimeFormatted": "00:14:59.969", + "speaker": "Kevin", + "body": "people listening the podcast in YouTube, and I can't help it" + }, + { + "startTime": 899.999, + "startTimeFormatted": "00:14:59.999", + "endTime": 905.399, + "endTimeFormatted": "00:15:05.399", + "speaker": "Kevin", + "body": "think that that is it just don't think that there's a stat that" + }, + { + "startTime": 905.399, + "startTimeFormatted": "00:15:05.399", + "endTime": 910.259, + "endTimeFormatted": "00:15:10.259", + "speaker": "Kevin", + "body": "we should just take without some additional thought, right? Like" + }, + { + "startTime": 910.619, + "startTimeFormatted": "00:15:10.619", + "endTime": 912.539, + "endTimeFormatted": "00:15:12.539", + "speaker": "Kevin", + "body": "listening to a podcast and YouTube is a different" + }, + { + "startTime": 912.539, + "startTimeFormatted": "00:15:12.539", + "endTime": 915.989, + "endTimeFormatted": "00:15:15.989", + "speaker": "Kevin", + "body": "experience than what a lot of us who produce podcasts are in the" + }, + { + "startTime": 915.989, + "startTimeFormatted": "00:15:15.989", + "endTime": 918.089, + "endTimeFormatted": "00:15:18.089", + "speaker": "Kevin", + "body": "podcasting space probably think about when we think about" + }, + { + "startTime": 918.119, + "startTimeFormatted": "00:15:18.119", + "endTime": 921.329, + "endTimeFormatted": "00:15:21.329", + "speaker": "Kevin", + "body": "podcasting, like the benefits in the beauty of podcasting is it's" + }, + { + "startTime": 921.329, + "startTimeFormatted": "00:15:21.329", + "endTime": 923.909, + "endTimeFormatted": "00:15:23.909", + "speaker": "Kevin", + "body": "it's passive, it's something that you can do not only on" + }, + { + "startTime": 923.909, + "startTimeFormatted": "00:15:23.909", + "endTime": 926.069, + "endTimeFormatted": "00:15:26.069", + "speaker": "Kevin", + "body": "demand, but at your convenience while you're doing other things" + }, + { + "startTime": 926.069, + "startTimeFormatted": "00:15:26.069", + "endTime": 927.899, + "endTimeFormatted": "00:15:27.899", + "speaker": "Kevin", + "body": "while you're doing housework while you're exercising, while" + }, + { + "startTime": 927.899, + "startTimeFormatted": "00:15:27.899", + "endTime": 930.329, + "endTimeFormatted": "00:15:30.329", + "speaker": "Kevin", + "body": "you're at work while you're driving a car, you the YouTube" + }, + { + "startTime": 930.329, + "startTimeFormatted": "00:15:30.329", + "endTime": 934.229, + "endTimeFormatted": "00:15:34.229", + "speaker": "Kevin", + "body": "experience is different than that. And so while the YouTube" + }, + { + "startTime": 934.229, + "startTimeFormatted": "00:15:34.229", + "endTime": 937.199, + "endTimeFormatted": "00:15:37.199", + "speaker": "Kevin", + "body": "ecosystem is huge, and it might be a lot more mainstream in" + }, + { + "startTime": 937.199, + "startTimeFormatted": "00:15:37.199", + "endTime": 939.239, + "endTimeFormatted": "00:15:39.239", + "speaker": "Kevin", + "body": "terms of the number of people who engage in that space, and" + }, + { + "startTime": 939.239, + "startTimeFormatted": "00:15:39.239", + "endTime": 941.819, + "endTimeFormatted": "00:15:41.819", + "speaker": "Kevin", + "body": "then at some point, click on something that is calling itself" + }, + { + "startTime": 941.819, + "startTimeFormatted": "00:15:41.819", + "endTime": 945.929, + "endTimeFormatted": "00:15:45.929", + "speaker": "Kevin", + "body": "a podcast, it's, it might just be an exposure thing, it might" + }, + { + "startTime": 945.929, + "startTimeFormatted": "00:15:45.929", + "endTime": 947.849, + "endTimeFormatted": "00:15:47.849", + "speaker": "Kevin", + "body": "just be the size of the ecosystem thing, it might not" + }, + { + "startTime": 947.849, + "startTimeFormatted": "00:15:47.849", + "endTime": 952.049, + "endTimeFormatted": "00:15:52.049", + "speaker": "Kevin", + "body": "necessarily be what we would consider a podcast and all the" + }, + { + "startTime": 952.049, + "startTimeFormatted": "00:15:52.049", + "endTime": 953.939, + "endTimeFormatted": "00:15:53.939", + "speaker": "Kevin", + "body": "great benefits that go along with podcasting. And I don't" + }, + { + "startTime": 953.939, + "startTimeFormatted": "00:15:53.939", + "endTime": 956.789, + "endTimeFormatted": "00:15:56.789", + "speaker": "Kevin", + "body": "want to get into the details of is it does it really have an RSS" + }, + { + "startTime": 956.789, + "startTimeFormatted": "00:15:56.789", + "endTime": 958.439, + "endTimeFormatted": "00:15:58.439", + "speaker": "Kevin", + "body": "feed and all that stuff, that's not really what I'm talking" + }, + { + "startTime": 958.439, + "startTimeFormatted": "00:15:58.439", + "endTime": 960.659, + "endTimeFormatted": "00:16:00.659", + "speaker": "Kevin", + "body": "about. I'm just kind of talking about the size of the medium and" + }, + { + "startTime": 960.659, + "startTimeFormatted": "00:16:00.659", + "endTime": 962.999, + "endTimeFormatted": "00:16:02.999", + "speaker": "Kevin", + "body": "the number of people who at some point during their normal day," + }, + { + "startTime": 963.209, + "startTimeFormatted": "00:16:03.209", + "endTime": 965.789, + "endTimeFormatted": "00:16:05.789", + "speaker": "Kevin", + "body": "flip open YouTube, and might click on something that is" + }, + { + "startTime": 965.789, + "startTimeFormatted": "00:16:05.789", + "endTime": 971.129, + "endTimeFormatted": "00:16:11.129", + "speaker": "Kevin", + "body": "calling itself a podcast. So that being said, YouTube is a" + }, + { + "startTime": 971.159, + "startTimeFormatted": "00:16:11.159", + "endTime": 973.769, + "endTimeFormatted": "00:16:13.769", + "speaker": "Kevin", + "body": "fine place for you to distribute content and being creator. But" + }, + { + "startTime": 973.769, + "startTimeFormatted": "00:16:13.769", + "endTime": 976.289, + "endTimeFormatted": "00:16:16.289", + "speaker": "Kevin", + "body": "hopefully, there's some takeaways from what we've" + }, + { + "startTime": 976.289, + "startTimeFormatted": "00:16:16.289", + "endTime": 978.719, + "endTimeFormatted": "00:16:18.719", + "speaker": "Kevin", + "body": "experienced over the past year, pressing into the YouTube Space" + }, + { + "startTime": 978.719, + "startTimeFormatted": "00:16:18.719", + "endTime": 982.439, + "endTimeFormatted": "00:16:22.439", + "speaker": "Kevin", + "body": "a little bit in terms of putting a podcast onto YouTube, there's" + }, + { + "startTime": 982.439, + "startTimeFormatted": "00:16:22.439", + "endTime": 985.829, + "endTimeFormatted": "00:16:25.829", + "speaker": "Kevin", + "body": "a lot more that goes into it than just recording a zoom call," + }, + { + "startTime": 985.949, + "startTimeFormatted": "00:16:25.949", + "endTime": 988.109, + "endTimeFormatted": "00:16:28.109", + "speaker": "Kevin", + "body": "and then throwing it up there. If you really want to succeed," + }, + { + "startTime": 988.469, + "startTimeFormatted": "00:16:28.469", + "endTime": 990.059, + "endTimeFormatted": "00:16:30.059", + "speaker": "Kevin", + "body": "you have to understand the algorithm, you have to" + }, + { + "startTime": 990.059, + "startTimeFormatted": "00:16:30.059", + "endTime": 992.189, + "endTimeFormatted": "00:16:32.189", + "speaker": "Kevin", + "body": "understand how the medium works, you have to understand what type" + }, + { + "startTime": 992.189, + "startTimeFormatted": "00:16:32.189", + "endTime": 995.249, + "endTimeFormatted": "00:16:35.249", + "speaker": "Kevin", + "body": "of content works there is, this is a larger level of commitment." + }, + { + "startTime": 995.399, + "startTimeFormatted": "00:16:35.399", + "endTime": 998.189, + "endTimeFormatted": "00:16:38.189", + "speaker": "Kevin", + "body": "And you might find a huge audience and huge following" + }, + { + "startTime": 998.189, + "startTimeFormatted": "00:16:38.189", + "endTime": 1003.259, + "endTimeFormatted": "00:16:43.259", + "speaker": "Kevin", + "body": "there. But it's probably not going to be it's not an" + }, + { + "startTime": 1003.259, + "startTimeFormatted": "00:16:43.259", + "endTime": 1005.269, + "endTimeFormatted": "00:16:45.269", + "speaker": "Kevin", + "body": "overnight success. It is a lot of work. And it is very" + }, + { + "startTime": 1005.269, + "startTimeFormatted": "00:16:45.269", + "endTime": 1007.849, + "endTimeFormatted": "00:16:47.849", + "speaker": "Kevin", + "body": "different than audio only podcasting. So as we continue to" + }, + { + "startTime": 1007.849, + "startTimeFormatted": "00:16:47.849", + "endTime": 1012.559, + "endTimeFormatted": "00:16:52.559", + "speaker": "Kevin", + "body": "unpack, and learn things about how to use YouTube, or other" + }, + { + "startTime": 1012.559, + "startTimeFormatted": "00:16:52.559", + "endTime": 1015.649, + "endTimeFormatted": "00:16:55.649", + "speaker": "Kevin", + "body": "channels to grow your main podcast, your audio only" + }, + { + "startTime": 1015.649, + "startTimeFormatted": "00:16:55.649", + "endTime": 1018.379, + "endTimeFormatted": "00:16:58.379", + "speaker": "Kevin", + "body": "podcast, it's distributed through RSS, we will continue to" + }, + { + "startTime": 1018.379, + "startTimeFormatted": "00:16:58.379", + "endTime": 1020.179, + "endTimeFormatted": "00:17:00.179", + "speaker": "Kevin", + "body": "share those learnings with you and hopefully make you a better" + }, + { + "startTime": 1020.179, + "startTimeFormatted": "00:17:00.179", + "endTime": 1023.719, + "endTimeFormatted": "00:17:03.719", + "speaker": "Kevin", + "body": "podcaster. But this is where we are today. And the decisions" + }, + { + "startTime": 1023.719, + "startTimeFormatted": "00:17:03.719", + "endTime": 1027.649, + "endTimeFormatted": "00:17:07.649", + "speaker": "Kevin", + "body": "we've made. So this podcast will not be on YouTube, and not in" + }, + { + "startTime": 1027.649, + "startTimeFormatted": "00:17:07.649", + "endTime": 1031.639, + "endTimeFormatted": "00:17:11.639", + "speaker": "Kevin", + "body": "video form. And as we learn more and grow more, we'll share all" + }, + { + "startTime": 1031.639, + "startTimeFormatted": "00:17:11.639", + "endTime": 1032.179, + "endTimeFormatted": "00:17:12.179", + "speaker": "Kevin", + "body": "our learnings with" + }, + { + "startTime": 1035.42, + "startTimeFormatted": "00:17:15.420", + "endTime": 1037.61, + "endTimeFormatted": "00:17:17.610", + "speaker": "Travis", + "body": "so if you've been a Buzzcast listener for any length" + }, + { + "startTime": 1037.61, + "startTimeFormatted": "00:17:17.610", + "endTime": 1041.9, + "endTimeFormatted": "00:17:21.900", + "speaker": "Travis", + "body": "of time, you know, we're big fans of the podcast index and" + }, + { + "startTime": 1041.9, + "startTimeFormatted": "00:17:21.900", + "endTime": 1045.08, + "endTimeFormatted": "00:17:25.080", + "speaker": "Travis", + "body": "podcasting 2.0, that entire group, that entire working group" + }, + { + "startTime": 1045.38, + "startTimeFormatted": "00:17:25.380", + "endTime": 1049.28, + "endTimeFormatted": "00:17:29.280", + "speaker": "Travis", + "body": "of people dedicating themselves to improving the open podcast" + }, + { + "startTime": 1049.28, + "startTimeFormatted": "00:17:29.280", + "endTime": 1053, + "endTimeFormatted": "00:17:33.000", + "speaker": "Travis", + "body": "ecosystem, and creating really fun new features that allow you" + }, + { + "startTime": 1053, + "startTimeFormatted": "00:17:33.000", + "endTime": 1056.42, + "endTimeFormatted": "00:17:36.420", + "speaker": "Travis", + "body": "as a creator, to make awesome content and help your listeners" + }, + { + "startTime": 1056.69, + "startTimeFormatted": "00:17:36.690", + "endTime": 1060.35, + "endTimeFormatted": "00:17:40.350", + "speaker": "Travis", + "body": "really engage with your show in some really unique ways. Kevin" + }, + { + "startTime": 1060.35, + "startTimeFormatted": "00:17:40.350", + "endTime": 1064.07, + "endTimeFormatted": "00:17:44.070", + "speaker": "Travis", + "body": "and Tom had an opportunity to sit down with Dave Jones, who is" + }, + { + "startTime": 1064.07, + "startTimeFormatted": "00:17:44.070", + "endTime": 1067.31, + "endTimeFormatted": "00:17:47.310", + "speaker": "Travis", + "body": "working on the podcast index and podcasting 2.0 to talk about a" + }, + { + "startTime": 1067.31, + "startTimeFormatted": "00:17:47.310", + "endTime": 1072.17, + "endTimeFormatted": "00:17:52.170", + "speaker": "Travis", + "body": "new feature that Buzzsprout is now supporting, and also tease" + }, + { + "startTime": 1072.17, + "startTimeFormatted": "00:17:52.170", + "endTime": 1074.84, + "endTimeFormatted": "00:17:54.840", + "speaker": "Travis", + "body": "out some fun new things that they have coming down the" + }, + { + "startTime": 1074.84, + "startTimeFormatted": "00:17:54.840", + "endTime": 1077.96, + "endTimeFormatted": "00:17:57.960", + "speaker": "Travis", + "body": "pipeline. So here's that conversation between Kevin Tom" + }, + { + "startTime": 1078.17, + "startTimeFormatted": "00:17:58.170", + "endTime": 1079.01, + "endTimeFormatted": "00:17:59.010", + "speaker": "Travis", + "body": "and Dave Jones." + }, + { + "startTime": 1079.31, + "startTimeFormatted": "00:17:59.310", + "endTime": 1081.59, + "endTimeFormatted": "00:18:01.590", + "speaker": "Tom", + "body": "This is Tom Rossi, technical co founder of" + }, + { + "startTime": 1081.59, + "startTimeFormatted": "00:18:01.590", + "endTime": 1086.99, + "endTimeFormatted": "00:18:06.990", + "speaker": "Tom", + "body": "Buzzsprout. And I am glad to be joined by Dave Jones, one of the" + }, + { + "startTime": 1086.99, + "startTimeFormatted": "00:18:06.990", + "endTime": 1090.11, + "endTimeFormatted": "00:18:10.110", + "speaker": "Tom", + "body": "two guys running the podcast index, Dave Jones and Adam curry" + }, + { + "startTime": 1090.11, + "startTimeFormatted": "00:18:10.110", + "endTime": 1093.86, + "endTimeFormatted": "00:18:13.860", + "speaker": "Tom", + "body": "have been doing amazing work with the podcast index. Dave," + }, + { + "startTime": 1093.89, + "startTimeFormatted": "00:18:13.890", + "endTime": 1097.91, + "endTimeFormatted": "00:18:17.910", + "speaker": "Tom", + "body": "welcome to the show. Thanks for all that you're doing. Tell us a" + }, + { + "startTime": 1097.91, + "startTimeFormatted": "00:18:17.910", + "endTime": 1100.64, + "endTimeFormatted": "00:18:20.640", + "speaker": "Tom", + "body": "little bit about the podcast index and what you guys are" + }, + { + "startTime": 1100.64, + "startTimeFormatted": "00:18:20.640", + "endTime": 1101.27, + "endTimeFormatted": "00:18:21.270", + "speaker": "Tom", + "body": "doing over there." + }, + { + "startTime": 1101.66, + "startTimeFormatted": "00:18:21.660", + "endTime": 1103.64, + "endTimeFormatted": "00:18:23.640", + "speaker": "Dave", + "body": "Let's see, what are we doing at the podcast? And what" + }, + { + "startTime": 1103.64, + "startTimeFormatted": "00:18:23.640", + "endTime": 1104.84, + "endTimeFormatted": "00:18:24.840", + "speaker": "Dave", + "body": "are we not doing at podcast?" + }, + { + "startTime": 1105.44, + "startTimeFormatted": "00:18:25.440", + "endTime": 1109.82, + "endTimeFormatted": "00:18:29.820", + "speaker": "Kevin", + "body": "So Dave, the podcasting to auto project is like it" + }, + { + "startTime": 1109.82, + "startTimeFormatted": "00:18:29.820", + "endTime": 1112.7, + "endTimeFormatted": "00:18:32.700", + "speaker": "Kevin", + "body": "incorporates the podcast index and the podcasting namespace" + }, + { + "startTime": 1112.7, + "startTimeFormatted": "00:18:32.700", + "endTime": 1114.65, + "endTimeFormatted": "00:18:34.650", + "speaker": "Kevin", + "body": "right and a whole bunch of things. Can you tell us like" + }, + { + "startTime": 1114.65, + "startTimeFormatted": "00:18:34.650", + "endTime": 1116.69, + "endTimeFormatted": "00:18:36.690", + "speaker": "Kevin", + "body": "what's the difference? What are the two functions that those" + }, + { + "startTime": 1116.72, + "startTimeFormatted": "00:18:36.720", + "endTime": 1118.88, + "endTimeFormatted": "00:18:38.880", + "speaker": "Kevin", + "body": "those two things sort of where they come together? How does it" + }, + { + "startTime": 1118.88, + "startTimeFormatted": "00:18:38.880", + "endTime": 1119.3, + "endTimeFormatted": "00:18:39.300", + "speaker": "Kevin", + "body": "all work?" + }, + { + "startTime": 1119.45, + "startTimeFormatted": "00:18:39.450", + "endTime": 1122.48, + "endTimeFormatted": "00:18:42.480", + "speaker": "Dave", + "body": "Yeah, we get this question a lot. What the heck are y'all" + }, + { + "startTime": 1122.54, + "startTimeFormatted": "00:18:42.540", + "endTime": 1125.63, + "endTimeFormatted": "00:18:45.630", + "speaker": "Dave", + "body": "doing with all these various projects? And then what did they" + }, + { + "startTime": 1125.63, + "startTimeFormatted": "00:18:45.630", + "endTime": 1131.51, + "endTimeFormatted": "00:18:51.510", + "speaker": "Dave", + "body": "even mean? And so podcasting 2.0 is the name of our podcast, but" + }, + { + "startTime": 1131.51, + "startTimeFormatted": "00:18:51.510", + "endTime": 1134.36, + "endTimeFormatted": "00:18:54.360", + "speaker": "Dave", + "body": "it's also the name of the broader movement of trying to" + }, + { + "startTime": 1134.36, + "startTimeFormatted": "00:18:54.360", + "endTime": 1137.27, + "endTimeFormatted": "00:18:57.270", + "speaker": "Dave", + "body": "preserve, protect and extend the open RSS ecosystem," + }, + { + "startTime": 1137.3, + "startTimeFormatted": "00:18:57.300", + "endTime": 1139.01, + "endTimeFormatted": "00:18:59.010", + "speaker": "Kevin", + "body": "right. When we say this, this is a little bit different" + }, + { + "startTime": 1139.01, + "startTimeFormatted": "00:18:59.010", + "endTime": 1141.68, + "endTimeFormatted": "00:19:01.680", + "speaker": "Kevin", + "body": "than what like fireside chat introduced it podcast movement," + }, + { + "startTime": 1141.68, + "startTimeFormatted": "00:19:01.680", + "endTime": 1144.11, + "endTimeFormatted": "00:19:04.110", + "speaker": "Kevin", + "body": "is podcasting to Dotto, right. Yeah," + }, + { + "startTime": 1144.26, + "startTimeFormatted": "00:19:04.260", + "endTime": 1147.68, + "endTimeFormatted": "00:19:07.680", + "speaker": "Dave", + "body": "I gotta hope it is completely different. Yeah, but" + }, + { + "startTime": 1147.68, + "startTimeFormatted": "00:19:07.680", + "endTime": 1153.29, + "endTimeFormatted": "00:19:13.290", + "speaker": "Dave", + "body": "podcasting. 2.0 is just an open source, volunteer movement of" + }, + { + "startTime": 1153.29, + "startTimeFormatted": "00:19:13.290", + "endTime": 1157.13, + "endTimeFormatted": "00:19:17.130", + "speaker": "Dave", + "body": "people coming up with ideas and launching projects to help" + }, + { + "startTime": 1157.37, + "startTimeFormatted": "00:19:17.370", + "endTime": 1161.75, + "endTimeFormatted": "00:19:21.750", + "speaker": "Dave", + "body": "preserve the open RSS ecosystem of podcasting, and podcasting" + }, + { + "startTime": 1161.78, + "startTimeFormatted": "00:19:21.780", + "endTime": 1164.54, + "endTimeFormatted": "00:19:24.540", + "speaker": "Dave", + "body": "inside the app. So pod inside podcasting 2.0. But that would" + }, + { + "startTime": 1164.54, + "startTimeFormatted": "00:19:24.540", + "endTime": 1166.97, + "endTimeFormatted": "00:19:26.970", + "speaker": "Dave", + "body": "be the podcast namespace where all these new features and tags" + }, + { + "startTime": 1166.97, + "startTimeFormatted": "00:19:26.970", + "endTime": 1170.03, + "endTimeFormatted": "00:19:30.030", + "speaker": "Dave", + "body": "are coming from. Also within podcasting, 2.0 would be" + }, + { + "startTime": 1170.03, + "startTimeFormatted": "00:19:30.030", + "endTime": 1173.72, + "endTimeFormatted": "00:19:33.720", + "speaker": "Dave", + "body": "something like pod ping, which allows hosts to rapidly notified" + }, + { + "startTime": 1173.84, + "startTimeFormatted": "00:19:33.840", + "endTime": 1176.93, + "endTimeFormatted": "00:19:36.930", + "speaker": "Dave", + "body": "apps and aggregators of new episodes, things like that." + }, + { + "startTime": 1176.96, + "startTimeFormatted": "00:19:36.960", + "endTime": 1180.23, + "endTimeFormatted": "00:19:40.230", + "speaker": "Dave", + "body": "That's all in the podcasting 2.0 side of things. The podcast" + }, + { + "startTime": 1180.26, + "startTimeFormatted": "00:19:40.260", + "endTime": 1184.85, + "endTimeFormatted": "00:19:44.850", + "speaker": "Dave", + "body": "index is the thing that we created at the very beginning in" + }, + { + "startTime": 1184.85, + "startTimeFormatted": "00:19:44.850", + "endTime": 1188.15, + "endTimeFormatted": "00:19:48.150", + "speaker": "Dave", + "body": "order to facilitate all these other things. So the podcast" + }, + { + "startTime": 1188.15, + "startTimeFormatted": "00:19:48.150", + "endTime": 1191.39, + "endTimeFormatted": "00:19:51.390", + "speaker": "Dave", + "body": "index is the largest directory of podcasts on the internet." + }, + { + "startTime": 1191.39, + "startTimeFormatted": "00:19:51.390", + "endTime": 1195.83, + "endTimeFormatted": "00:19:55.830", + "speaker": "Dave", + "body": "It's were like 4.1 million podcasts right now feeds. We are" + }, + { + "startTime": 1195.83, + "startTimeFormatted": "00:19:55.830", + "endTime": 1201.71, + "endTimeFormatted": "00:20:01.710", + "speaker": "Dave", + "body": "a directory and also an API for podcast app. to hook in to get" + }, + { + "startTime": 1201.71, + "startTimeFormatted": "00:20:01.710", + "endTime": 1204.29, + "endTimeFormatted": "00:20:04.290", + "speaker": "Dave", + "body": "their podcast data from, basically, they just start" + }, + { + "startTime": 1204.29, + "startTimeFormatted": "00:20:04.290", + "endTime": 1208.22, + "endTimeFormatted": "00:20:08.220", + "speaker": "Dave", + "body": "coding an app, they plug into us and they get all their data in," + }, + { + "startTime": 1208.34, + "startTimeFormatted": "00:20:08.340", + "endTime": 1212.21, + "endTimeFormatted": "00:20:12.210", + "speaker": "Dave", + "body": "it saves them a world of hurt on that side of things. So those," + }, + { + "startTime": 1212.45, + "startTimeFormatted": "00:20:12.450", + "endTime": 1216.47, + "endTimeFormatted": "00:20:16.470", + "speaker": "Dave", + "body": "the podcasts index is the APN directory, but geisen 2.0 is all" + }, + { + "startTime": 1216.47, + "startTimeFormatted": "00:20:16.470", + "endTime": 1218.6, + "endTimeFormatted": "00:20:18.600", + "speaker": "Dave", + "body": "the features and community movement." + }, + { + "startTime": 1219.23, + "startTimeFormatted": "00:20:19.230", + "endTime": 1222.35, + "endTimeFormatted": "00:20:22.350", + "speaker": "Kevin", + "body": "Right, and then huge opportunity with the index is" + }, + { + "startTime": 1222.35, + "startTimeFormatted": "00:20:22.350", + "endTime": 1224.93, + "endTimeFormatted": "00:20:24.930", + "speaker": "Kevin", + "body": "that we're not tied in or reliant on Apple anymore. So" + }, + { + "startTime": 1224.93, + "startTimeFormatted": "00:20:24.930", + "endTime": 1226.91, + "endTimeFormatted": "00:20:26.910", + "speaker": "Kevin", + "body": "like over the past two or three months, Apple's directory has" + }, + { + "startTime": 1226.91, + "startTimeFormatted": "00:20:26.910", + "endTime": 1229.61, + "endTimeFormatted": "00:20:29.610", + "speaker": "Kevin", + "body": "been having a ton of problems. Not to mention even before that," + }, + { + "startTime": 1229.61, + "startTimeFormatted": "00:20:29.610", + "endTime": 1231.77, + "endTimeFormatted": "00:20:31.770", + "speaker": "Kevin", + "body": "when it was working, well, it would take you probably a" + }, + { + "startTime": 1231.77, + "startTimeFormatted": "00:20:31.770", + "endTime": 1234.77, + "endTimeFormatted": "00:20:34.770", + "speaker": "Kevin", + "body": "minimum of two or three days up to a couple weeks to even get in" + }, + { + "startTime": 1234.98, + "startTimeFormatted": "00:20:34.980", + "endTime": 1237.71, + "endTimeFormatted": "00:20:37.710", + "speaker": "Kevin", + "body": "Apple podcast directory, then when you publish a new episode," + }, + { + "startTime": 1237.71, + "startTimeFormatted": "00:20:37.710", + "endTime": 1240.95, + "endTimeFormatted": "00:20:40.950", + "speaker": "Kevin", + "body": "it might be 24 hours or more before that new episode gets" + }, + { + "startTime": 1240.95, + "startTimeFormatted": "00:20:40.950", + "endTime": 1243.74, + "endTimeFormatted": "00:20:43.740", + "speaker": "Kevin", + "body": "released in search showing up on any of the apps that rely on" + }, + { + "startTime": 1243.74, + "startTimeFormatted": "00:20:43.740", + "endTime": 1246.95, + "endTimeFormatted": "00:20:46.950", + "speaker": "Kevin", + "body": "that directory. And the index solves all that along with other" + }, + { + "startTime": 1246.95, + "startTimeFormatted": "00:20:46.950", + "endTime": 1249.44, + "endTimeFormatted": "00:20:49.440", + "speaker": "Kevin", + "body": "technologies that you're developing as well like the pod" + }, + { + "startTime": 1249.44, + "startTimeFormatted": "00:20:49.440", + "endTime": 1250.46, + "endTimeFormatted": "00:20:50.460", + "speaker": "Kevin", + "body": "paying and everything else. Right." + }, + { + "startTime": 1250.52, + "startTimeFormatted": "00:20:50.520", + "endTime": 1253.52, + "endTimeFormatted": "00:20:53.520", + "speaker": "Dave", + "body": "Yeah, we started this whole project with with the" + }, + { + "startTime": 1253.52, + "startTimeFormatted": "00:20:53.520", + "endTime": 1256.7, + "endTimeFormatted": "00:20:56.700", + "speaker": "Dave", + "body": "directory and the API with the idea that we wanted to take" + }, + { + "startTime": 1257.21, + "startTimeFormatted": "00:20:57.210", + "endTime": 1262.25, + "endTimeFormatted": "00:21:02.250", + "speaker": "Dave", + "body": "Apple Apple's directory away from being the center of the" + }, + { + "startTime": 1262.25, + "startTimeFormatted": "00:21:02.250", + "endTime": 1265.43, + "endTimeFormatted": "00:21:05.430", + "speaker": "Dave", + "body": "podcasting universe, which has been for, you know, 15 years at" + }, + { + "startTime": 1265.43, + "startTimeFormatted": "00:21:05.430", + "endTime": 1270.71, + "endTimeFormatted": "00:21:10.710", + "speaker": "Dave", + "body": "least. And the idea there was that, you know, no, no knock on" + }, + { + "startTime": 1270.71, + "startTimeFormatted": "00:21:10.710", + "endTime": 1273.32, + "endTimeFormatted": "00:21:13.320", + "speaker": "Dave", + "body": "Apple, I mean, they've been good stewards of podcasting, it's" + }, + { + "startTime": 1273.32, + "startTimeFormatted": "00:21:13.320", + "endTime": 1277.82, + "endTimeFormatted": "00:21:17.820", + "speaker": "Dave", + "body": "just that it doesn't make a lot of sense for an open" + }, + { + "startTime": 1278.6, + "startTimeFormatted": "00:21:18.600", + "endTime": 1283.55, + "endTimeFormatted": "00:21:23.550", + "speaker": "Dave", + "body": "specification, like podcasting, an open system that anybody can" + }, + { + "startTime": 1283.55, + "startTimeFormatted": "00:21:23.550", + "endTime": 1289.07, + "endTimeFormatted": "00:21:29.070", + "speaker": "Dave", + "body": "participate in, it does not make a lot of sense for that. To be" + }, + { + "startTime": 1289.07, + "startTimeFormatted": "00:21:29.070", + "endTime": 1293.18, + "endTimeFormatted": "00:21:33.180", + "speaker": "Dave", + "body": "controlled by a single humongous entity like apple, I mean," + }, + { + "startTime": 1293.18, + "startTimeFormatted": "00:21:33.180", + "endTime": 1295.67, + "endTimeFormatted": "00:21:35.670", + "speaker": "Dave", + "body": "they're literally the biggest company in the world. And so" + }, + { + "startTime": 1295.67, + "startTimeFormatted": "00:21:35.670", + "endTime": 1297.89, + "endTimeFormatted": "00:21:37.890", + "speaker": "Dave", + "body": "it's sort of like you have this weird spectrum where you got" + }, + { + "startTime": 1297.89, + "startTimeFormatted": "00:21:37.890", + "endTime": 1301.82, + "endTimeFormatted": "00:21:41.820", + "speaker": "Dave", + "body": "podcasting, which is completely open, I can hand write an RSS" + }, + { + "startTime": 1301.82, + "startTimeFormatted": "00:21:41.820", + "endTime": 1305.15, + "endTimeFormatted": "00:21:45.150", + "speaker": "Dave", + "body": "feed today, and get into the inbox and create a podcast. And" + }, + { + "startTime": 1305.18, + "startTimeFormatted": "00:21:45.180", + "endTime": 1308.78, + "endTimeFormatted": "00:21:48.780", + "speaker": "Dave", + "body": "I can do it from my computer in five minutes. But then you have" + }, + { + "startTime": 1309.05, + "startTimeFormatted": "00:21:49.050", + "endTime": 1312.56, + "endTimeFormatted": "00:21:52.560", + "speaker": "Dave", + "body": "the directory where all the podcasts are found, his career" + }, + { + "startTime": 1312.59, + "startTimeFormatted": "00:21:52.590", + "endTime": 1316.22, + "endTimeFormatted": "00:21:56.220", + "speaker": "Dave", + "body": "is controlled by this huge corporation. So it really just" + }, + { + "startTime": 1316.22, + "startTimeFormatted": "00:21:56.220", + "endTime": 1320.06, + "endTimeFormatted": "00:22:00.060", + "speaker": "Dave", + "body": "didn't didn't make a lot of sense, the goal there was create" + }, + { + "startTime": 1320.06, + "startTimeFormatted": "00:22:00.060", + "endTime": 1323.93, + "endTimeFormatted": "00:22:03.930", + "speaker": "Dave", + "body": "a directory that is completely open, anybody can join it," + }, + { + "startTime": 1323.93, + "startTimeFormatted": "00:22:03.930", + "endTime": 1327.23, + "endTimeFormatted": "00:22:07.230", + "speaker": "Dave", + "body": "anybody can add to it, anybody can put their podcast into it in" + }, + { + "startTime": 1327.41, + "startTimeFormatted": "00:22:07.410", + "endTime": 1332.06, + "endTimeFormatted": "00:22:12.060", + "speaker": "Dave", + "body": "15 seconds. And then the next step, which is the which is the" + }, + { + "startTime": 1332.06, + "startTimeFormatted": "00:22:12.060", + "endTime": 1335.51, + "endTimeFormatted": "00:22:15.510", + "speaker": "Dave", + "body": "part that has to happen, make it available for free, and" + }, + { + "startTime": 1335.51, + "startTimeFormatted": "00:22:15.510", + "endTime": 1338.69, + "endTimeFormatted": "00:22:18.690", + "speaker": "Dave", + "body": "everybody can download it, you can download it our entire" + }, + { + "startTime": 1338.69, + "startTimeFormatted": "00:22:18.690", + "endTime": 1343.22, + "endTimeFormatted": "00:22:23.220", + "speaker": "Dave", + "body": "database right now from our From the homepage of our website, and" + }, + { + "startTime": 1343.37, + "startTimeFormatted": "00:22:23.370", + "endTime": 1345.47, + "endTimeFormatted": "00:22:25.470", + "speaker": "Dave", + "body": "do whatever you want with it, you can go create your own" + }, + { + "startTime": 1345.47, + "startTimeFormatted": "00:22:25.470", + "endTime": 1348.71, + "endTimeFormatted": "00:22:28.710", + "speaker": "Dave", + "body": "directory or your own API or your own apps. So if it's not" + }, + { + "startTime": 1348.71, + "startTimeFormatted": "00:22:28.710", + "endTime": 1352.07, + "endTimeFormatted": "00:22:32.070", + "speaker": "Dave", + "body": "free, then it doesn't solve any of the problem. And if you have" + }, + { + "startTime": 1352.07, + "startTimeFormatted": "00:22:32.070", + "endTime": 1354.35, + "endTimeFormatted": "00:22:34.350", + "speaker": "Dave", + "body": "to have us, it still doesn't solve the problem. You need to" + }, + { + "startTime": 1354.35, + "startTimeFormatted": "00:22:34.350", + "endTime": 1357.11, + "endTimeFormatted": "00:22:37.110", + "speaker": "Dave", + "body": "be we need to redistribute it. And so that's what we that was" + }, + { + "startTime": 1357.11, + "startTimeFormatted": "00:22:37.110", + "endTime": 1358.04, + "endTimeFormatted": "00:22:38.040", + "speaker": "Dave", + "body": "the Gulf in the beginning." + }, + { + "startTime": 1358.46, + "startTimeFormatted": "00:22:38.460", + "endTime": 1360.89, + "endTimeFormatted": "00:22:40.890", + "speaker": "Tom", + "body": "One of the features that I'm most excited about out of" + }, + { + "startTime": 1360.89, + "startTimeFormatted": "00:22:40.890", + "endTime": 1364.19, + "endTimeFormatted": "00:22:44.190", + "speaker": "Tom", + "body": "podcasting 2.0 is pod ping, can you tell us a little bit about" + }, + { + "startTime": 1364.19, + "startTimeFormatted": "00:22:44.190", + "endTime": 1364.46, + "endTimeFormatted": "00:22:44.460", + "speaker": "Tom", + "body": "that?" + }, + { + "startTime": 1364.52, + "startTimeFormatted": "00:22:44.520", + "endTime": 1367.43, + "endTimeFormatted": "00:22:47.430", + "speaker": "Dave", + "body": "Yeah, sure. podcasting suffers from the same thing that" + }, + { + "startTime": 1367.43, + "startTimeFormatted": "00:22:47.430", + "endTime": 1372.77, + "endTimeFormatted": "00:22:52.770", + "speaker": "Dave", + "body": "all RSS based infrastructure does it, what you have is a" + }, + { + "startTime": 1372.77, + "startTimeFormatted": "00:22:52.770", + "endTime": 1375.89, + "endTimeFormatted": "00:22:55.890", + "speaker": "Dave", + "body": "system where you publish an episode of whatever this is, or" + }, + { + "startTime": 1375.89, + "startTimeFormatted": "00:22:55.890", + "endTime": 1380.33, + "endTimeFormatted": "00:23:00.330", + "speaker": "Dave", + "body": "a blog post or anything, any bit of information, you publish that" + }, + { + "startTime": 1380.33, + "startTimeFormatted": "00:23:00.330", + "endTime": 1384.29, + "endTimeFormatted": "00:23:04.290", + "speaker": "Dave", + "body": "to an RSS feed, think of it like a WordPress blog. So then the" + }, + { + "startTime": 1384.29, + "startTimeFormatted": "00:23:04.290", + "endTime": 1387.35, + "endTimeFormatted": "00:23:07.350", + "speaker": "Dave", + "body": "RSS feed, which is just a file on a web server somewhere, it" + }, + { + "startTime": 1387.35, + "startTimeFormatted": "00:23:07.350", + "endTime": 1390.44, + "endTimeFormatted": "00:23:10.440", + "speaker": "Dave", + "body": "gets updated. How does the rest of the world know that you've" + }, + { + "startTime": 1390.44, + "startTimeFormatted": "00:23:10.440", + "endTime": 1393.65, + "endTimeFormatted": "00:23:13.650", + "speaker": "Dave", + "body": "just put a blog post up on your website, they have to be" + }, + { + "startTime": 1393.65, + "startTimeFormatted": "00:23:13.650", + "endTime": 1397.58, + "endTimeFormatted": "00:23:17.580", + "speaker": "Dave", + "body": "notified, or they have to go and check in there's, there's the" + }, + { + "startTime": 1397.58, + "startTimeFormatted": "00:23:17.580", + "endTime": 1400.94, + "endTimeFormatted": "00:23:20.940", + "speaker": "Dave", + "body": "only two ways to get that information. So just think of it" + }, + { + "startTime": 1400.94, + "startTimeFormatted": "00:23:20.940", + "endTime": 1404.33, + "endTimeFormatted": "00:23:24.330", + "speaker": "Dave", + "body": "like, you know, clicking on a website refresh button over and" + }, + { + "startTime": 1404.33, + "startTimeFormatted": "00:23:24.330", + "endTime": 1407.78, + "endTimeFormatted": "00:23:27.780", + "speaker": "Dave", + "body": "over and over just to see if something new pops up. That's" + }, + { + "startTime": 1407.78, + "startTimeFormatted": "00:23:27.780", + "endTime": 1411.44, + "endTimeFormatted": "00:23:31.440", + "speaker": "Dave", + "body": "essentially what all of these infrastructures have to do," + }, + { + "startTime": 1411.44, + "startTimeFormatted": "00:23:31.440", + "endTime": 1414.02, + "endTimeFormatted": "00:23:34.020", + "speaker": "Dave", + "body": "whether it's podcasting or blogosphere, or any of these" + }, + { + "startTime": 1414.02, + "startTimeFormatted": "00:23:34.020", + "endTime": 1417.08, + "endTimeFormatted": "00:23:37.080", + "speaker": "Dave", + "body": "things. It's just what you resort to is just checking the" + }, + { + "startTime": 1417.08, + "startTimeFormatted": "00:23:37.080", + "endTime": 1418.28, + "endTimeFormatted": "00:23:38.280", + "speaker": "Dave", + "body": "website over and over and over." + }, + { + "startTime": 1418.55, + "startTimeFormatted": "00:23:38.550", + "endTime": 1420.62, + "endTimeFormatted": "00:23:40.620", + "speaker": "Tom", + "body": "And this is this is one of the things that we see all the" + }, + { + "startTime": 1420.62, + "startTimeFormatted": "00:23:40.620", + "endTime": 1423.26, + "endTimeFormatted": "00:23:43.260", + "speaker": "Tom", + "body": "time, right, where we have podcasters, who will publish an" + }, + { + "startTime": 1423.26, + "startTimeFormatted": "00:23:43.260", + "endTime": 1426.95, + "endTimeFormatted": "00:23:46.950", + "speaker": "Tom", + "body": "episode. And then they're wondering, Well, where is it? I" + }, + { + "startTime": 1426.95, + "startTimeFormatted": "00:23:46.950", + "endTime": 1429.71, + "endTimeFormatted": "00:23:49.710", + "speaker": "Tom", + "body": "published it an hour ago? Why don't I see it anywhere? Why" + }, + { + "startTime": 1429.71, + "startTimeFormatted": "00:23:49.710", + "endTime": 1432.44, + "endTimeFormatted": "00:23:52.440", + "speaker": "Tom", + "body": "don't I see it on Apple? Why don't I see it on Spotify? And I" + }, + { + "startTime": 1432.44, + "startTimeFormatted": "00:23:52.440", + "endTime": 1436.19, + "endTimeFormatted": "00:23:56.190", + "speaker": "Tom", + "body": "think what what's exciting about pod pain is this is a solution" + }, + { + "startTime": 1436.19, + "startTimeFormatted": "00:23:56.190", + "endTime": 1440.54, + "endTimeFormatted": "00:24:00.540", + "speaker": "Tom", + "body": "to that problem, which is if you subscribe to a feed with with" + }, + { + "startTime": 1440.54, + "startTimeFormatted": "00:24:00.540", + "endTime": 1443.78, + "endTimeFormatted": "00:24:03.780", + "speaker": "Tom", + "body": "pod pain, you'll know whenever it gets updated. You'll know" + }, + { + "startTime": 1443.78, + "startTimeFormatted": "00:24:03.780", + "endTime": 1444.77, + "endTimeFormatted": "00:24:04.770", + "speaker": "Tom", + "body": "about it immediately." + }, + { + "startTime": 1445.13, + "startTimeFormatted": "00:24:05.130", + "endTime": 1448.85, + "endTimeFormatted": "00:24:08.850", + "speaker": "Dave", + "body": "Yeah, and that's a just a reversal of that whole thing of" + }, + { + "startTime": 1448.88, + "startTimeFormatted": "00:24:08.880", + "endTime": 1451.4, + "endTimeFormatted": "00:24:11.400", + "speaker": "Dave", + "body": "instead of checking over and over and over for new content." + }, + { + "startTime": 1451.91, + "startTimeFormatted": "00:24:11.910", + "endTime": 1455.12, + "endTimeFormatted": "00:24:15.120", + "speaker": "Dave", + "body": "We tell you, you know, the publisher tells you when there's" + }, + { + "startTime": 1455.12, + "startTimeFormatted": "00:24:15.120", + "endTime": 1455.66, + "endTimeFormatted": "00:24:15.660", + "speaker": "Dave", + "body": "content," + }, + { + "startTime": 1455.93, + "startTimeFormatted": "00:24:15.930", + "endTime": 1458.63, + "endTimeFormatted": "00:24:18.630", + "speaker": "Tom", + "body": "pod ping solves two problems. One is the polling" + }, + { + "startTime": 1458.87, + "startTimeFormatted": "00:24:18.870", + "endTime": 1462.47, + "endTimeFormatted": "00:24:22.470", + "speaker": "Tom", + "body": "with RSS feeds. And then you also have the problem of much of" + }, + { + "startTime": 1462.47, + "startTimeFormatted": "00:24:22.470", + "endTime": 1467.45, + "endTimeFormatted": "00:24:27.450", + "speaker": "Tom", + "body": "the web sub pub pub is built on Google, which isn't reliable. So" + }, + { + "startTime": 1467.45, + "startTimeFormatted": "00:24:27.450", + "endTime": 1470.09, + "endTimeFormatted": "00:24:30.090", + "speaker": "Tom", + "body": "pod ping does it in a reliable way. And so as I've talked to" + }, + { + "startTime": 1470.09, + "startTimeFormatted": "00:24:30.090", + "endTime": 1472.01, + "endTimeFormatted": "00:24:32.010", + "speaker": "Tom", + "body": "people about pod paying, and they said, Well, don't we" + }, + { + "startTime": 1472.01, + "startTimeFormatted": "00:24:32.010", + "endTime": 1473.93, + "endTimeFormatted": "00:24:33.930", + "speaker": "Tom", + "body": "already have a solution for this? Well, we don't have a" + }, + { + "startTime": 1473.93, + "startTimeFormatted": "00:24:33.930", + "endTime": 1477.26, + "endTimeFormatted": "00:24:37.260", + "speaker": "Tom", + "body": "reliable solution for this. And so that's why a lot of people" + }, + { + "startTime": 1477.26, + "startTimeFormatted": "00:24:37.260", + "endTime": 1480.92, + "endTimeFormatted": "00:24:40.920", + "speaker": "Tom", + "body": "just continue to pull RSS feeds. So really excited about the work" + }, + { + "startTime": 1480.92, + "startTimeFormatted": "00:24:40.920", + "endTime": 1484.73, + "endTimeFormatted": "00:24:44.730", + "speaker": "Tom", + "body": "that you did with with pod Ping. One of the features of the" + }, + { + "startTime": 1484.76, + "startTimeFormatted": "00:24:44.760", + "endTime": 1487.49, + "endTimeFormatted": "00:24:47.490", + "speaker": "Tom", + "body": "podcast namespace that we've just implemented at Buzzsprout." + }, + { + "startTime": 1487.52, + "startTimeFormatted": "00:24:47.520", + "endTime": 1491.39, + "endTimeFormatted": "00:24:51.390", + "speaker": "Tom", + "body": "That I'm sure everyone would love to hear why we did it. Is" + }, + { + "startTime": 1491.39, + "startTimeFormatted": "00:24:51.390", + "endTime": 1496.01, + "endTimeFormatted": "00:24:56.010", + "speaker": "Tom", + "body": "the gu ID, or the gu ID. How do you say Dave gwit? Yeah, let's" + }, + { + "startTime": 1496.01, + "startTimeFormatted": "00:24:56.010", + "endTime": 1499.25, + "endTimeFormatted": "00:24:59.250", + "speaker": "Tom", + "body": "Duguid. Goo it sounds gross. Let's do good. There's no way" + }, + { + "startTime": 1499.25, + "startTimeFormatted": "00:24:59.250", + "endTime": 1502.22, + "endTimeFormatted": "00:25:02.220", + "speaker": "Tom", + "body": "around it that it's He's gonna sound gross. So but tell us" + }, + { + "startTime": 1502.64, + "startTimeFormatted": "00:25:02.640", + "endTime": 1506.6, + "endTimeFormatted": "00:25:06.600", + "speaker": "Tom", + "body": "what, what's the grid? And why do you want podcasting companies" + }, + { + "startTime": 1506.6, + "startTimeFormatted": "00:25:06.600", + "endTime": 1509.57, + "endTimeFormatted": "00:25:09.570", + "speaker": "Tom", + "body": "like Buzzsprout and podcasters. to include this in their RSS" + }, + { + "startTime": 1509.57, + "startTimeFormatted": "00:25:09.570", + "endTime": 1509.87, + "endTimeFormatted": "00:25:09.870", + "speaker": "Tom", + "body": "feed," + }, + { + "startTime": 1510.26, + "startTimeFormatted": "00:25:10.260", + "endTime": 1515.33, + "endTimeFormatted": "00:25:15.330", + "speaker": "Dave", + "body": "a grid is a globally unique identifier, geo ID. It is" + }, + { + "startTime": 1515.36, + "startTimeFormatted": "00:25:15.360", + "endTime": 1520.28, + "endTimeFormatted": "00:25:20.280", + "speaker": "Dave", + "body": "a long number that uniquely identifies a thing and object" + }, + { + "startTime": 1520.73, + "startTimeFormatted": "00:25:20.730", + "endTime": 1525.95, + "endTimeFormatted": "00:25:25.950", + "speaker": "Dave", + "body": "globally in the world. It's this thing is this number. And so" + }, + { + "startTime": 1526.01, + "startTimeFormatted": "00:25:26.010", + "endTime": 1529.97, + "endTimeFormatted": "00:25:29.970", + "speaker": "Dave", + "body": "that is a thing that Apple's directory has always had." + }, + { + "startTime": 1530.6, + "startTimeFormatted": "00:25:30.600", + "endTime": 1535.07, + "endTimeFormatted": "00:25:35.070", + "speaker": "Dave", + "body": "Everybody's podcast has an iTunes ID, or an apple podcast" + }, + { + "startTime": 1535.1, + "startTimeFormatted": "00:25:35.100", + "endTime": 1540.41, + "endTimeFormatted": "00:25:40.410", + "speaker": "Dave", + "body": "ID. And if you go and look for your podcast on Apple's podcast" + }, + { + "startTime": 1540.41, + "startTimeFormatted": "00:25:40.410", + "endTime": 1542.99, + "endTimeFormatted": "00:25:42.990", + "speaker": "Dave", + "body": "directory, you can see at the end of the little URL in the" + }, + { + "startTime": 1542.99, + "startTimeFormatted": "00:25:42.990", + "endTime": 1546.62, + "endTimeFormatted": "00:25:46.620", + "speaker": "Dave", + "body": "address bar up there, you can see your Apple ID, because Apple" + }, + { + "startTime": 1546.62, + "startTimeFormatted": "00:25:46.620", + "endTime": 1549.17, + "endTimeFormatted": "00:25:49.170", + "speaker": "Dave", + "body": "has been the center of the podcasting universe for so long," + }, + { + "startTime": 1549.65, + "startTimeFormatted": "00:25:49.650", + "endTime": 1554.42, + "endTimeFormatted": "00:25:54.420", + "speaker": "Dave", + "body": "that iTunes ID has become the way that many apps identify a" + }, + { + "startTime": 1554.42, + "startTimeFormatted": "00:25:54.420", + "endTime": 1559.22, + "endTimeFormatted": "00:25:59.220", + "speaker": "Dave", + "body": "podcast in there's problems with that. We solve those problems" + }, + { + "startTime": 1559.25, + "startTimeFormatted": "00:25:59.250", + "endTime": 1564.56, + "endTimeFormatted": "00:26:04.560", + "speaker": "Dave", + "body": "earlier this year, when Apple's API stopped returning the" + }, + { + "startTime": 1564.56, + "startTimeFormatted": "00:26:04.560", + "endTime": 1569, + "endTimeFormatted": "00:26:09.000", + "speaker": "Dave", + "body": "location of where podcast live at. So they stopped returning in" + }, + { + "startTime": 1569, + "startTimeFormatted": "00:26:09.000", + "endTime": 1573.2, + "endTimeFormatted": "00:26:13.200", + "speaker": "Dave", + "body": "their API for many, many feeds, they stopped returning the" + }, + { + "startTime": 1573.2, + "startTimeFormatted": "00:26:13.200", + "endTime": 1576.89, + "endTimeFormatted": "00:26:16.890", + "speaker": "Dave", + "body": "actual URL, which is would be like, you know, buzzsprout.com" + }, + { + "startTime": 1576.89, + "startTimeFormatted": "00:26:16.890", + "endTime": 1580.19, + "endTimeFormatted": "00:26:20.190", + "speaker": "Dave", + "body": "slash such and such. That's a huge problem because it broke" + }, + { + "startTime": 1580.19, + "startTimeFormatted": "00:26:20.190", + "endTime": 1584.18, + "endTimeFormatted": "00:26:24.180", + "speaker": "Dave", + "body": "tons of apps. And we were on the front lines of that, because a" + }, + { + "startTime": 1584.18, + "startTimeFormatted": "00:26:24.180", + "endTime": 1586.79, + "endTimeFormatted": "00:26:26.790", + "speaker": "Dave", + "body": "lot of people started using our API when that happened, because" + }, + { + "startTime": 1586.79, + "startTimeFormatted": "00:26:26.790", + "endTime": 1588.41, + "endTimeFormatted": "00:26:28.410", + "speaker": "Dave", + "body": "it broke and broke their app." + }, + { + "startTime": 1588.56, + "startTimeFormatted": "00:26:28.560", + "endTime": 1591.65, + "endTimeFormatted": "00:26:31.650", + "speaker": "Kevin", + "body": "Is this stuff going to help us move in the direction of" + }, + { + "startTime": 1591.95, + "startTimeFormatted": "00:26:31.950", + "endTime": 1595.04, + "endTimeFormatted": "00:26:35.040", + "speaker": "Kevin", + "body": "like global comments, global ratings and reviews? Are you" + }, + { + "startTime": 1595.04, + "startTimeFormatted": "00:26:35.040", + "endTime": 1598.97, + "endTimeFormatted": "00:26:38.970", + "speaker": "Kevin", + "body": "guys working on infrastructure to be able to allow podcasters" + }, + { + "startTime": 1598.97, + "startTimeFormatted": "00:26:38.970", + "endTime": 1602.54, + "endTimeFormatted": "00:26:42.540", + "speaker": "Kevin", + "body": "to leave a five star rating in one app that then translates" + }, + { + "startTime": 1602.54, + "startTimeFormatted": "00:26:42.540", + "endTime": 1605.96, + "endTimeFormatted": "00:26:45.960", + "speaker": "Kevin", + "body": "over to another app or a comment over here on pod friend that" + }, + { + "startTime": 1605.96, + "startTimeFormatted": "00:26:45.960", + "endTime": 1608.39, + "endTimeFormatted": "00:26:48.390", + "speaker": "Kevin", + "body": "could get posted in pod chaser?" + }, + { + "startTime": 1608.78, + "startTimeFormatted": "00:26:48.780", + "endTime": 1611.54, + "endTimeFormatted": "00:26:51.540", + "speaker": "Dave", + "body": "Yeah, I hope so. I mean, that's the idea. That's, that's" + }, + { + "startTime": 1611.54, + "startTimeFormatted": "00:26:51.540", + "endTime": 1612.98, + "endTimeFormatted": "00:26:52.980", + "speaker": "Dave", + "body": "absolutely the goal with this." + }, + { + "startTime": 1613.16, + "startTimeFormatted": "00:26:53.160", + "endTime": 1616.64, + "endTimeFormatted": "00:26:56.640", + "speaker": "Tom", + "body": "Just a quick note for our Buzzsprout listeners, don't you" + }, + { + "startTime": 1616.64, + "startTimeFormatted": "00:26:56.640", + "endTime": 1619.73, + "endTimeFormatted": "00:26:59.730", + "speaker": "Tom", + "body": "don't have to write into the port and ask us to put a grid on" + }, + { + "startTime": 1619.73, + "startTimeFormatted": "00:26:59.730", + "endTime": 1623.03, + "endTimeFormatted": "00:27:03.030", + "speaker": "Tom", + "body": "your RSS feed, they're already there. So all these features" + }, + { + "startTime": 1623.03, + "startTimeFormatted": "00:27:03.030", + "endTime": 1626.09, + "endTimeFormatted": "00:27:06.090", + "speaker": "Tom", + "body": "whenever we can we want to implement them without having to" + }, + { + "startTime": 1626.09, + "startTimeFormatted": "00:27:06.090", + "endTime": 1629.42, + "endTimeFormatted": "00:27:09.420", + "speaker": "Tom", + "body": "require, you know, any, any kind of, you know, technical" + }, + { + "startTime": 1629.42, + "startTimeFormatted": "00:27:09.420", + "endTime": 1632.42, + "endTimeFormatted": "00:27:12.420", + "speaker": "Tom", + "body": "knowledge on our podcasters. And so, yes, the goods are already" + }, + { + "startTime": 1632.42, + "startTimeFormatted": "00:27:12.420", + "endTime": 1634.97, + "endTimeFormatted": "00:27:14.970", + "speaker": "Tom", + "body": "there. And we continue to follow all the work that Dave and Adam" + }, + { + "startTime": 1634.97, + "startTimeFormatted": "00:27:14.970", + "endTime": 1637.4, + "endTimeFormatted": "00:27:17.400", + "speaker": "Tom", + "body": "are doing, and we will implement those features as they come up." + }, + { + "startTime": 1637.58, + "startTimeFormatted": "00:27:17.580", + "endTime": 1641.06, + "endTimeFormatted": "00:27:21.060", + "speaker": "Tom", + "body": "Dave, thank you for being on the show. Thank you for all the work" + }, + { + "startTime": 1641.06, + "startTimeFormatted": "00:27:21.060", + "endTime": 1644.96, + "endTimeFormatted": "00:27:24.960", + "speaker": "Tom", + "body": "that you're doing to help make podcasting. Awesome. We" + }, + { + "startTime": 1644.96, + "startTimeFormatted": "00:27:24.960", + "endTime": 1646.43, + "endTimeFormatted": "00:27:26.430", + "speaker": "Tom", + "body": "appreciate it. And thanks for being here." + }, + { + "startTime": 1646.52, + "startTimeFormatted": "00:27:26.520", + "endTime": 1649.04, + "endTimeFormatted": "00:27:29.040", + "speaker": "Kevin", + "body": "Yeah, thanks, guys. Appreciate it. listeners, please" + }, + { + "startTime": 1649.07, + "startTimeFormatted": "00:27:29.070", + "endTime": 1652.13, + "endTimeFormatted": "00:27:32.130", + "speaker": "Kevin", + "body": "check out podcast index.org click on apps, download a new" + }, + { + "startTime": 1652.13, + "startTimeFormatted": "00:27:32.130", + "endTime": 1655.7, + "endTimeFormatted": "00:27:35.700", + "speaker": "Kevin", + "body": "podcast app, recommend it to your listening audience. And" + }, + { + "startTime": 1656.15, + "startTimeFormatted": "00:27:36.150", + "endTime": 1658.28, + "endTimeFormatted": "00:27:38.280", + "speaker": "Kevin", + "body": "yeah, support the movement. It's really good stuff for" + }, + { + "startTime": 1658.28, + "startTimeFormatted": "00:27:38.280", + "endTime": 1658.79, + "endTimeFormatted": "00:27:38.790", + "speaker": "Kevin", + "body": "podcasting." + }, + { + "startTime": 1661.93, + "startTimeFormatted": "00:27:41.930", + "endTime": 1665.17, + "endTimeFormatted": "00:27:45.170", + "speaker": "Travis", + "body": "So we asked the good people of the internet, namely" + }, + { + "startTime": 1665.2, + "startTimeFormatted": "00:27:45.200", + "endTime": 1668.05, + "endTimeFormatted": "00:27:48.050", + "speaker": "Travis", + "body": "on our YouTube community chats if you subscribe to the YouTube," + }, + { + "startTime": 1668.08, + "startTimeFormatted": "00:27:48.080", + "endTime": 1670.27, + "endTimeFormatted": "00:27:50.270", + "speaker": "Travis", + "body": "the main Buzzsprout YouTube channel, you may have seen this" + }, + { + "startTime": 1670.27, + "startTimeFormatted": "00:27:50.270", + "endTime": 1674.38, + "endTimeFormatted": "00:27:54.380", + "speaker": "Travis", + "body": "in your subscriber feed. Alban asked on Twitter, we also posted" + }, + { + "startTime": 1674.38, + "startTimeFormatted": "00:27:54.380", + "endTime": 1676.63, + "endTimeFormatted": "00:27:56.630", + "speaker": "Travis", + "body": "in the Facebook group, the Buzzsprout podcast, Facebook" + }, + { + "startTime": 1676.66, + "startTimeFormatted": "00:27:56.660", + "endTime": 1680.05, + "endTimeFormatted": "00:28:00.050", + "speaker": "Travis", + "body": "group, just your questions. So we're going to run through a" + }, + { + "startTime": 1680.05, + "startTimeFormatted": "00:28:00.050", + "endTime": 1684.46, + "endTimeFormatted": "00:28:04.460", + "speaker": "Travis", + "body": "lightning round, have a bunch of questions and hopefully will" + } + ] +} diff --git a/test/test_files/buzzcast_json_speaker_change_combine_equal_time_space_parsed.json b/test/test_files/buzzcast_json_speaker_change_combine_equal_time_space_parsed.json new file mode 100644 index 0000000..b7a3ab9 --- /dev/null +++ b/test/test_files/buzzcast_json_speaker_change_combine_equal_time_space_parsed.json @@ -0,0 +1,3461 @@ +{ + "segments": [ + { + "startTime": 0, + "startTimeFormatted": "00:00:00.000", + "endTime": 4.8, + "endTimeFormatted": "00:00:04.800", + "speaker": "Alban", + "body": "It is so stinking nice to like, show up and record this" + }, + { + "startTime": 4.8, + "startTimeFormatted": "00:00:04.800", + "endTime": 8.25, + "endTimeFormatted": "00:00:08.250", + "body": "show. And Travis has already put together an outline. Kevin's got" + }, + { + "startTime": 8.25, + "startTimeFormatted": "00:00:08.250", + "endTime": 13.17, + "endTimeFormatted": "00:00:13.170", + "body": "suggestions, I throw my thoughts into the mix. And then Travis" + }, + { + "startTime": 13.17, + "startTimeFormatted": "00:00:13.170", + "endTime": 16.74, + "endTimeFormatted": "00:00:16.740", + "body": "goes and does all the work from there, too. It's out into the" + }, + { + "startTime": 16.74, + "startTimeFormatted": "00:00:16.740", + "endTime": 21.27, + "endTimeFormatted": "00:00:21.270", + "body": "wild. And I don't see anything. That's an absolute joy for at" + }, + { + "startTime": 21.27, + "startTimeFormatted": "00:00:21.270", + "endTime": 23.73, + "endTimeFormatted": "00:00:23.730", + "body": "least two thirds of the team. Yeah, I mean, exactly." + }, + { + "startTime": 30.48, + "startTimeFormatted": "00:00:30.480", + "endTime": 32.85, + "endTimeFormatted": "00:00:32.850", + "speaker": "Kevin", + "body": "You guys remember, like two months ago, when you were" + }, + { + "startTime": 32.85, + "startTimeFormatted": "00:00:32.850", + "endTime": 35.46, + "endTimeFormatted": "00:00:35.460", + "body": "like, We're going all in on video Buzzcast. I was like," + }, + { + "startTime": 35.49, + "startTimeFormatted": "00:00:35.490", + "endTime": 39.12, + "endTimeFormatted": "00:00:39.120", + "body": "that's, I mean, I will agree and commit and disagree, disagree" + }, + { + "startTime": 39.12, + "startTimeFormatted": "00:00:39.120", + "endTime": 41.37, + "endTimeFormatted": "00:00:41.370", + "body": "and commit, I'll do something. But I don't want to do this." + }, + { + "startTime": 42.03, + "startTimeFormatted": "00:00:42.030", + "endTime": 48.24, + "endTimeFormatted": "00:00:48.240", + "speaker": "Alban", + "body": "I never said that. The only reason we ever did video" + }, + { + "startTime": 48.27, + "startTimeFormatted": "00:00:48.270", + "endTime": 49.62, + "endTimeFormatted": "00:00:49.620", + "body": "was because of you." + }, + { + "startTime": 50.309, + "startTimeFormatted": "00:00:50.309", + "endTime": 53.249, + "endTimeFormatted": "00:00:53.249", + "speaker": "Kevin", + "body": "That is true. I will take that. Because when we first got" + }, + { + "startTime": 53.249, + "startTimeFormatted": "00:00:53.249", + "endTime": 55.979, + "endTimeFormatted": "00:00:55.979", + "body": "locked down, and we weren't allowed to see anybody in" + }, + { + "startTime": 55.979, + "startTimeFormatted": "00:00:55.979", + "endTime": 58.259, + "endTimeFormatted": "00:00:58.259", + "body": "person, I was like, well, it would be nice to be able to see" + }, + { + "startTime": 58.259, + "startTimeFormatted": "00:00:58.259", + "endTime": 60.599, + "endTimeFormatted": "00:01:00.599", + "body": "you guys when we record. And if we're going to be doing video" + }, + { + "startTime": 60.599, + "startTimeFormatted": "00:01:00.599", + "endTime": 64.049, + "endTimeFormatted": "00:01:04.049", + "body": "chats Anyway, why don't we go ahead and publish those. So I do" + }, + { + "startTime": 64.049, + "startTimeFormatted": "00:01:04.049", + "endTime": 66.749, + "endTimeFormatted": "00:01:06.749", + "body": "take the full blame for moving us to video in the first place." + }, + { + "startTime": 67.949, + "startTimeFormatted": "00:01:07.949", + "endTime": 70.049, + "endTimeFormatted": "00:01:10.049", + "body": "But how's that working out for us?" + }, + { + "startTime": 71.52, + "startTimeFormatted": "00:01:11.520", + "endTime": 76.08, + "endTimeFormatted": "00:01:16.080", + "speaker": "Alban", + "body": "Not good. The first one we did was like a year ago, we" + }, + { + "startTime": 76.08, + "startTimeFormatted": "00:01:16.080", + "endTime": 81.3, + "endTimeFormatted": "00:01:21.300", + "body": "did that live stream to our YouTube channel. And that just" + }, + { + "startTime": 81.3, + "startTimeFormatted": "00:01:21.300", + "endTime": 85.14, + "endTimeFormatted": "00:01:25.140", + "body": "kind of grew into then we wanted to play around with Riverside," + }, + { + "startTime": 85.14, + "startTimeFormatted": "00:01:25.140", + "endTime": 88.83, + "endTimeFormatted": "00:01:28.830", + "body": "which was doing video remote video recording, and then squad" + }, + { + "startTime": 88.83, + "startTimeFormatted": "00:01:28.830", + "endTime": 93.06, + "endTimeFormatted": "00:01:33.060", + "body": "cast launched video, remote video recording. And I think," + }, + { + "startTime": 93.87, + "startTimeFormatted": "00:01:33.870", + "endTime": 96.75, + "endTimeFormatted": "00:01:36.750", + "body": "you know, we've you kind of had the tools, the tools were there." + }, + { + "startTime": 96.75, + "startTimeFormatted": "00:01:36.750", + "endTime": 100.32, + "endTimeFormatted": "00:01:40.320", + "body": "So we started playing with the tools and experimenting. And now" + }, + { + "startTime": 100.32, + "startTimeFormatted": "00:01:40.320", + "endTime": 104.46, + "endTimeFormatted": "00:01:44.460", + "body": "the experiment is coming to an end, at least for now, at least" + }, + { + "startTime": 104.46, + "startTimeFormatted": "00:01:44.460", + "endTime": 109.38, + "endTimeFormatted": "00:01:49.380", + "body": "for now. So do we want to give like the whole story of it, kind" + }, + { + "startTime": 109.38, + "startTimeFormatted": "00:01:49.380", + "endTime": 113.04, + "endTimeFormatted": "00:01:53.040", + "body": "of walk through why we made each decision along the way? And" + }, + { + "startTime": 113.04, + "startTimeFormatted": "00:01:53.040", + "endTime": 115.86, + "endTimeFormatted": "00:01:55.860", + "body": "let's give the sparknotes what we learned the highlights" + }, + { + "startTime": 116.01, + "startTimeFormatted": "00:01:56.010", + "endTime": 118.86, + "endTimeFormatted": "00:01:58.860", + "body": "sparknotes? Yeah, start at the beginning. Kevin, why did you" + }, + { + "startTime": 118.86, + "startTimeFormatted": "00:01:58.860", + "endTime": 121.08, + "endTimeFormatted": "00:02:01.080", + "body": "want to start doing some video Buzzcast." + }, + { + "startTime": 121.44, + "startTimeFormatted": "00:02:01.440", + "endTime": 123.36, + "endTimeFormatted": "00:02:03.360", + "speaker": "Kevin", + "body": "When we first started recording Buzzcast, we would do" + }, + { + "startTime": 123.36, + "startTimeFormatted": "00:02:03.360", + "endTime": 127.26, + "endTimeFormatted": "00:02:07.260", + "body": "it together in the office in our little studio space. And we" + }, + { + "startTime": 127.26, + "startTimeFormatted": "00:02:07.260", + "endTime": 131.88, + "endTimeFormatted": "00:02:11.880", + "body": "could play off of each other's energy, right? I think, Listen," + }, + { + "startTime": 132.09, + "startTimeFormatted": "00:02:12.090", + "endTime": 135.09, + "endTimeFormatted": "00:02:15.090", + "body": "I'll speak for myself, I'm not a super high energy person. So it" + }, + { + "startTime": 135.09, + "startTimeFormatted": "00:02:15.090", + "endTime": 138.33, + "endTimeFormatted": "00:02:18.330", + "body": "helps for me to be sitting across the table for somebody or" + }, + { + "startTime": 138.33, + "startTimeFormatted": "00:02:18.330", + "endTime": 141, + "endTimeFormatted": "00:02:21.000", + "body": "to see somebody else's reactions to what I'm saying or when" + }, + { + "startTime": 141, + "startTimeFormatted": "00:02:21.000", + "endTime": 144.27, + "endTimeFormatted": "00:02:24.270", + "body": "they're speaking themselves to be able to keep myself amped up" + }, + { + "startTime": 144.27, + "startTimeFormatted": "00:02:24.270", + "endTime": 146.79, + "endTimeFormatted": "00:02:26.790", + "body": "and engaged in the conversation when we went audio only and" + }, + { + "startTime": 146.79, + "startTimeFormatted": "00:02:26.790", + "endTime": 149.73, + "endTimeFormatted": "00:02:29.730", + "body": "there was no video component, it was hard for me to continue to" + }, + { + "startTime": 149.73, + "startTimeFormatted": "00:02:29.730", + "endTime": 152.67, + "endTimeFormatted": "00:02:32.670", + "body": "keep my energy high. And to stay engaged. I've also got a little" + }, + { + "startTime": 152.67, + "startTimeFormatted": "00:02:32.670", + "endTime": 154.92, + "endTimeFormatted": "00:02:34.920", + "body": "bit of add that I'm I'm fighting and dealing with at the same" + }, + { + "startTime": 154.92, + "startTimeFormatted": "00:02:34.920", + "endTime": 159.9, + "endTimeFormatted": "00:02:39.900", + "body": "time. So that part was was necessary in order to be able to" + }, + { + "startTime": 160.35, + "startTimeFormatted": "00:02:40.350", + "endTime": 163.44, + "endTimeFormatted": "00:02:43.440", + "body": "just produce good content. What I was interested in is that" + }, + { + "startTime": 163.44, + "startTimeFormatted": "00:02:43.440", + "endTime": 165.6, + "endTimeFormatted": "00:02:45.600", + "body": "since we're doing this video component Anyway, why don't we" + }, + { + "startTime": 165.6, + "startTimeFormatted": "00:02:45.600", + "endTime": 168.21, + "endTimeFormatted": "00:02:48.210", + "body": "record this, we've always said that YouTube is an interesting" + }, + { + "startTime": 168.21, + "startTimeFormatted": "00:02:48.210", + "endTime": 170.37, + "endTimeFormatted": "00:02:50.370", + "body": "opportunity for people to promote their podcasts because" + }, + { + "startTime": 170.37, + "startTimeFormatted": "00:02:50.370", + "endTime": 172.14, + "endTimeFormatted": "00:02:52.140", + "body": "they do have the algorithm, they do have the recommendation" + }, + { + "startTime": 172.14, + "startTimeFormatted": "00:02:52.140", + "endTime": 176.01, + "endTimeFormatted": "00:02:56.010", + "body": "engine. But you shouldn't just publish your audio only there." + }, + { + "startTime": 176.07, + "startTimeFormatted": "00:02:56.070", + "endTime": 178.41, + "endTimeFormatted": "00:02:58.410", + "body": "Because that doesn't feed into the strengths of the algorithm." + }, + { + "startTime": 178.41, + "startTimeFormatted": "00:02:58.410", + "endTime": 180.84, + "endTimeFormatted": "00:03:00.840", + "body": "So you're not even getting the benefit. And you're taking all" + }, + { + "startTime": 180.84, + "startTimeFormatted": "00:03:00.840", + "endTime": 184.05, + "endTimeFormatted": "00:03:04.050", + "body": "this extra time to do that. In fact, you could be you know," + }, + { + "startTime": 184.05, + "startTimeFormatted": "00:03:04.050", + "endTime": 185.76, + "endTimeFormatted": "00:03:05.760", + "body": "putting yourself at a disadvantage if you do that," + }, + { + "startTime": 185.76, + "startTimeFormatted": "00:03:05.760", + "endTime": 188.19, + "endTimeFormatted": "00:03:08.190", + "body": "because then you get a bad reputation with the algorithm." + }, + { + "startTime": 188.49, + "startTimeFormatted": "00:03:08.490", + "endTime": 192.36, + "endTimeFormatted": "00:03:12.360", + "body": "So anyway, we were doing video, why not go ahead. And while we" + }, + { + "startTime": 192.36, + "startTimeFormatted": "00:03:12.360", + "endTime": 194.7, + "endTimeFormatted": "00:03:14.700", + "body": "edit the podcast, the audio version, why not edit the video" + }, + { + "startTime": 194.7, + "startTimeFormatted": "00:03:14.700", + "endTime": 196.62, + "endTimeFormatted": "00:03:16.620", + "body": "version and just stick it on YouTube and see if we get a bump" + }, + { + "startTime": 196.62, + "startTimeFormatted": "00:03:16.620", + "endTime": 200.73, + "endTimeFormatted": "00:03:20.730", + "body": "from it. That is where you guys come in on the analytical side" + }, + { + "startTime": 200.94, + "startTimeFormatted": "00:03:20.940", + "endTime": 204.87, + "endTimeFormatted": "00:03:24.870", + "body": "and say, Is this working is this not I will say that the" + }, + { + "startTime": 204.87, + "startTimeFormatted": "00:03:24.870", + "endTime": 209.64, + "endTimeFormatted": "00:03:29.640", + "body": "constraints from just somebody who's on the podcast are much" + }, + { + "startTime": 209.64, + "startTimeFormatted": "00:03:29.640", + "endTime": 212.34, + "endTimeFormatted": "00:03:32.340", + "body": "higher than I anticipated. It's one thing when you're out of the" + }, + { + "startTime": 212.34, + "startTimeFormatted": "00:03:32.340", + "endTime": 215.25, + "endTimeFormatted": "00:03:35.250", + "body": "office, or if you're traveling or you can't be here there to be" + }, + { + "startTime": 215.25, + "startTimeFormatted": "00:03:35.250", + "endTime": 218.43, + "endTimeFormatted": "00:03:38.430", + "body": "able to quickly grab a USB mic, throw it in your bag go with" + }, + { + "startTime": 218.43, + "startTimeFormatted": "00:03:38.430", + "endTime": 220.41, + "endTimeFormatted": "00:03:40.410", + "body": "you. And you can record audio from anywhere in the world, it's" + }, + { + "startTime": 220.41, + "startTimeFormatted": "00:03:40.410", + "endTime": 223.2, + "endTimeFormatted": "00:03:43.200", + "body": "not too hard to find a quiet space, most hotel rooms are" + }, + { + "startTime": 223.2, + "startTimeFormatted": "00:03:43.200", + "endTime": 225.24, + "endTimeFormatted": "00:03:45.240", + "body": "pretty quiet. Or if you're staying on Airbnb or something" + }, + { + "startTime": 225.24, + "startTimeFormatted": "00:03:45.240", + "endTime": 227.4, + "endTimeFormatted": "00:03:47.400", + "body": "that you can find a closet, you can find a quiet space to record" + }, + { + "startTime": 227.4, + "startTimeFormatted": "00:03:47.400", + "endTime": 232.98, + "endTimeFormatted": "00:03:52.980", + "body": "audio, being able to travel with a decent camera setup. Or if you" + }, + { + "startTime": 232.98, + "startTimeFormatted": "00:03:52.980", + "endTime": 234.48, + "endTimeFormatted": "00:03:54.480", + "body": "don't have a decent camera setup, then you're using" + }, + { + "startTime": 234.48, + "startTimeFormatted": "00:03:54.480", + "endTime": 237.54, + "endTimeFormatted": "00:03:57.540", + "body": "whatever on your laptop, you're constantly worried about your" + }, + { + "startTime": 237.54, + "startTimeFormatted": "00:03:57.540", + "endTime": 239.52, + "endTimeFormatted": "00:03:59.520", + "body": "background, like all this stuff is going on. It's just a" + }, + { + "startTime": 239.52, + "startTimeFormatted": "00:03:59.520", + "endTime": 242.88, + "endTimeFormatted": "00:04:02.880", + "body": "different level of commitment and what's required in terms of" + }, + { + "startTime": 243.12, + "startTimeFormatted": "00:04:03.120", + "endTime": 245.4, + "endTimeFormatted": "00:04:05.400", + "body": "being able to put a show out every week or every other week." + }, + { + "startTime": 245.61, + "startTimeFormatted": "00:04:05.610", + "endTime": 252, + "endTimeFormatted": "00:04:12.000", + "body": "So that has been added an extra level of commitment to the show," + }, + { + "startTime": 252.03, + "startTimeFormatted": "00:04:12.030", + "endTime": 254.07, + "endTimeFormatted": "00:04:14.070", + "body": "which again, not something that we weren't willing to do, but" + }, + { + "startTime": 254.07, + "startTimeFormatted": "00:04:14.070", + "endTime": 256.53, + "endTimeFormatted": "00:04:16.530", + "body": "something that was a little bit unexpected. Didn't know going" + }, + { + "startTime": 256.53, + "startTimeFormatted": "00:04:16.530", + "endTime": 259.56, + "endTimeFormatted": "00:04:19.560", + "body": "into it. And then from an analytical side, like how" + }, + { + "startTime": 259.62, + "startTimeFormatted": "00:04:19.620", + "endTime": 263.07, + "endTimeFormatted": "00:04:23.070", + "body": "helpful was it actually, for us growing the show? That's what" + }, + { + "startTime": 263.07, + "startTimeFormatted": "00:04:23.070", + "endTime": 264.24, + "endTimeFormatted": "00:04:24.240", + "body": "you guys have dug into. Right?" + }, + { + "startTime": 264.45, + "startTimeFormatted": "00:04:24.450", + "endTime": 267.84, + "endTimeFormatted": "00:04:27.840", + "speaker": "Alban", + "body": "Yeah, I mean, we can talk a bit about the analytics buzz" + }, + { + "startTime": 268.05, + "startTimeFormatted": "00:04:28.050", + "endTime": 273.69, + "endTimeFormatted": "00:04:33.690", + "body": "cast itself was getting more attention, let's call it" + }, + { + "startTime": 273.69, + "startTimeFormatted": "00:04:33.690", + "endTime": 277.53, + "endTimeFormatted": "00:04:37.530", + "body": "attention than it ever had before. We were getting between" + }, + { + "startTime": 277.53, + "startTimeFormatted": "00:04:37.530", + "endTime": 285.03, + "endTimeFormatted": "00:04:45.030", + "body": "the downloads that continued to grow on the RSS side. And on the" + }, + { + "startTime": 285.03, + "startTimeFormatted": "00:04:45.030", + "endTime": 288.21, + "endTimeFormatted": "00:04:48.210", + "body": "YouTube channel being added to that it was huge. And then we" + }, + { + "startTime": 288.21, + "startTimeFormatted": "00:04:48.210", + "endTime": 292.92, + "endTimeFormatted": "00:04:52.920", + "body": "started doing clips of Buzzcast episodes. And those were doing" + }, + { + "startTime": 292.92, + "startTimeFormatted": "00:04:52.920", + "endTime": 296.49, + "endTimeFormatted": "00:04:56.490", + "body": "really well. And so if you wanted to add all that up, it" + }, + { + "startTime": 296.49, + "startTimeFormatted": "00:04:56.490", + "endTime": 301.26, + "endTimeFormatted": "00:05:01.260", + "body": "was like wow, this show is doubled in sighs This is great." + }, + { + "startTime": 302.4, + "startTimeFormatted": "00:05:02.400", + "endTime": 308.34, + "endTimeFormatted": "00:05:08.340", + "body": "But we on the other side, were kind of frustrated with the" + }, + { + "startTime": 308.34, + "startTimeFormatted": "00:05:08.340", + "endTime": 313.26, + "endTimeFormatted": "00:05:13.260", + "body": "growth of the YouTube channel. We grew a ton the first year." + }, + { + "startTime": 313.77, + "startTimeFormatted": "00:05:13.770", + "endTime": 317.61, + "endTimeFormatted": "00:05:17.610", + "body": "And we just kind of seen a lot of slowing down of our growth." + }, + { + "startTime": 317.61, + "startTimeFormatted": "00:05:17.610", + "endTime": 322.05, + "endTimeFormatted": "00:05:22.050", + "body": "We didn't know exactly why. And we kept kind of digging into the" + }, + { + "startTime": 322.05, + "startTimeFormatted": "00:05:22.050", + "endTime": 327.84, + "endTimeFormatted": "00:05:27.840", + "body": "data. And I think it might have been Jonathan first, or maybe it" + }, + { + "startTime": 327.84, + "startTimeFormatted": "00:05:27.840", + "endTime": 330.96, + "endTimeFormatted": "00:05:30.960", + "body": "was Travis, who said, I just clicked through all of the last" + }, + { + "startTime": 330.96, + "startTimeFormatted": "00:05:30.960", + "endTime": 335.19, + "endTimeFormatted": "00:05:35.190", + "body": "videos. And I noticed most of the Buzzcast ones lose" + }, + { + "startTime": 335.19, + "startTimeFormatted": "00:05:35.190", + "endTime": 339.78, + "endTimeFormatted": "00:05:39.780", + "body": "subscribers. And I was like, That's not true. And then I" + }, + { + "startTime": 339.78, + "startTimeFormatted": "00:05:39.780", + "endTime": 343.71, + "endTimeFormatted": "00:05:43.710", + "body": "click through and went, Oh, that's definitely true. I was" + }, + { + "startTime": 343.71, + "startTimeFormatted": "00:05:43.710", + "endTime": 348.09, + "endTimeFormatted": "00:05:48.090", + "body": "very skeptical by nature. And so and then we started digging in" + }, + { + "startTime": 348.09, + "startTimeFormatted": "00:05:48.090", + "endTime": 354.78, + "endTimeFormatted": "00:05:54.780", + "body": "deeper. And I took, I think it was like six different stats" + }, + { + "startTime": 354.78, + "startTimeFormatted": "00:05:54.780", + "endTime": 358.5, + "endTimeFormatted": "00:05:58.500", + "body": "that we use to kind of quantify how valuable each individual" + }, + { + "startTime": 358.5, + "startTimeFormatted": "00:05:58.500", + "endTime": 363.3, + "endTimeFormatted": "00:06:03.300", + "body": "video is. And I just went back and looked at, like the last 90" + }, + { + "startTime": 363.3, + "startTimeFormatted": "00:06:03.300", + "endTime": 365.52, + "endTimeFormatted": "00:06:05.520", + "body": "days, all the videos that were created during that 90 day" + }, + { + "startTime": 365.52, + "startTimeFormatted": "00:06:05.520", + "endTime": 372.48, + "endTimeFormatted": "00:06:12.480", + "body": "period, I think we had 22 videos, or 26 videos, all of the" + }, + { + "startTime": 372.48, + "startTimeFormatted": "00:06:12.480", + "endTime": 375.54, + "endTimeFormatted": "00:06:15.540", + "body": "Buzzcast ones were in the worst category, they were they" + }, + { + "startTime": 375.54, + "startTimeFormatted": "00:06:15.540", + "endTime": 380.49, + "endTimeFormatted": "00:06:20.490", + "body": "represented, like the very bottom five episodes, or videos." + }, + { + "startTime": 380.97, + "startTimeFormatted": "00:06:20.970", + "endTime": 385.17, + "endTimeFormatted": "00:06:25.170", + "body": "And, you know, we, I think Travis, you had some good ideas" + }, + { + "startTime": 385.17, + "startTimeFormatted": "00:06:25.170", + "endTime": 389.55, + "endTimeFormatted": "00:06:29.550", + "body": "of why the Buzzcast ones were performing near the bottom. But" + }, + { + "startTime": 389.67, + "startTimeFormatted": "00:06:29.670", + "endTime": 392.7, + "endTimeFormatted": "00:06:32.700", + "body": "in the end, we were kind of doing the thing that we've" + }, + { + "startTime": 392.7, + "startTimeFormatted": "00:06:32.700", + "endTime": 394.62, + "endTimeFormatted": "00:06:34.620", + "body": "always criticized, we've always criticized people who were" + }, + { + "startTime": 394.62, + "startTimeFormatted": "00:06:34.620", + "endTime": 399.99, + "endTimeFormatted": "00:06:39.990", + "body": "putting a static image on a YouTube video on a YouTube" + }, + { + "startTime": 399.99, + "startTimeFormatted": "00:06:39.990", + "endTime": 404.79, + "endTimeFormatted": "00:06:44.790", + "body": "video, just having audio, you know, we said that can crush an" + }, + { + "startTime": 404.79, + "startTimeFormatted": "00:06:44.790", + "endTime": 409.74, + "endTimeFormatted": "00:06:49.740", + "body": "existing valuable YouTube channel. And we were crushing" + }, + { + "startTime": 409.77, + "startTimeFormatted": "00:06:49.770", + "endTime": 415.5, + "endTimeFormatted": "00:06:55.500", + "body": "our existing value bowl YouTube channel, by adding this, you" + }, + { + "startTime": 415.5, + "startTimeFormatted": "00:06:55.500", + "endTime": 419.55, + "endTimeFormatted": "00:06:59.550", + "body": "know, some of this, basically podcast content in video format." + }, + { + "startTime": 419.61, + "startTimeFormatted": "00:06:59.610", + "endTime": 421.8, + "endTimeFormatted": "00:07:01.800", + "speaker": "Kevin", + "body": "To clarify, we weren't crushing it because we weren't" + }, + { + "startTime": 421.8, + "startTimeFormatted": "00:07:01.800", + "endTime": 425.16, + "endTimeFormatted": "00:07:05.160", + "body": "putting the static image when we were putting real video up. But" + }, + { + "startTime": 425.16, + "startTimeFormatted": "00:07:05.160", + "endTime": 429.27, + "endTimeFormatted": "00:07:09.270", + "body": "we weren't playing in line with the the rules of YouTube or to" + }, + { + "startTime": 429.27, + "startTimeFormatted": "00:07:09.270", + "endTime": 431.52, + "endTimeFormatted": "00:07:11.520", + "body": "use the algorithm in the smartest and best way we were" + }, + { + "startTime": 431.52, + "startTimeFormatted": "00:07:11.520", + "endTime": 434.1, + "endTimeFormatted": "00:07:14.100", + "body": "confusing the algorithm. We were publishing different lengths of" + }, + { + "startTime": 434.1, + "startTimeFormatted": "00:07:14.100", + "endTime": 437.55, + "endTimeFormatted": "00:07:17.550", + "body": "content, different formats of content. And so we ended up is a" + }, + { + "startTime": 437.55, + "startTimeFormatted": "00:07:17.550", + "endTime": 440.46, + "endTimeFormatted": "00:07:20.460", + "body": "very important and valuable channel for us for marketing our" + }, + { + "startTime": 440.46, + "startTimeFormatted": "00:07:20.460", + "endTime": 442.77, + "endTimeFormatted": "00:07:22.770", + "body": "software and telling the world about what Buzzsprout can do for" + }, + { + "startTime": 442.77, + "startTimeFormatted": "00:07:22.770", + "endTime": 446.22, + "endTimeFormatted": "00:07:26.220", + "body": "you as a podcaster. We were hurting that marketing channel" + }, + { + "startTime": 446.22, + "startTimeFormatted": "00:07:26.220", + "endTime": 446.79, + "endTimeFormatted": "00:07:26.790", + "body": "for us, right?" + }, + { + "startTime": 447.09, + "startTimeFormatted": "00:07:27.090", + "endTime": 450.75, + "endTimeFormatted": "00:07:30.750", + "speaker": "Alban", + "body": "Yeah, I guess what I was saying is, we were not being" + }, + { + "startTime": 450.75, + "startTimeFormatted": "00:07:30.750", + "endTime": 454.92, + "endTimeFormatted": "00:07:34.920", + "body": "hypocritical in the way that we created the video, the content," + }, + { + "startTime": 454.98, + "startTimeFormatted": "00:07:34.980", + "endTime": 458.25, + "endTimeFormatted": "00:07:38.250", + "body": "because we weren't publishing the static image with the audio." + }, + { + "startTime": 458.79, + "startTimeFormatted": "00:07:38.790", + "endTime": 461.97, + "endTimeFormatted": "00:07:41.970", + "body": "But the reason we say we recommend everybody else not to" + }, + { + "startTime": 461.97, + "startTimeFormatted": "00:07:41.970", + "endTime": 465.66, + "endTimeFormatted": "00:07:45.660", + "body": "do that, is because what it's doing is it's showing YouTube" + }, + { + "startTime": 465.66, + "startTimeFormatted": "00:07:45.660", + "endTime": 468.48, + "endTimeFormatted": "00:07:48.480", + "body": "that your content is low quality, and it's a specific" + }, + { + "startTime": 468.48, + "startTimeFormatted": "00:07:48.480", + "endTime": 473.67, + "endTimeFormatted": "00:07:53.670", + "body": "type of content. It's audio plus an image. Well, when we were" + }, + { + "startTime": 473.67, + "startTimeFormatted": "00:07:53.670", + "endTime": 477.39, + "endTimeFormatted": "00:07:57.390", + "body": "looking at it, YouTube was used to a much higher production" + }, + { + "startTime": 477.39, + "startTimeFormatted": "00:07:57.390", + "endTime": 482.64, + "endTimeFormatted": "00:08:02.640", + "body": "quality, a very different type of content for our channel. And" + }, + { + "startTime": 482.64, + "startTimeFormatted": "00:08:02.640", + "endTime": 485.79, + "endTimeFormatted": "00:08:05.790", + "body": "so I think people were constantly confused. They're" + }, + { + "startTime": 485.79, + "startTimeFormatted": "00:08:05.790", + "endTime": 490.71, + "endTimeFormatted": "00:08:10.710", + "body": "running into videos that they thought were going to be Travis" + }, + { + "startTime": 490.71, + "startTimeFormatted": "00:08:10.710", + "endTime": 494.49, + "endTimeFormatted": "00:08:14.490", + "body": "or Sarah jalon, doing an in depth tutorial. And they were" + }, + { + "startTime": 494.49, + "startTimeFormatted": "00:08:14.490", + "endTime": 498.36, + "endTimeFormatted": "00:08:18.360", + "body": "clicking, and they were finding me pontificating about Facebook" + }, + { + "startTime": 498.36, + "startTimeFormatted": "00:08:18.360", + "endTime": 502.2, + "endTimeFormatted": "00:08:22.200", + "body": "podcasts for 20 minutes. So Travis, give us some more" + }, + { + "startTime": 502.2, + "startTimeFormatted": "00:08:22.200", + "endTime": 506.01, + "endTimeFormatted": "00:08:26.010", + "body": "insight, what's what are the differentiators between our day" + }, + { + "startTime": 506.01, + "startTimeFormatted": "00:08:26.010", + "endTime": 509.64, + "endTimeFormatted": "00:08:29.640", + "body": "to day content are the bread and butter that we do very well, and" + }, + { + "startTime": 509.64, + "startTimeFormatted": "00:08:29.640", + "endTime": 511.35, + "endTimeFormatted": "00:08:31.350", + "body": "what Buzzcast was doing on our channel?" + }, + { + "startTime": 511.56, + "startTimeFormatted": "00:08:31.560", + "endTime": 514.38, + "endTimeFormatted": "00:08:34.380", + "speaker": "Travis", + "body": "One thing to keep in mind is when we create content" + }, + { + "startTime": 514.38, + "startTimeFormatted": "00:08:34.380", + "endTime": 518.49, + "endTimeFormatted": "00:08:38.490", + "body": "for Podcasting, Q&A, when we create tutorials, things like" + }, + { + "startTime": 518.49, + "startTimeFormatted": "00:08:38.490", + "endTime": 522.09, + "endTimeFormatted": "00:08:42.090", + "body": "that, we have a very specific aim for those videos. Right? So" + }, + { + "startTime": 522.09, + "startTimeFormatted": "00:08:42.090", + "endTime": 525.21, + "endTimeFormatted": "00:08:45.210", + "body": "we're trying to answer questions really well, we're trying to" + }, + { + "startTime": 525.42, + "startTimeFormatted": "00:08:45.420", + "endTime": 529.44, + "endTimeFormatted": "00:08:49.440", + "body": "take all the knowledge and best practices for how to be a" + }, + { + "startTime": 529.44, + "startTimeFormatted": "00:08:49.440", + "endTime": 534.27, + "endTimeFormatted": "00:08:54.270", + "body": "podcaster. And consolidating that into a form factor. That is" + }, + { + "startTime": 534.3, + "startTimeFormatted": "00:08:54.300", + "endTime": 536.52, + "endTimeFormatted": "00:08:56.520", + "body": "something you could easily watch in just a few minutes and get" + }, + { + "startTime": 536.55, + "startTimeFormatted": "00:08:56.550", + "endTime": 540.69, + "endTimeFormatted": "00:09:00.690", + "body": "all the information that you need. And because we're able to" + }, + { + "startTime": 540.81, + "startTimeFormatted": "00:09:00.810", + "endTime": 543.6, + "endTimeFormatted": "00:09:03.600", + "body": "put that level of focus on it, like Alan mentioned, the" + }, + { + "startTime": 543.6, + "startTimeFormatted": "00:09:03.600", + "endTime": 546.96, + "endTimeFormatted": "00:09:06.960", + "body": "production quality is better. We have custom animations, and B" + }, + { + "startTime": 546.96, + "startTimeFormatted": "00:09:06.960", + "endTime": 549.42, + "endTimeFormatted": "00:09:09.420", + "body": "roll, which is just a fancy way of saying we cut away to" + }, + { + "startTime": 549.42, + "startTimeFormatted": "00:09:09.420", + "endTime": 552.72, + "endTimeFormatted": "00:09:12.720", + "body": "different videos of models doing things that match what we're" + }, + { + "startTime": 552.72, + "startTimeFormatted": "00:09:12.720", + "endTime": 558.96, + "endTimeFormatted": "00:09:18.960", + "body": "talking about on screen. And so we're able to create a type of" + }, + { + "startTime": 558.96, + "startTimeFormatted": "00:09:18.960", + "endTime": 563.73, + "endTimeFormatted": "00:09:23.730", + "body": "content that works really well in a YouTube ecosystem. And so" + }, + { + "startTime": 563.73, + "startTimeFormatted": "00:09:23.730", + "endTime": 566.91, + "endTimeFormatted": "00:09:26.910", + "body": "if your whole channel is that kind of content, then YouTube" + }, + { + "startTime": 566.91, + "startTimeFormatted": "00:09:26.910", + "endTime": 571.38, + "endTimeFormatted": "00:09:31.380", + "body": "starts knowing Okay, if someone we've kind of identified them as" + }, + { + "startTime": 571.38, + "startTimeFormatted": "00:09:31.380", + "endTime": 573.87, + "endTimeFormatted": "00:09:33.870", + "body": "a potential podcaster, and they're asking a podcast related" + }, + { + "startTime": 573.87, + "startTimeFormatted": "00:09:33.870", + "endTime": 576.69, + "endTimeFormatted": "00:09:36.690", + "body": "question, Buzzsprout is going to be the channel we recommend" + }, + { + "startTime": 576.69, + "startTimeFormatted": "00:09:36.690", + "endTime": 579.96, + "endTimeFormatted": "00:09:39.960", + "body": "because we know they have this kind of content. The reason that" + }, + { + "startTime": 579.96, + "startTimeFormatted": "00:09:39.960", + "endTime": 584.22, + "endTimeFormatted": "00:09:44.220", + "body": "we split off Buzzcast the full episodes into a separate channel" + }, + { + "startTime": 584.34, + "startTimeFormatted": "00:09:44.340", + "endTime": 589.59, + "endTimeFormatted": "00:09:49.590", + "body": "a couple of months ago, is because we noticed that those" + }, + { + "startTime": 589.59, + "startTimeFormatted": "00:09:49.590", + "endTime": 594.21, + "endTimeFormatted": "00:09:54.210", + "body": "videos were not performing at all at the same level as the" + }, + { + "startTime": 594.54, + "startTimeFormatted": "00:09:54.540", + "endTime": 597.75, + "endTimeFormatted": "00:09:57.750", + "body": "Podcasting, Q&A and other tutorial videos were doing. And" + }, + { + "startTime": 597.75, + "startTimeFormatted": "00:09:57.750", + "endTime": 600.51, + "endTimeFormatted": "00:10:00.510", + "body": "that was a common practice we'd seen with other youtubers That" + }, + { + "startTime": 600.51, + "startTimeFormatted": "00:10:00.510", + "endTime": 603.69, + "endTimeFormatted": "00:10:03.690", + "body": "created video podcasts, they would create new channels for" + }, + { + "startTime": 603.69, + "startTimeFormatted": "00:10:03.690", + "endTime": 606.03, + "endTimeFormatted": "00:10:06.030", + "body": "them. And then if they had clips, that would be a third" + }, + { + "startTime": 606.03, + "startTimeFormatted": "00:10:06.030", + "endTime": 607.68, + "endTimeFormatted": "00:10:07.680", + "body": "channel. So they would actually have three channels, they'd have" + }, + { + "startTime": 607.68, + "startTimeFormatted": "00:10:07.680", + "endTime": 610.44, + "endTimeFormatted": "00:10:10.440", + "body": "their main YouTube channel, a full podcast channel and a clips" + }, + { + "startTime": 610.44, + "startTimeFormatted": "00:10:10.440", + "endTime": 614.13, + "endTimeFormatted": "00:10:14.130", + "body": "channel, in order to make sure that they were kind of playing" + }, + { + "startTime": 614.13, + "startTimeFormatted": "00:10:14.130", + "endTime": 616.68, + "endTimeFormatted": "00:10:16.680", + "body": "by the rules, the best practice of YouTube. So these were all" + }, + { + "startTime": 616.68, + "startTimeFormatted": "00:10:16.680", + "endTime": 619.89, + "endTimeFormatted": "00:10:19.890", + "body": "things that we, you know, as we were experimenting, we weren't" + }, + { + "startTime": 619.89, + "startTimeFormatted": "00:10:19.890", + "endTime": 623.01, + "endTimeFormatted": "00:10:23.010", + "body": "sure like, how far are we really going to carry this book? Like," + }, + { + "startTime": 623.01, + "startTimeFormatted": "00:10:23.010", + "endTime": 627.69, + "endTimeFormatted": "00:10:27.690", + "body": "how invested Are we going to get into video Buzzcast. And so it" + }, + { + "startTime": 627.69, + "startTimeFormatted": "00:10:27.690", + "endTime": 630.15, + "endTimeFormatted": "00:10:30.150", + "body": "didn't make sense to spin up a whole YouTube channel, we're" + }, + { + "startTime": 630.15, + "startTimeFormatted": "00:10:30.150", + "endTime": 632.55, + "endTimeFormatted": "00:10:32.550", + "body": "just going to do a couple episodes and then retire it" + }, + { + "startTime": 632.55, + "startTimeFormatted": "00:10:32.550", + "endTime": 635.97, + "endTimeFormatted": "00:10:35.970", + "body": "right. So we tested in our on our main channel first and said," + }, + { + "startTime": 635.97, + "startTimeFormatted": "00:10:35.970", + "endTime": 639.18, + "endTimeFormatted": "00:10:39.180", + "body": "Okay, that's working. So then what if we took the next step," + }, + { + "startTime": 639.18, + "startTimeFormatted": "00:10:39.180", + "endTime": 641.67, + "endTimeFormatted": "00:10:41.670", + "body": "and we made it consistent? And then what if we took the next" + }, + { + "startTime": 641.67, + "startTimeFormatted": "00:10:41.670", + "endTime": 644.1, + "endTimeFormatted": "00:10:44.100", + "body": "step and made a separate, and so it's kind of like evolved over" + }, + { + "startTime": 644.1, + "startTimeFormatted": "00:10:44.100", + "endTime": 648.72, + "endTimeFormatted": "00:10:48.720", + "body": "time. And now to Kevin's point, it's at the place where we just" + }, + { + "startTime": 648.72, + "startTimeFormatted": "00:10:48.720", + "endTime": 652.44, + "endTimeFormatted": "00:10:52.440", + "body": "wanted to make sure, if we keep going on this trajectory, it's" + }, + { + "startTime": 652.44, + "startTimeFormatted": "00:10:52.440", + "endTime": 655.92, + "endTimeFormatted": "00:10:55.920", + "body": "going to serve you guys, it's gonna make Buzzcast better for" + }, + { + "startTime": 655.92, + "startTimeFormatted": "00:10:55.920", + "endTime": 659.28, + "endTimeFormatted": "00:10:59.280", + "body": "you. And it's also going to make sense in the grand scheme of the" + }, + { + "startTime": 659.28, + "startTimeFormatted": "00:10:59.280", + "endTime": 662.94, + "endTimeFormatted": "00:11:02.940", + "body": "other things that we're doing to produce and create content. And" + }, + { + "startTime": 662.94, + "startTimeFormatted": "00:11:02.940", + "endTime": 666.48, + "endTimeFormatted": "00:11:06.480", + "body": "so we're now at this nexus point where if we're going to be able" + }, + { + "startTime": 666.48, + "startTimeFormatted": "00:11:06.480", + "endTime": 670.29, + "endTimeFormatted": "00:11:10.290", + "body": "to go back and record in the studio, you know, that has a" + }, + { + "startTime": 670.29, + "startTimeFormatted": "00:11:10.290", + "endTime": 672.75, + "endTimeFormatted": "00:11:12.750", + "body": "level of production that even exceeds what we're currently" + }, + { + "startTime": 672.87, + "startTimeFormatted": "00:11:12.870", + "endTime": 677.37, + "endTimeFormatted": "00:11:17.370", + "body": "what we were doing before. And, and so at this point in time, it" + }, + { + "startTime": 677.37, + "startTimeFormatted": "00:11:17.370", + "endTime": 681.03, + "endTimeFormatted": "00:11:21.030", + "body": "makes more sense for us to pause it, knowing we can always turn" + }, + { + "startTime": 681.03, + "startTimeFormatted": "00:11:21.030", + "endTime": 684.27, + "endTimeFormatted": "00:11:24.270", + "body": "it back on later. But just to double down and refocus our" + }, + { + "startTime": 684.27, + "startTimeFormatted": "00:11:24.270", + "endTime": 686.94, + "endTimeFormatted": "00:11:26.940", + "body": "efforts on the audio only version of Buzzcast." + }, + { + "startTime": 687.3, + "startTimeFormatted": "00:11:27.300", + "endTime": 690.63, + "endTimeFormatted": "00:11:30.630", + "speaker": "Alban", + "body": "So if I can kind of tie this together with what are the" + }, + { + "startTime": 690.63, + "startTimeFormatted": "00:11:30.630", + "endTime": 695.43, + "endTimeFormatted": "00:11:35.430", + "body": "best practices we have learned for YouTube, and podcasting, in" + }, + { + "startTime": 695.43, + "startTimeFormatted": "00:11:35.430", + "endTime": 700.47, + "endTimeFormatted": "00:11:40.470", + "body": "particular, because podcasting is really growing on YouTube," + }, + { + "startTime": 701.13, + "startTimeFormatted": "00:11:41.130", + "endTime": 704.85, + "endTimeFormatted": "00:11:44.850", + "body": "one out of five people now who say they listened to podcasts," + }, + { + "startTime": 704.85, + "startTimeFormatted": "00:11:44.850", + "endTime": 708.42, + "endTimeFormatted": "00:11:48.420", + "body": "they listened to most of their podcasts on YouTube, one out of" + }, + { + "startTime": 708.42, + "startTimeFormatted": "00:11:48.420", + "endTime": 713.64, + "endTimeFormatted": "00:11:53.640", + "body": "five, that's pretty remarkably high numbers. That comes from" + }, + { + "startTime": 713.7, + "startTimeFormatted": "00:11:53.700", + "endTime": 717.66, + "endTimeFormatted": "00:11:57.660", + "body": "Edison research. I actually interviewed Tom Webster this" + }, + { + "startTime": 717.66, + "startTimeFormatted": "00:11:57.660", + "endTime": 721.29, + "endTimeFormatted": "00:12:01.290", + "body": "morning, and he told me that so it's definitely working there." + }, + { + "startTime": 721.77, + "startTimeFormatted": "00:12:01.770", + "endTime": 726.06, + "endTimeFormatted": "00:12:06.060", + "body": "But it takes a lot to make it work. And it was not stuff that" + }, + { + "startTime": 726.06, + "startTimeFormatted": "00:12:06.060", + "endTime": 730.02, + "endTimeFormatted": "00:12:10.020", + "body": "was going to make sense for us to do. So. I think to do" + }, + { + "startTime": 730.08, + "startTimeFormatted": "00:12:10.080", + "endTime": 734.13, + "endTimeFormatted": "00:12:14.130", + "body": "podcasts, well on YouTube, you probably need to be recording a" + }, + { + "startTime": 734.13, + "startTimeFormatted": "00:12:14.130", + "endTime": 739.62, + "endTimeFormatted": "00:12:19.620", + "body": "person so that you have that live engaging element. Because I" + }, + { + "startTime": 739.62, + "startTimeFormatted": "00:12:19.620", + "endTime": 743.49, + "endTimeFormatted": "00:12:23.490", + "body": "don't know how to say this exactly. But like, the level of" + }, + { + "startTime": 743.49, + "startTimeFormatted": "00:12:23.490", + "endTime": 748.62, + "endTimeFormatted": "00:12:28.620", + "body": "engagement you want to see between the hosts during a audio" + }, + { + "startTime": 748.71, + "startTimeFormatted": "00:12:28.710", + "endTime": 753.03, + "endTimeFormatted": "00:12:33.030", + "body": "and a video medium is very different. Right now, like I can" + }, + { + "startTime": 753.03, + "startTimeFormatted": "00:12:33.030", + "endTime": 756.24, + "endTimeFormatted": "00:12:36.240", + "body": "see Kevin and Travis and like Kevin looks kind of" + }, + { + "startTime": 756.24, + "startTimeFormatted": "00:12:36.240", + "endTime": 759.33, + "endTimeFormatted": "00:12:39.330", + "body": "disinterested. That doesn't bother anybody who's just" + }, + { + "startTime": 759.33, + "startTimeFormatted": "00:12:39.330", + "endTime": 761.34, + "endTimeFormatted": "00:12:41.340", + "body": "listening to this because they go, Oh, Kevin's probably" + }, + { + "startTime": 761.34, + "startTimeFormatted": "00:12:41.340", + "endTime": 768.06, + "endTimeFormatted": "00:12:48.060", + "body": "listening attentively. But you know what? But if we're on" + }, + { + "startTime": 768.06, + "startTimeFormatted": "00:12:48.060", + "endTime": 771.06, + "endTimeFormatted": "00:12:51.060", + "body": "video, I'd be the first comment we ever got on one of our" + }, + { + "startTime": 771.06, + "startTimeFormatted": "00:12:51.060", + "endTime": 774.57, + "endTimeFormatted": "00:12:54.570", + "body": "Buzzcast episodes was why does albot look so mad. And I was" + }, + { + "startTime": 774.57, + "startTimeFormatted": "00:12:54.570", + "endTime": 779.19, + "endTimeFormatted": "00:12:59.190", + "body": "like, Oh, that's just my face looks. That's just me. Like," + }, + { + "startTime": 779.19, + "startTimeFormatted": "00:12:59.190", + "endTime": 783.63, + "endTimeFormatted": "00:13:03.630", + "body": "that's just me not smiling. And so that works perfectly fine." + }, + { + "startTime": 783.66, + "startTimeFormatted": "00:13:03.660", + "endTime": 787.23, + "endTimeFormatted": "00:13:07.230", + "body": "When you're recording long distance recordings. When it's" + }, + { + "startTime": 787.23, + "startTimeFormatted": "00:13:07.230", + "endTime": 791.55, + "endTimeFormatted": "00:13:11.550", + "body": "on video, it starts to look a little weird. And you can either" + }, + { + "startTime": 791.58, + "startTimeFormatted": "00:13:11.580", + "endTime": 795.51, + "endTimeFormatted": "00:13:15.510", + "body": "kind of over fake enthusiasm, or you can get together in an audio" + }, + { + "startTime": 795.51, + "startTimeFormatted": "00:13:15.510", + "endTime": 799.38, + "endTimeFormatted": "00:13:19.380", + "body": "studio get together in a studio in person. So like, get together" + }, + { + "startTime": 799.38, + "startTimeFormatted": "00:13:19.380", + "endTime": 803.37, + "endTimeFormatted": "00:13:23.370", + "body": "in person, I think is a very high recommendation, they should" + }, + { + "startTime": 803.37, + "startTimeFormatted": "00:13:23.370", + "endTime": 808.2, + "endTimeFormatted": "00:13:28.200", + "body": "try to get that number, you know, if at all possible, then" + }, + { + "startTime": 808.23, + "startTimeFormatted": "00:13:28.230", + "endTime": 811.38, + "endTimeFormatted": "00:13:31.380", + "body": "you've also got to have like multiple shots to be able to" + }, + { + "startTime": 811.38, + "startTimeFormatted": "00:13:31.380", + "endTime": 814.47, + "endTimeFormatted": "00:13:34.470", + "body": "keep it interesting. So that's probably a camera on each host." + }, + { + "startTime": 815.01, + "startTimeFormatted": "00:13:35.010", + "endTime": 818.7, + "endTimeFormatted": "00:13:38.700", + "body": "Maybe an additional wide angle camera, you can see that we've" + }, + { + "startTime": 818.7, + "startTimeFormatted": "00:13:38.700", + "endTime": 822.09, + "endTimeFormatted": "00:13:42.090", + "body": "experimented this in some of our Podcasting Q&A videos is" + }, + { + "startTime": 822.09, + "startTimeFormatted": "00:13:42.090", + "endTime": 825.93, + "endTimeFormatted": "00:13:45.930", + "body": "rolling, I think three different cameras now all at once, and" + }, + { + "startTime": 825.93, + "startTimeFormatted": "00:13:45.930", + "endTime": 830.7, + "endTimeFormatted": "00:13:50.700", + "body": "then we flipped between them. For us to do the three of us in" + }, + { + "startTime": 830.7, + "startTimeFormatted": "00:13:50.700", + "endTime": 835.11, + "endTimeFormatted": "00:13:55.110", + "body": "the studio would require us probably to be shooting like" + }, + { + "startTime": 835.11, + "startTimeFormatted": "00:13:55.110", + "endTime": 839.91, + "endTimeFormatted": "00:13:59.910", + "body": "four or five cameras at a time. And then the, you know, that" + }, + { + "startTime": 839.91, + "startTimeFormatted": "00:13:59.910", + "endTime": 843.33, + "endTimeFormatted": "00:14:03.330", + "body": "really ramps up the amount of video editing that we're doing." + }, + { + "startTime": 843.51, + "startTimeFormatted": "00:14:03.510", + "endTime": 846.51, + "endTimeFormatted": "00:14:06.510", + "body": "Okay, so we're buying a bunch of cameras. We're buying, we're" + }, + { + "startTime": 846.51, + "startTimeFormatted": "00:14:06.510", + "endTime": 849.96, + "endTimeFormatted": "00:14:09.960", + "body": "doing more in video editing. We're getting us all together in" + }, + { + "startTime": 849.96, + "startTimeFormatted": "00:14:09.960", + "endTime": 853.26, + "endTimeFormatted": "00:14:13.260", + "body": "the studio in the most dangerous, dangerous COVID" + }, + { + "startTime": 853.26, + "startTimeFormatted": "00:14:13.260", + "endTime": 857.79, + "endTimeFormatted": "00:14:17.790", + "body": "hotspot United States right now. So three negatives, and all for" + }, + { + "startTime": 857.79, + "startTimeFormatted": "00:14:17.790", + "endTime": 861.09, + "endTimeFormatted": "00:14:21.090", + "body": "the benefit of starting a new YouTube channel that isn't" + }, + { + "startTime": 861.12, + "startTimeFormatted": "00:14:21.120", + "endTime": 864.93, + "endTimeFormatted": "00:14:24.930", + "body": "exactly in alignment with what we want. So that's to kind of" + }, + { + "startTime": 864.93, + "startTimeFormatted": "00:14:24.930", + "endTime": 868.29, + "endTimeFormatted": "00:14:28.290", + "body": "wrap it up quickly. What how we're thinking about this. Maybe" + }, + { + "startTime": 868.29, + "startTimeFormatted": "00:14:28.290", + "endTime": 872.34, + "endTimeFormatted": "00:14:32.340", + "body": "we come back, maybe not. But until next time, listen to us on" + }, + { + "startTime": 872.34, + "startTimeFormatted": "00:14:32.340", + "endTime": 874.71, + "endTimeFormatted": "00:14:34.710", + "body": "our RSS backed podcast." + }, + { + "startTime": 875.099, + "startTimeFormatted": "00:14:35.099", + "endTime": 878.669, + "endTimeFormatted": "00:14:38.669", + "speaker": "Travis", + "body": "Yes, we are definitely not going anywhere. You'll just" + }, + { + "startTime": 878.669, + "startTimeFormatted": "00:14:38.669", + "endTime": 881.399, + "endTimeFormatted": "00:14:41.399", + "body": "need to listen to us anywhere except for Spotify will be." + }, + { + "startTime": 882.42, + "startTimeFormatted": "00:14:42.420", + "endTime": 885.27, + "endTimeFormatted": "00:14:45.270", + "speaker": "Alban", + "body": "This is basically Apple podcasts and indie apps" + }, + { + "startTime": 885.27, + "startTimeFormatted": "00:14:45.270", + "endTime": 888.27, + "endTimeFormatted": "00:14:48.270", + "body": "exclusive now. Yeah, I would say so. I would say so." + }, + { + "startTime": 888.569, + "startTimeFormatted": "00:14:48.569", + "endTime": 890.849, + "endTimeFormatted": "00:14:50.849", + "speaker": "Kevin", + "body": "Yeah. I think it's an interesting point that you" + }, + { + "startTime": 890.849, + "startTimeFormatted": "00:14:50.849", + "endTime": 893.339, + "endTimeFormatted": "00:14:53.339", + "body": "talked about when you talk about your interview with Tom Webster" + }, + { + "startTime": 893.339, + "startTimeFormatted": "00:14:53.339", + "endTime": 896.219, + "endTimeFormatted": "00:14:56.219", + "body": "and he's saying that one in five podcasts are roughly 20% of" + }, + { + "startTime": 896.249, + "startTimeFormatted": "00:14:56.249", + "endTime": 899.969, + "endTimeFormatted": "00:14:59.969", + "body": "people listening the podcast in YouTube, and I can't help it" + }, + { + "startTime": 899.999, + "startTimeFormatted": "00:14:59.999", + "endTime": 905.399, + "endTimeFormatted": "00:15:05.399", + "body": "think that that is it just don't think that there's a stat that" + }, + { + "startTime": 905.399, + "startTimeFormatted": "00:15:05.399", + "endTime": 910.259, + "endTimeFormatted": "00:15:10.259", + "body": "we should just take without some additional thought, right? Like" + }, + { + "startTime": 910.619, + "startTimeFormatted": "00:15:10.619", + "endTime": 912.539, + "endTimeFormatted": "00:15:12.539", + "body": "listening to a podcast and YouTube is a different" + }, + { + "startTime": 912.539, + "startTimeFormatted": "00:15:12.539", + "endTime": 915.989, + "endTimeFormatted": "00:15:15.989", + "body": "experience than what a lot of us who produce podcasts are in the" + }, + { + "startTime": 915.989, + "startTimeFormatted": "00:15:15.989", + "endTime": 918.089, + "endTimeFormatted": "00:15:18.089", + "body": "podcasting space probably think about when we think about" + }, + { + "startTime": 918.119, + "startTimeFormatted": "00:15:18.119", + "endTime": 921.329, + "endTimeFormatted": "00:15:21.329", + "body": "podcasting, like the benefits in the beauty of podcasting is it's" + }, + { + "startTime": 921.329, + "startTimeFormatted": "00:15:21.329", + "endTime": 923.909, + "endTimeFormatted": "00:15:23.909", + "body": "it's passive, it's something that you can do not only on" + }, + { + "startTime": 923.909, + "startTimeFormatted": "00:15:23.909", + "endTime": 926.069, + "endTimeFormatted": "00:15:26.069", + "body": "demand, but at your convenience while you're doing other things" + }, + { + "startTime": 926.069, + "startTimeFormatted": "00:15:26.069", + "endTime": 927.899, + "endTimeFormatted": "00:15:27.899", + "body": "while you're doing housework while you're exercising, while" + }, + { + "startTime": 927.899, + "startTimeFormatted": "00:15:27.899", + "endTime": 930.329, + "endTimeFormatted": "00:15:30.329", + "body": "you're at work while you're driving a car, you the YouTube" + }, + { + "startTime": 930.329, + "startTimeFormatted": "00:15:30.329", + "endTime": 934.229, + "endTimeFormatted": "00:15:34.229", + "body": "experience is different than that. And so while the YouTube" + }, + { + "startTime": 934.229, + "startTimeFormatted": "00:15:34.229", + "endTime": 937.199, + "endTimeFormatted": "00:15:37.199", + "body": "ecosystem is huge, and it might be a lot more mainstream in" + }, + { + "startTime": 937.199, + "startTimeFormatted": "00:15:37.199", + "endTime": 939.239, + "endTimeFormatted": "00:15:39.239", + "body": "terms of the number of people who engage in that space, and" + }, + { + "startTime": 939.239, + "startTimeFormatted": "00:15:39.239", + "endTime": 941.819, + "endTimeFormatted": "00:15:41.819", + "body": "then at some point, click on something that is calling itself" + }, + { + "startTime": 941.819, + "startTimeFormatted": "00:15:41.819", + "endTime": 945.929, + "endTimeFormatted": "00:15:45.929", + "body": "a podcast, it's, it might just be an exposure thing, it might" + }, + { + "startTime": 945.929, + "startTimeFormatted": "00:15:45.929", + "endTime": 947.849, + "endTimeFormatted": "00:15:47.849", + "body": "just be the size of the ecosystem thing, it might not" + }, + { + "startTime": 947.849, + "startTimeFormatted": "00:15:47.849", + "endTime": 952.049, + "endTimeFormatted": "00:15:52.049", + "body": "necessarily be what we would consider a podcast and all the" + }, + { + "startTime": 952.049, + "startTimeFormatted": "00:15:52.049", + "endTime": 953.939, + "endTimeFormatted": "00:15:53.939", + "body": "great benefits that go along with podcasting. And I don't" + }, + { + "startTime": 953.939, + "startTimeFormatted": "00:15:53.939", + "endTime": 956.789, + "endTimeFormatted": "00:15:56.789", + "body": "want to get into the details of is it does it really have an RSS" + }, + { + "startTime": 956.789, + "startTimeFormatted": "00:15:56.789", + "endTime": 958.439, + "endTimeFormatted": "00:15:58.439", + "body": "feed and all that stuff, that's not really what I'm talking" + }, + { + "startTime": 958.439, + "startTimeFormatted": "00:15:58.439", + "endTime": 960.659, + "endTimeFormatted": "00:16:00.659", + "body": "about. I'm just kind of talking about the size of the medium and" + }, + { + "startTime": 960.659, + "startTimeFormatted": "00:16:00.659", + "endTime": 962.999, + "endTimeFormatted": "00:16:02.999", + "body": "the number of people who at some point during their normal day," + }, + { + "startTime": 963.209, + "startTimeFormatted": "00:16:03.209", + "endTime": 965.789, + "endTimeFormatted": "00:16:05.789", + "body": "flip open YouTube, and might click on something that is" + }, + { + "startTime": 965.789, + "startTimeFormatted": "00:16:05.789", + "endTime": 971.129, + "endTimeFormatted": "00:16:11.129", + "body": "calling itself a podcast. So that being said, YouTube is a" + }, + { + "startTime": 971.159, + "startTimeFormatted": "00:16:11.159", + "endTime": 973.769, + "endTimeFormatted": "00:16:13.769", + "body": "fine place for you to distribute content and being creator. But" + }, + { + "startTime": 973.769, + "startTimeFormatted": "00:16:13.769", + "endTime": 976.289, + "endTimeFormatted": "00:16:16.289", + "body": "hopefully, there's some takeaways from what we've" + }, + { + "startTime": 976.289, + "startTimeFormatted": "00:16:16.289", + "endTime": 978.719, + "endTimeFormatted": "00:16:18.719", + "body": "experienced over the past year, pressing into the YouTube Space" + }, + { + "startTime": 978.719, + "startTimeFormatted": "00:16:18.719", + "endTime": 982.439, + "endTimeFormatted": "00:16:22.439", + "body": "a little bit in terms of putting a podcast onto YouTube, there's" + }, + { + "startTime": 982.439, + "startTimeFormatted": "00:16:22.439", + "endTime": 985.829, + "endTimeFormatted": "00:16:25.829", + "body": "a lot more that goes into it than just recording a zoom call," + }, + { + "startTime": 985.949, + "startTimeFormatted": "00:16:25.949", + "endTime": 988.109, + "endTimeFormatted": "00:16:28.109", + "body": "and then throwing it up there. If you really want to succeed," + }, + { + "startTime": 988.469, + "startTimeFormatted": "00:16:28.469", + "endTime": 990.059, + "endTimeFormatted": "00:16:30.059", + "body": "you have to understand the algorithm, you have to" + }, + { + "startTime": 990.059, + "startTimeFormatted": "00:16:30.059", + "endTime": 992.189, + "endTimeFormatted": "00:16:32.189", + "body": "understand how the medium works, you have to understand what type" + }, + { + "startTime": 992.189, + "startTimeFormatted": "00:16:32.189", + "endTime": 995.249, + "endTimeFormatted": "00:16:35.249", + "body": "of content works there is, this is a larger level of commitment." + }, + { + "startTime": 995.399, + "startTimeFormatted": "00:16:35.399", + "endTime": 998.189, + "endTimeFormatted": "00:16:38.189", + "body": "And you might find a huge audience and huge following" + }, + { + "startTime": 998.189, + "startTimeFormatted": "00:16:38.189", + "endTime": 1003.259, + "endTimeFormatted": "00:16:43.259", + "body": "there. But it's probably not going to be it's not an" + }, + { + "startTime": 1003.259, + "startTimeFormatted": "00:16:43.259", + "endTime": 1005.269, + "endTimeFormatted": "00:16:45.269", + "body": "overnight success. It is a lot of work. And it is very" + }, + { + "startTime": 1005.269, + "startTimeFormatted": "00:16:45.269", + "endTime": 1007.849, + "endTimeFormatted": "00:16:47.849", + "body": "different than audio only podcasting. So as we continue to" + }, + { + "startTime": 1007.849, + "startTimeFormatted": "00:16:47.849", + "endTime": 1012.559, + "endTimeFormatted": "00:16:52.559", + "body": "unpack, and learn things about how to use YouTube, or other" + }, + { + "startTime": 1012.559, + "startTimeFormatted": "00:16:52.559", + "endTime": 1015.649, + "endTimeFormatted": "00:16:55.649", + "body": "channels to grow your main podcast, your audio only" + }, + { + "startTime": 1015.649, + "startTimeFormatted": "00:16:55.649", + "endTime": 1018.379, + "endTimeFormatted": "00:16:58.379", + "body": "podcast, it's distributed through RSS, we will continue to" + }, + { + "startTime": 1018.379, + "startTimeFormatted": "00:16:58.379", + "endTime": 1020.179, + "endTimeFormatted": "00:17:00.179", + "body": "share those learnings with you and hopefully make you a better" + }, + { + "startTime": 1020.179, + "startTimeFormatted": "00:17:00.179", + "endTime": 1023.719, + "endTimeFormatted": "00:17:03.719", + "body": "podcaster. But this is where we are today. And the decisions" + }, + { + "startTime": 1023.719, + "startTimeFormatted": "00:17:03.719", + "endTime": 1027.649, + "endTimeFormatted": "00:17:07.649", + "body": "we've made. So this podcast will not be on YouTube, and not in" + }, + { + "startTime": 1027.649, + "startTimeFormatted": "00:17:07.649", + "endTime": 1031.639, + "endTimeFormatted": "00:17:11.639", + "body": "video form. And as we learn more and grow more, we'll share all" + }, + { + "startTime": 1031.639, + "startTimeFormatted": "00:17:11.639", + "endTime": 1032.179, + "endTimeFormatted": "00:17:12.179", + "body": "our learnings with" + }, + { + "startTime": 1035.42, + "startTimeFormatted": "00:17:15.420", + "endTime": 1037.61, + "endTimeFormatted": "00:17:17.610", + "speaker": "Travis", + "body": "so if you've been a Buzzcast listener for any length" + }, + { + "startTime": 1037.61, + "startTimeFormatted": "00:17:17.610", + "endTime": 1041.9, + "endTimeFormatted": "00:17:21.900", + "body": "of time, you know, we're big fans of the podcast index and" + }, + { + "startTime": 1041.9, + "startTimeFormatted": "00:17:21.900", + "endTime": 1045.08, + "endTimeFormatted": "00:17:25.080", + "body": "podcasting 2.0, that entire group, that entire working group" + }, + { + "startTime": 1045.38, + "startTimeFormatted": "00:17:25.380", + "endTime": 1049.28, + "endTimeFormatted": "00:17:29.280", + "body": "of people dedicating themselves to improving the open podcast" + }, + { + "startTime": 1049.28, + "startTimeFormatted": "00:17:29.280", + "endTime": 1053, + "endTimeFormatted": "00:17:33.000", + "body": "ecosystem, and creating really fun new features that allow you" + }, + { + "startTime": 1053, + "startTimeFormatted": "00:17:33.000", + "endTime": 1056.42, + "endTimeFormatted": "00:17:36.420", + "body": "as a creator, to make awesome content and help your listeners" + }, + { + "startTime": 1056.69, + "startTimeFormatted": "00:17:36.690", + "endTime": 1060.35, + "endTimeFormatted": "00:17:40.350", + "body": "really engage with your show in some really unique ways. Kevin" + }, + { + "startTime": 1060.35, + "startTimeFormatted": "00:17:40.350", + "endTime": 1064.07, + "endTimeFormatted": "00:17:44.070", + "body": "and Tom had an opportunity to sit down with Dave Jones, who is" + }, + { + "startTime": 1064.07, + "startTimeFormatted": "00:17:44.070", + "endTime": 1067.31, + "endTimeFormatted": "00:17:47.310", + "body": "working on the podcast index and podcasting 2.0 to talk about a" + }, + { + "startTime": 1067.31, + "startTimeFormatted": "00:17:47.310", + "endTime": 1072.17, + "endTimeFormatted": "00:17:52.170", + "body": "new feature that Buzzsprout is now supporting, and also tease" + }, + { + "startTime": 1072.17, + "startTimeFormatted": "00:17:52.170", + "endTime": 1074.84, + "endTimeFormatted": "00:17:54.840", + "body": "out some fun new things that they have coming down the" + }, + { + "startTime": 1074.84, + "startTimeFormatted": "00:17:54.840", + "endTime": 1077.96, + "endTimeFormatted": "00:17:57.960", + "body": "pipeline. So here's that conversation between Kevin Tom" + }, + { + "startTime": 1078.17, + "startTimeFormatted": "00:17:58.170", + "endTime": 1079.01, + "endTimeFormatted": "00:17:59.010", + "body": "and Dave Jones." + }, + { + "startTime": 1079.31, + "startTimeFormatted": "00:17:59.310", + "endTime": 1081.59, + "endTimeFormatted": "00:18:01.590", + "speaker": "Tom", + "body": "This is Tom Rossi, technical co founder of" + }, + { + "startTime": 1081.59, + "startTimeFormatted": "00:18:01.590", + "endTime": 1086.99, + "endTimeFormatted": "00:18:06.990", + "body": "Buzzsprout. And I am glad to be joined by Dave Jones, one of the" + }, + { + "startTime": 1086.99, + "startTimeFormatted": "00:18:06.990", + "endTime": 1090.11, + "endTimeFormatted": "00:18:10.110", + "body": "two guys running the podcast index, Dave Jones and Adam curry" + }, + { + "startTime": 1090.11, + "startTimeFormatted": "00:18:10.110", + "endTime": 1093.86, + "endTimeFormatted": "00:18:13.860", + "body": "have been doing amazing work with the podcast index. Dave," + }, + { + "startTime": 1093.89, + "startTimeFormatted": "00:18:13.890", + "endTime": 1097.91, + "endTimeFormatted": "00:18:17.910", + "body": "welcome to the show. Thanks for all that you're doing. Tell us a" + }, + { + "startTime": 1097.91, + "startTimeFormatted": "00:18:17.910", + "endTime": 1100.64, + "endTimeFormatted": "00:18:20.640", + "body": "little bit about the podcast index and what you guys are" + }, + { + "startTime": 1100.64, + "startTimeFormatted": "00:18:20.640", + "endTime": 1101.27, + "endTimeFormatted": "00:18:21.270", + "body": "doing over there." + }, + { + "startTime": 1101.66, + "startTimeFormatted": "00:18:21.660", + "endTime": 1103.64, + "endTimeFormatted": "00:18:23.640", + "speaker": "Dave", + "body": "Let's see, what are we doing at the podcast? And what" + }, + { + "startTime": 1103.64, + "startTimeFormatted": "00:18:23.640", + "endTime": 1104.84, + "endTimeFormatted": "00:18:24.840", + "body": "are we not doing at podcast?" + }, + { + "startTime": 1105.44, + "startTimeFormatted": "00:18:25.440", + "endTime": 1109.82, + "endTimeFormatted": "00:18:29.820", + "speaker": "Kevin", + "body": "So Dave, the podcasting to auto project is like it" + }, + { + "startTime": 1109.82, + "startTimeFormatted": "00:18:29.820", + "endTime": 1112.7, + "endTimeFormatted": "00:18:32.700", + "body": "incorporates the podcast index and the podcasting namespace" + }, + { + "startTime": 1112.7, + "startTimeFormatted": "00:18:32.700", + "endTime": 1114.65, + "endTimeFormatted": "00:18:34.650", + "body": "right and a whole bunch of things. Can you tell us like" + }, + { + "startTime": 1114.65, + "startTimeFormatted": "00:18:34.650", + "endTime": 1116.69, + "endTimeFormatted": "00:18:36.690", + "body": "what's the difference? What are the two functions that those" + }, + { + "startTime": 1116.72, + "startTimeFormatted": "00:18:36.720", + "endTime": 1118.88, + "endTimeFormatted": "00:18:38.880", + "body": "those two things sort of where they come together? How does it" + }, + { + "startTime": 1118.88, + "startTimeFormatted": "00:18:38.880", + "endTime": 1119.3, + "endTimeFormatted": "00:18:39.300", + "body": "all work?" + }, + { + "startTime": 1119.45, + "startTimeFormatted": "00:18:39.450", + "endTime": 1122.48, + "endTimeFormatted": "00:18:42.480", + "speaker": "Dave", + "body": "Yeah, we get this question a lot. What the heck are y'all" + }, + { + "startTime": 1122.54, + "startTimeFormatted": "00:18:42.540", + "endTime": 1125.63, + "endTimeFormatted": "00:18:45.630", + "body": "doing with all these various projects? And then what did they" + }, + { + "startTime": 1125.63, + "startTimeFormatted": "00:18:45.630", + "endTime": 1131.51, + "endTimeFormatted": "00:18:51.510", + "body": "even mean? And so podcasting 2.0 is the name of our podcast, but" + }, + { + "startTime": 1131.51, + "startTimeFormatted": "00:18:51.510", + "endTime": 1134.36, + "endTimeFormatted": "00:18:54.360", + "body": "it's also the name of the broader movement of trying to" + }, + { + "startTime": 1134.36, + "startTimeFormatted": "00:18:54.360", + "endTime": 1137.27, + "endTimeFormatted": "00:18:57.270", + "body": "preserve, protect and extend the open RSS ecosystem," + }, + { + "startTime": 1137.3, + "startTimeFormatted": "00:18:57.300", + "endTime": 1139.01, + "endTimeFormatted": "00:18:59.010", + "speaker": "Kevin", + "body": "right. When we say this, this is a little bit different" + }, + { + "startTime": 1139.01, + "startTimeFormatted": "00:18:59.010", + "endTime": 1141.68, + "endTimeFormatted": "00:19:01.680", + "body": "than what like fireside chat introduced it podcast movement," + }, + { + "startTime": 1141.68, + "startTimeFormatted": "00:19:01.680", + "endTime": 1144.11, + "endTimeFormatted": "00:19:04.110", + "body": "is podcasting to Dotto, right. Yeah," + }, + { + "startTime": 1144.26, + "startTimeFormatted": "00:19:04.260", + "endTime": 1147.68, + "endTimeFormatted": "00:19:07.680", + "speaker": "Dave", + "body": "I gotta hope it is completely different. Yeah, but" + }, + { + "startTime": 1147.68, + "startTimeFormatted": "00:19:07.680", + "endTime": 1153.29, + "endTimeFormatted": "00:19:13.290", + "body": "podcasting. 2.0 is just an open source, volunteer movement of" + }, + { + "startTime": 1153.29, + "startTimeFormatted": "00:19:13.290", + "endTime": 1157.13, + "endTimeFormatted": "00:19:17.130", + "body": "people coming up with ideas and launching projects to help" + }, + { + "startTime": 1157.37, + "startTimeFormatted": "00:19:17.370", + "endTime": 1161.75, + "endTimeFormatted": "00:19:21.750", + "body": "preserve the open RSS ecosystem of podcasting, and podcasting" + }, + { + "startTime": 1161.78, + "startTimeFormatted": "00:19:21.780", + "endTime": 1164.54, + "endTimeFormatted": "00:19:24.540", + "body": "inside the app. So pod inside podcasting 2.0. But that would" + }, + { + "startTime": 1164.54, + "startTimeFormatted": "00:19:24.540", + "endTime": 1166.97, + "endTimeFormatted": "00:19:26.970", + "body": "be the podcast namespace where all these new features and tags" + }, + { + "startTime": 1166.97, + "startTimeFormatted": "00:19:26.970", + "endTime": 1170.03, + "endTimeFormatted": "00:19:30.030", + "body": "are coming from. Also within podcasting, 2.0 would be" + }, + { + "startTime": 1170.03, + "startTimeFormatted": "00:19:30.030", + "endTime": 1173.72, + "endTimeFormatted": "00:19:33.720", + "body": "something like pod ping, which allows hosts to rapidly notified" + }, + { + "startTime": 1173.84, + "startTimeFormatted": "00:19:33.840", + "endTime": 1176.93, + "endTimeFormatted": "00:19:36.930", + "body": "apps and aggregators of new episodes, things like that." + }, + { + "startTime": 1176.96, + "startTimeFormatted": "00:19:36.960", + "endTime": 1180.23, + "endTimeFormatted": "00:19:40.230", + "body": "That's all in the podcasting 2.0 side of things. The podcast" + }, + { + "startTime": 1180.26, + "startTimeFormatted": "00:19:40.260", + "endTime": 1184.85, + "endTimeFormatted": "00:19:44.850", + "body": "index is the thing that we created at the very beginning in" + }, + { + "startTime": 1184.85, + "startTimeFormatted": "00:19:44.850", + "endTime": 1188.15, + "endTimeFormatted": "00:19:48.150", + "body": "order to facilitate all these other things. So the podcast" + }, + { + "startTime": 1188.15, + "startTimeFormatted": "00:19:48.150", + "endTime": 1191.39, + "endTimeFormatted": "00:19:51.390", + "body": "index is the largest directory of podcasts on the internet." + }, + { + "startTime": 1191.39, + "startTimeFormatted": "00:19:51.390", + "endTime": 1195.83, + "endTimeFormatted": "00:19:55.830", + "body": "It's were like 4.1 million podcasts right now feeds. We are" + }, + { + "startTime": 1195.83, + "startTimeFormatted": "00:19:55.830", + "endTime": 1201.71, + "endTimeFormatted": "00:20:01.710", + "body": "a directory and also an API for podcast app. to hook in to get" + }, + { + "startTime": 1201.71, + "startTimeFormatted": "00:20:01.710", + "endTime": 1204.29, + "endTimeFormatted": "00:20:04.290", + "body": "their podcast data from, basically, they just start" + }, + { + "startTime": 1204.29, + "startTimeFormatted": "00:20:04.290", + "endTime": 1208.22, + "endTimeFormatted": "00:20:08.220", + "body": "coding an app, they plug into us and they get all their data in," + }, + { + "startTime": 1208.34, + "startTimeFormatted": "00:20:08.340", + "endTime": 1212.21, + "endTimeFormatted": "00:20:12.210", + "body": "it saves them a world of hurt on that side of things. So those," + }, + { + "startTime": 1212.45, + "startTimeFormatted": "00:20:12.450", + "endTime": 1216.47, + "endTimeFormatted": "00:20:16.470", + "body": "the podcasts index is the APN directory, but geisen 2.0 is all" + }, + { + "startTime": 1216.47, + "startTimeFormatted": "00:20:16.470", + "endTime": 1218.6, + "endTimeFormatted": "00:20:18.600", + "body": "the features and community movement." + }, + { + "startTime": 1219.23, + "startTimeFormatted": "00:20:19.230", + "endTime": 1222.35, + "endTimeFormatted": "00:20:22.350", + "speaker": "Kevin", + "body": "Right, and then huge opportunity with the index is" + }, + { + "startTime": 1222.35, + "startTimeFormatted": "00:20:22.350", + "endTime": 1224.93, + "endTimeFormatted": "00:20:24.930", + "body": "that we're not tied in or reliant on Apple anymore. So" + }, + { + "startTime": 1224.93, + "startTimeFormatted": "00:20:24.930", + "endTime": 1226.91, + "endTimeFormatted": "00:20:26.910", + "body": "like over the past two or three months, Apple's directory has" + }, + { + "startTime": 1226.91, + "startTimeFormatted": "00:20:26.910", + "endTime": 1229.61, + "endTimeFormatted": "00:20:29.610", + "body": "been having a ton of problems. Not to mention even before that," + }, + { + "startTime": 1229.61, + "startTimeFormatted": "00:20:29.610", + "endTime": 1231.77, + "endTimeFormatted": "00:20:31.770", + "body": "when it was working, well, it would take you probably a" + }, + { + "startTime": 1231.77, + "startTimeFormatted": "00:20:31.770", + "endTime": 1234.77, + "endTimeFormatted": "00:20:34.770", + "body": "minimum of two or three days up to a couple weeks to even get in" + }, + { + "startTime": 1234.98, + "startTimeFormatted": "00:20:34.980", + "endTime": 1237.71, + "endTimeFormatted": "00:20:37.710", + "body": "Apple podcast directory, then when you publish a new episode," + }, + { + "startTime": 1237.71, + "startTimeFormatted": "00:20:37.710", + "endTime": 1240.95, + "endTimeFormatted": "00:20:40.950", + "body": "it might be 24 hours or more before that new episode gets" + }, + { + "startTime": 1240.95, + "startTimeFormatted": "00:20:40.950", + "endTime": 1243.74, + "endTimeFormatted": "00:20:43.740", + "body": "released in search showing up on any of the apps that rely on" + }, + { + "startTime": 1243.74, + "startTimeFormatted": "00:20:43.740", + "endTime": 1246.95, + "endTimeFormatted": "00:20:46.950", + "body": "that directory. And the index solves all that along with other" + }, + { + "startTime": 1246.95, + "startTimeFormatted": "00:20:46.950", + "endTime": 1249.44, + "endTimeFormatted": "00:20:49.440", + "body": "technologies that you're developing as well like the pod" + }, + { + "startTime": 1249.44, + "startTimeFormatted": "00:20:49.440", + "endTime": 1250.46, + "endTimeFormatted": "00:20:50.460", + "body": "paying and everything else. Right." + }, + { + "startTime": 1250.52, + "startTimeFormatted": "00:20:50.520", + "endTime": 1253.52, + "endTimeFormatted": "00:20:53.520", + "speaker": "Dave", + "body": "Yeah, we started this whole project with with the" + }, + { + "startTime": 1253.52, + "startTimeFormatted": "00:20:53.520", + "endTime": 1256.7, + "endTimeFormatted": "00:20:56.700", + "body": "directory and the API with the idea that we wanted to take" + }, + { + "startTime": 1257.21, + "startTimeFormatted": "00:20:57.210", + "endTime": 1262.25, + "endTimeFormatted": "00:21:02.250", + "body": "Apple Apple's directory away from being the center of the" + }, + { + "startTime": 1262.25, + "startTimeFormatted": "00:21:02.250", + "endTime": 1265.43, + "endTimeFormatted": "00:21:05.430", + "body": "podcasting universe, which has been for, you know, 15 years at" + }, + { + "startTime": 1265.43, + "startTimeFormatted": "00:21:05.430", + "endTime": 1270.71, + "endTimeFormatted": "00:21:10.710", + "body": "least. And the idea there was that, you know, no, no knock on" + }, + { + "startTime": 1270.71, + "startTimeFormatted": "00:21:10.710", + "endTime": 1273.32, + "endTimeFormatted": "00:21:13.320", + "body": "Apple, I mean, they've been good stewards of podcasting, it's" + }, + { + "startTime": 1273.32, + "startTimeFormatted": "00:21:13.320", + "endTime": 1277.82, + "endTimeFormatted": "00:21:17.820", + "body": "just that it doesn't make a lot of sense for an open" + }, + { + "startTime": 1278.6, + "startTimeFormatted": "00:21:18.600", + "endTime": 1283.55, + "endTimeFormatted": "00:21:23.550", + "body": "specification, like podcasting, an open system that anybody can" + }, + { + "startTime": 1283.55, + "startTimeFormatted": "00:21:23.550", + "endTime": 1289.07, + "endTimeFormatted": "00:21:29.070", + "body": "participate in, it does not make a lot of sense for that. To be" + }, + { + "startTime": 1289.07, + "startTimeFormatted": "00:21:29.070", + "endTime": 1293.18, + "endTimeFormatted": "00:21:33.180", + "body": "controlled by a single humongous entity like apple, I mean," + }, + { + "startTime": 1293.18, + "startTimeFormatted": "00:21:33.180", + "endTime": 1295.67, + "endTimeFormatted": "00:21:35.670", + "body": "they're literally the biggest company in the world. And so" + }, + { + "startTime": 1295.67, + "startTimeFormatted": "00:21:35.670", + "endTime": 1297.89, + "endTimeFormatted": "00:21:37.890", + "body": "it's sort of like you have this weird spectrum where you got" + }, + { + "startTime": 1297.89, + "startTimeFormatted": "00:21:37.890", + "endTime": 1301.82, + "endTimeFormatted": "00:21:41.820", + "body": "podcasting, which is completely open, I can hand write an RSS" + }, + { + "startTime": 1301.82, + "startTimeFormatted": "00:21:41.820", + "endTime": 1305.15, + "endTimeFormatted": "00:21:45.150", + "body": "feed today, and get into the inbox and create a podcast. And" + }, + { + "startTime": 1305.18, + "startTimeFormatted": "00:21:45.180", + "endTime": 1308.78, + "endTimeFormatted": "00:21:48.780", + "body": "I can do it from my computer in five minutes. But then you have" + }, + { + "startTime": 1309.05, + "startTimeFormatted": "00:21:49.050", + "endTime": 1312.56, + "endTimeFormatted": "00:21:52.560", + "body": "the directory where all the podcasts are found, his career" + }, + { + "startTime": 1312.59, + "startTimeFormatted": "00:21:52.590", + "endTime": 1316.22, + "endTimeFormatted": "00:21:56.220", + "body": "is controlled by this huge corporation. So it really just" + }, + { + "startTime": 1316.22, + "startTimeFormatted": "00:21:56.220", + "endTime": 1320.06, + "endTimeFormatted": "00:22:00.060", + "body": "didn't didn't make a lot of sense, the goal there was create" + }, + { + "startTime": 1320.06, + "startTimeFormatted": "00:22:00.060", + "endTime": 1323.93, + "endTimeFormatted": "00:22:03.930", + "body": "a directory that is completely open, anybody can join it," + }, + { + "startTime": 1323.93, + "startTimeFormatted": "00:22:03.930", + "endTime": 1327.23, + "endTimeFormatted": "00:22:07.230", + "body": "anybody can add to it, anybody can put their podcast into it in" + }, + { + "startTime": 1327.41, + "startTimeFormatted": "00:22:07.410", + "endTime": 1332.06, + "endTimeFormatted": "00:22:12.060", + "body": "15 seconds. And then the next step, which is the which is the" + }, + { + "startTime": 1332.06, + "startTimeFormatted": "00:22:12.060", + "endTime": 1335.51, + "endTimeFormatted": "00:22:15.510", + "body": "part that has to happen, make it available for free, and" + }, + { + "startTime": 1335.51, + "startTimeFormatted": "00:22:15.510", + "endTime": 1338.69, + "endTimeFormatted": "00:22:18.690", + "body": "everybody can download it, you can download it our entire" + }, + { + "startTime": 1338.69, + "startTimeFormatted": "00:22:18.690", + "endTime": 1343.22, + "endTimeFormatted": "00:22:23.220", + "body": "database right now from our From the homepage of our website, and" + }, + { + "startTime": 1343.37, + "startTimeFormatted": "00:22:23.370", + "endTime": 1345.47, + "endTimeFormatted": "00:22:25.470", + "body": "do whatever you want with it, you can go create your own" + }, + { + "startTime": 1345.47, + "startTimeFormatted": "00:22:25.470", + "endTime": 1348.71, + "endTimeFormatted": "00:22:28.710", + "body": "directory or your own API or your own apps. So if it's not" + }, + { + "startTime": 1348.71, + "startTimeFormatted": "00:22:28.710", + "endTime": 1352.07, + "endTimeFormatted": "00:22:32.070", + "body": "free, then it doesn't solve any of the problem. And if you have" + }, + { + "startTime": 1352.07, + "startTimeFormatted": "00:22:32.070", + "endTime": 1354.35, + "endTimeFormatted": "00:22:34.350", + "body": "to have us, it still doesn't solve the problem. You need to" + }, + { + "startTime": 1354.35, + "startTimeFormatted": "00:22:34.350", + "endTime": 1357.11, + "endTimeFormatted": "00:22:37.110", + "body": "be we need to redistribute it. And so that's what we that was" + }, + { + "startTime": 1357.11, + "startTimeFormatted": "00:22:37.110", + "endTime": 1358.04, + "endTimeFormatted": "00:22:38.040", + "body": "the Gulf in the beginning." + }, + { + "startTime": 1358.46, + "startTimeFormatted": "00:22:38.460", + "endTime": 1360.89, + "endTimeFormatted": "00:22:40.890", + "speaker": "Tom", + "body": "One of the features that I'm most excited about out of" + }, + { + "startTime": 1360.89, + "startTimeFormatted": "00:22:40.890", + "endTime": 1364.19, + "endTimeFormatted": "00:22:44.190", + "body": "podcasting 2.0 is pod ping, can you tell us a little bit about" + }, + { + "startTime": 1364.19, + "startTimeFormatted": "00:22:44.190", + "endTime": 1364.46, + "endTimeFormatted": "00:22:44.460", + "body": "that?" + }, + { + "startTime": 1364.52, + "startTimeFormatted": "00:22:44.520", + "endTime": 1367.43, + "endTimeFormatted": "00:22:47.430", + "speaker": "Dave", + "body": "Yeah, sure. podcasting suffers from the same thing that" + }, + { + "startTime": 1367.43, + "startTimeFormatted": "00:22:47.430", + "endTime": 1372.77, + "endTimeFormatted": "00:22:52.770", + "body": "all RSS based infrastructure does it, what you have is a" + }, + { + "startTime": 1372.77, + "startTimeFormatted": "00:22:52.770", + "endTime": 1375.89, + "endTimeFormatted": "00:22:55.890", + "body": "system where you publish an episode of whatever this is, or" + }, + { + "startTime": 1375.89, + "startTimeFormatted": "00:22:55.890", + "endTime": 1380.33, + "endTimeFormatted": "00:23:00.330", + "body": "a blog post or anything, any bit of information, you publish that" + }, + { + "startTime": 1380.33, + "startTimeFormatted": "00:23:00.330", + "endTime": 1384.29, + "endTimeFormatted": "00:23:04.290", + "body": "to an RSS feed, think of it like a WordPress blog. So then the" + }, + { + "startTime": 1384.29, + "startTimeFormatted": "00:23:04.290", + "endTime": 1387.35, + "endTimeFormatted": "00:23:07.350", + "body": "RSS feed, which is just a file on a web server somewhere, it" + }, + { + "startTime": 1387.35, + "startTimeFormatted": "00:23:07.350", + "endTime": 1390.44, + "endTimeFormatted": "00:23:10.440", + "body": "gets updated. How does the rest of the world know that you've" + }, + { + "startTime": 1390.44, + "startTimeFormatted": "00:23:10.440", + "endTime": 1393.65, + "endTimeFormatted": "00:23:13.650", + "body": "just put a blog post up on your website, they have to be" + }, + { + "startTime": 1393.65, + "startTimeFormatted": "00:23:13.650", + "endTime": 1397.58, + "endTimeFormatted": "00:23:17.580", + "body": "notified, or they have to go and check in there's, there's the" + }, + { + "startTime": 1397.58, + "startTimeFormatted": "00:23:17.580", + "endTime": 1400.94, + "endTimeFormatted": "00:23:20.940", + "body": "only two ways to get that information. So just think of it" + }, + { + "startTime": 1400.94, + "startTimeFormatted": "00:23:20.940", + "endTime": 1404.33, + "endTimeFormatted": "00:23:24.330", + "body": "like, you know, clicking on a website refresh button over and" + }, + { + "startTime": 1404.33, + "startTimeFormatted": "00:23:24.330", + "endTime": 1407.78, + "endTimeFormatted": "00:23:27.780", + "body": "over and over just to see if something new pops up. That's" + }, + { + "startTime": 1407.78, + "startTimeFormatted": "00:23:27.780", + "endTime": 1411.44, + "endTimeFormatted": "00:23:31.440", + "body": "essentially what all of these infrastructures have to do," + }, + { + "startTime": 1411.44, + "startTimeFormatted": "00:23:31.440", + "endTime": 1414.02, + "endTimeFormatted": "00:23:34.020", + "body": "whether it's podcasting or blogosphere, or any of these" + }, + { + "startTime": 1414.02, + "startTimeFormatted": "00:23:34.020", + "endTime": 1417.08, + "endTimeFormatted": "00:23:37.080", + "body": "things. It's just what you resort to is just checking the" + }, + { + "startTime": 1417.08, + "startTimeFormatted": "00:23:37.080", + "endTime": 1418.28, + "endTimeFormatted": "00:23:38.280", + "body": "website over and over and over." + }, + { + "startTime": 1418.55, + "startTimeFormatted": "00:23:38.550", + "endTime": 1420.62, + "endTimeFormatted": "00:23:40.620", + "speaker": "Tom", + "body": "And this is this is one of the things that we see all the" + }, + { + "startTime": 1420.62, + "startTimeFormatted": "00:23:40.620", + "endTime": 1423.26, + "endTimeFormatted": "00:23:43.260", + "body": "time, right, where we have podcasters, who will publish an" + }, + { + "startTime": 1423.26, + "startTimeFormatted": "00:23:43.260", + "endTime": 1426.95, + "endTimeFormatted": "00:23:46.950", + "body": "episode. And then they're wondering, Well, where is it? I" + }, + { + "startTime": 1426.95, + "startTimeFormatted": "00:23:46.950", + "endTime": 1429.71, + "endTimeFormatted": "00:23:49.710", + "body": "published it an hour ago? Why don't I see it anywhere? Why" + }, + { + "startTime": 1429.71, + "startTimeFormatted": "00:23:49.710", + "endTime": 1432.44, + "endTimeFormatted": "00:23:52.440", + "body": "don't I see it on Apple? Why don't I see it on Spotify? And I" + }, + { + "startTime": 1432.44, + "startTimeFormatted": "00:23:52.440", + "endTime": 1436.19, + "endTimeFormatted": "00:23:56.190", + "body": "think what what's exciting about pod pain is this is a solution" + }, + { + "startTime": 1436.19, + "startTimeFormatted": "00:23:56.190", + "endTime": 1440.54, + "endTimeFormatted": "00:24:00.540", + "body": "to that problem, which is if you subscribe to a feed with with" + }, + { + "startTime": 1440.54, + "startTimeFormatted": "00:24:00.540", + "endTime": 1443.78, + "endTimeFormatted": "00:24:03.780", + "body": "pod pain, you'll know whenever it gets updated. You'll know" + }, + { + "startTime": 1443.78, + "startTimeFormatted": "00:24:03.780", + "endTime": 1444.77, + "endTimeFormatted": "00:24:04.770", + "body": "about it immediately." + }, + { + "startTime": 1445.13, + "startTimeFormatted": "00:24:05.130", + "endTime": 1448.85, + "endTimeFormatted": "00:24:08.850", + "speaker": "Dave", + "body": "Yeah, and that's a just a reversal of that whole thing of" + }, + { + "startTime": 1448.88, + "startTimeFormatted": "00:24:08.880", + "endTime": 1451.4, + "endTimeFormatted": "00:24:11.400", + "body": "instead of checking over and over and over for new content." + }, + { + "startTime": 1451.91, + "startTimeFormatted": "00:24:11.910", + "endTime": 1455.12, + "endTimeFormatted": "00:24:15.120", + "body": "We tell you, you know, the publisher tells you when there's" + }, + { + "startTime": 1455.12, + "startTimeFormatted": "00:24:15.120", + "endTime": 1455.66, + "endTimeFormatted": "00:24:15.660", + "body": "content," + }, + { + "startTime": 1455.93, + "startTimeFormatted": "00:24:15.930", + "endTime": 1458.63, + "endTimeFormatted": "00:24:18.630", + "speaker": "Tom", + "body": "pod ping solves two problems. One is the polling" + }, + { + "startTime": 1458.87, + "startTimeFormatted": "00:24:18.870", + "endTime": 1462.47, + "endTimeFormatted": "00:24:22.470", + "body": "with RSS feeds. And then you also have the problem of much of" + }, + { + "startTime": 1462.47, + "startTimeFormatted": "00:24:22.470", + "endTime": 1467.45, + "endTimeFormatted": "00:24:27.450", + "body": "the web sub pub pub is built on Google, which isn't reliable. So" + }, + { + "startTime": 1467.45, + "startTimeFormatted": "00:24:27.450", + "endTime": 1470.09, + "endTimeFormatted": "00:24:30.090", + "body": "pod ping does it in a reliable way. And so as I've talked to" + }, + { + "startTime": 1470.09, + "startTimeFormatted": "00:24:30.090", + "endTime": 1472.01, + "endTimeFormatted": "00:24:32.010", + "body": "people about pod paying, and they said, Well, don't we" + }, + { + "startTime": 1472.01, + "startTimeFormatted": "00:24:32.010", + "endTime": 1473.93, + "endTimeFormatted": "00:24:33.930", + "body": "already have a solution for this? Well, we don't have a" + }, + { + "startTime": 1473.93, + "startTimeFormatted": "00:24:33.930", + "endTime": 1477.26, + "endTimeFormatted": "00:24:37.260", + "body": "reliable solution for this. And so that's why a lot of people" + }, + { + "startTime": 1477.26, + "startTimeFormatted": "00:24:37.260", + "endTime": 1480.92, + "endTimeFormatted": "00:24:40.920", + "body": "just continue to pull RSS feeds. So really excited about the work" + }, + { + "startTime": 1480.92, + "startTimeFormatted": "00:24:40.920", + "endTime": 1484.73, + "endTimeFormatted": "00:24:44.730", + "body": "that you did with with pod Ping. One of the features of the" + }, + { + "startTime": 1484.76, + "startTimeFormatted": "00:24:44.760", + "endTime": 1487.49, + "endTimeFormatted": "00:24:47.490", + "body": "podcast namespace that we've just implemented at Buzzsprout." + }, + { + "startTime": 1487.52, + "startTimeFormatted": "00:24:47.520", + "endTime": 1491.39, + "endTimeFormatted": "00:24:51.390", + "body": "That I'm sure everyone would love to hear why we did it. Is" + }, + { + "startTime": 1491.39, + "startTimeFormatted": "00:24:51.390", + "endTime": 1496.01, + "endTimeFormatted": "00:24:56.010", + "body": "the gu ID, or the gu ID. How do you say Dave gwit? Yeah, let's" + }, + { + "startTime": 1496.01, + "startTimeFormatted": "00:24:56.010", + "endTime": 1499.25, + "endTimeFormatted": "00:24:59.250", + "body": "Duguid. Goo it sounds gross. Let's do good. There's no way" + }, + { + "startTime": 1499.25, + "startTimeFormatted": "00:24:59.250", + "endTime": 1502.22, + "endTimeFormatted": "00:25:02.220", + "body": "around it that it's He's gonna sound gross. So but tell us" + }, + { + "startTime": 1502.64, + "startTimeFormatted": "00:25:02.640", + "endTime": 1506.6, + "endTimeFormatted": "00:25:06.600", + "body": "what, what's the grid? And why do you want podcasting companies" + }, + { + "startTime": 1506.6, + "startTimeFormatted": "00:25:06.600", + "endTime": 1509.57, + "endTimeFormatted": "00:25:09.570", + "body": "like Buzzsprout and podcasters. to include this in their RSS" + }, + { + "startTime": 1509.57, + "startTimeFormatted": "00:25:09.570", + "endTime": 1509.87, + "endTimeFormatted": "00:25:09.870", + "body": "feed," + }, + { + "startTime": 1510.26, + "startTimeFormatted": "00:25:10.260", + "endTime": 1515.33, + "endTimeFormatted": "00:25:15.330", + "speaker": "Dave", + "body": "a grid is a globally unique identifier, geo ID. It is" + }, + { + "startTime": 1515.36, + "startTimeFormatted": "00:25:15.360", + "endTime": 1520.28, + "endTimeFormatted": "00:25:20.280", + "body": "a long number that uniquely identifies a thing and object" + }, + { + "startTime": 1520.73, + "startTimeFormatted": "00:25:20.730", + "endTime": 1525.95, + "endTimeFormatted": "00:25:25.950", + "body": "globally in the world. It's this thing is this number. And so" + }, + { + "startTime": 1526.01, + "startTimeFormatted": "00:25:26.010", + "endTime": 1529.97, + "endTimeFormatted": "00:25:29.970", + "body": "that is a thing that Apple's directory has always had." + }, + { + "startTime": 1530.6, + "startTimeFormatted": "00:25:30.600", + "endTime": 1535.07, + "endTimeFormatted": "00:25:35.070", + "body": "Everybody's podcast has an iTunes ID, or an apple podcast" + }, + { + "startTime": 1535.1, + "startTimeFormatted": "00:25:35.100", + "endTime": 1540.41, + "endTimeFormatted": "00:25:40.410", + "body": "ID. And if you go and look for your podcast on Apple's podcast" + }, + { + "startTime": 1540.41, + "startTimeFormatted": "00:25:40.410", + "endTime": 1542.99, + "endTimeFormatted": "00:25:42.990", + "body": "directory, you can see at the end of the little URL in the" + }, + { + "startTime": 1542.99, + "startTimeFormatted": "00:25:42.990", + "endTime": 1546.62, + "endTimeFormatted": "00:25:46.620", + "body": "address bar up there, you can see your Apple ID, because Apple" + }, + { + "startTime": 1546.62, + "startTimeFormatted": "00:25:46.620", + "endTime": 1549.17, + "endTimeFormatted": "00:25:49.170", + "body": "has been the center of the podcasting universe for so long," + }, + { + "startTime": 1549.65, + "startTimeFormatted": "00:25:49.650", + "endTime": 1554.42, + "endTimeFormatted": "00:25:54.420", + "body": "that iTunes ID has become the way that many apps identify a" + }, + { + "startTime": 1554.42, + "startTimeFormatted": "00:25:54.420", + "endTime": 1559.22, + "endTimeFormatted": "00:25:59.220", + "body": "podcast in there's problems with that. We solve those problems" + }, + { + "startTime": 1559.25, + "startTimeFormatted": "00:25:59.250", + "endTime": 1564.56, + "endTimeFormatted": "00:26:04.560", + "body": "earlier this year, when Apple's API stopped returning the" + }, + { + "startTime": 1564.56, + "startTimeFormatted": "00:26:04.560", + "endTime": 1569, + "endTimeFormatted": "00:26:09.000", + "body": "location of where podcast live at. So they stopped returning in" + }, + { + "startTime": 1569, + "startTimeFormatted": "00:26:09.000", + "endTime": 1573.2, + "endTimeFormatted": "00:26:13.200", + "body": "their API for many, many feeds, they stopped returning the" + }, + { + "startTime": 1573.2, + "startTimeFormatted": "00:26:13.200", + "endTime": 1576.89, + "endTimeFormatted": "00:26:16.890", + "body": "actual URL, which is would be like, you know, buzzsprout.com" + }, + { + "startTime": 1576.89, + "startTimeFormatted": "00:26:16.890", + "endTime": 1580.19, + "endTimeFormatted": "00:26:20.190", + "body": "slash such and such. That's a huge problem because it broke" + }, + { + "startTime": 1580.19, + "startTimeFormatted": "00:26:20.190", + "endTime": 1584.18, + "endTimeFormatted": "00:26:24.180", + "body": "tons of apps. And we were on the front lines of that, because a" + }, + { + "startTime": 1584.18, + "startTimeFormatted": "00:26:24.180", + "endTime": 1586.79, + "endTimeFormatted": "00:26:26.790", + "body": "lot of people started using our API when that happened, because" + }, + { + "startTime": 1586.79, + "startTimeFormatted": "00:26:26.790", + "endTime": 1588.41, + "endTimeFormatted": "00:26:28.410", + "body": "it broke and broke their app." + }, + { + "startTime": 1588.56, + "startTimeFormatted": "00:26:28.560", + "endTime": 1591.65, + "endTimeFormatted": "00:26:31.650", + "speaker": "Kevin", + "body": "Is this stuff going to help us move in the direction of" + }, + { + "startTime": 1591.95, + "startTimeFormatted": "00:26:31.950", + "endTime": 1595.04, + "endTimeFormatted": "00:26:35.040", + "body": "like global comments, global ratings and reviews? Are you" + }, + { + "startTime": 1595.04, + "startTimeFormatted": "00:26:35.040", + "endTime": 1598.97, + "endTimeFormatted": "00:26:38.970", + "body": "guys working on infrastructure to be able to allow podcasters" + }, + { + "startTime": 1598.97, + "startTimeFormatted": "00:26:38.970", + "endTime": 1602.54, + "endTimeFormatted": "00:26:42.540", + "body": "to leave a five star rating in one app that then translates" + }, + { + "startTime": 1602.54, + "startTimeFormatted": "00:26:42.540", + "endTime": 1605.96, + "endTimeFormatted": "00:26:45.960", + "body": "over to another app or a comment over here on pod friend that" + }, + { + "startTime": 1605.96, + "startTimeFormatted": "00:26:45.960", + "endTime": 1608.39, + "endTimeFormatted": "00:26:48.390", + "body": "could get posted in pod chaser?" + }, + { + "startTime": 1608.78, + "startTimeFormatted": "00:26:48.780", + "endTime": 1611.54, + "endTimeFormatted": "00:26:51.540", + "speaker": "Dave", + "body": "Yeah, I hope so. I mean, that's the idea. That's, that's" + }, + { + "startTime": 1611.54, + "startTimeFormatted": "00:26:51.540", + "endTime": 1612.98, + "endTimeFormatted": "00:26:52.980", + "body": "absolutely the goal with this." + }, + { + "startTime": 1613.16, + "startTimeFormatted": "00:26:53.160", + "endTime": 1616.64, + "endTimeFormatted": "00:26:56.640", + "speaker": "Tom", + "body": "Just a quick note for our Buzzsprout listeners, don't you" + }, + { + "startTime": 1616.64, + "startTimeFormatted": "00:26:56.640", + "endTime": 1619.73, + "endTimeFormatted": "00:26:59.730", + "body": "don't have to write into the port and ask us to put a grid on" + }, + { + "startTime": 1619.73, + "startTimeFormatted": "00:26:59.730", + "endTime": 1623.03, + "endTimeFormatted": "00:27:03.030", + "body": "your RSS feed, they're already there. So all these features" + }, + { + "startTime": 1623.03, + "startTimeFormatted": "00:27:03.030", + "endTime": 1626.09, + "endTimeFormatted": "00:27:06.090", + "body": "whenever we can we want to implement them without having to" + }, + { + "startTime": 1626.09, + "startTimeFormatted": "00:27:06.090", + "endTime": 1629.42, + "endTimeFormatted": "00:27:09.420", + "body": "require, you know, any, any kind of, you know, technical" + }, + { + "startTime": 1629.42, + "startTimeFormatted": "00:27:09.420", + "endTime": 1632.42, + "endTimeFormatted": "00:27:12.420", + "body": "knowledge on our podcasters. And so, yes, the goods are already" + }, + { + "startTime": 1632.42, + "startTimeFormatted": "00:27:12.420", + "endTime": 1634.97, + "endTimeFormatted": "00:27:14.970", + "body": "there. And we continue to follow all the work that Dave and Adam" + }, + { + "startTime": 1634.97, + "startTimeFormatted": "00:27:14.970", + "endTime": 1637.4, + "endTimeFormatted": "00:27:17.400", + "body": "are doing, and we will implement those features as they come up." + }, + { + "startTime": 1637.58, + "startTimeFormatted": "00:27:17.580", + "endTime": 1641.06, + "endTimeFormatted": "00:27:21.060", + "body": "Dave, thank you for being on the show. Thank you for all the work" + }, + { + "startTime": 1641.06, + "startTimeFormatted": "00:27:21.060", + "endTime": 1644.96, + "endTimeFormatted": "00:27:24.960", + "body": "that you're doing to help make podcasting. Awesome. We" + }, + { + "startTime": 1644.96, + "startTimeFormatted": "00:27:24.960", + "endTime": 1646.43, + "endTimeFormatted": "00:27:26.430", + "body": "appreciate it. And thanks for being here." + }, + { + "startTime": 1646.52, + "startTimeFormatted": "00:27:26.520", + "endTime": 1649.04, + "endTimeFormatted": "00:27:29.040", + "speaker": "Kevin", + "body": "Yeah, thanks, guys. Appreciate it. listeners, please" + }, + { + "startTime": 1649.07, + "startTimeFormatted": "00:27:29.070", + "endTime": 1652.13, + "endTimeFormatted": "00:27:32.130", + "body": "check out podcast index.org click on apps, download a new" + }, + { + "startTime": 1652.13, + "startTimeFormatted": "00:27:32.130", + "endTime": 1655.7, + "endTimeFormatted": "00:27:35.700", + "body": "podcast app, recommend it to your listening audience. And" + }, + { + "startTime": 1656.15, + "startTimeFormatted": "00:27:36.150", + "endTime": 1658.28, + "endTimeFormatted": "00:27:38.280", + "body": "yeah, support the movement. It's really good stuff for" + }, + { + "startTime": 1658.28, + "startTimeFormatted": "00:27:38.280", + "endTime": 1658.79, + "endTimeFormatted": "00:27:38.790", + "body": "podcasting." + }, + { + "startTime": 1661.93, + "startTimeFormatted": "00:27:41.930", + "endTime": 1665.17, + "endTimeFormatted": "00:27:45.170", + "speaker": "Travis", + "body": "So we asked the good people of the internet, namely" + }, + { + "startTime": 1665.2, + "startTimeFormatted": "00:27:45.200", + "endTime": 1668.05, + "endTimeFormatted": "00:27:48.050", + "body": "on our YouTube community chats if you subscribe to the YouTube," + }, + { + "startTime": 1668.08, + "startTimeFormatted": "00:27:48.080", + "endTime": 1670.27, + "endTimeFormatted": "00:27:50.270", + "body": "the main Buzzsprout YouTube channel, you may have seen this" + }, + { + "startTime": 1670.27, + "startTimeFormatted": "00:27:50.270", + "endTime": 1674.38, + "endTimeFormatted": "00:27:54.380", + "body": "in your subscriber feed. Alban asked on Twitter, we also posted" + }, + { + "startTime": 1674.38, + "startTimeFormatted": "00:27:54.380", + "endTime": 1676.63, + "endTimeFormatted": "00:27:56.630", + "body": "in the Facebook group, the Buzzsprout podcast, Facebook" + }, + { + "startTime": 1676.66, + "startTimeFormatted": "00:27:56.660", + "endTime": 1680.05, + "endTimeFormatted": "00:28:00.050", + "body": "group, just your questions. So we're going to run through a" + }, + { + "startTime": 1680.05, + "startTimeFormatted": "00:28:00.050", + "endTime": 1684.46, + "endTimeFormatted": "00:28:04.460", + "body": "lightning round, have a bunch of questions and hopefully will" + } + ] +} diff --git a/test/test_files/buzzcast_srt_combined_segments_128_parsed.json b/test/test_files/buzzcast_srt_combined_segments_128_parsed.json new file mode 100644 index 0000000..2cc4509 --- /dev/null +++ b/test/test_files/buzzcast_srt_combined_segments_128_parsed.json @@ -0,0 +1,2020 @@ +{ + "segments": [ + { + "startTime": 0, + "startTimeFormatted": "00:00:00.000", + "endTime": 8.25, + "endTimeFormatted": "00:00:08.250", + "speaker": "Alban", + "body": "It is so stinking nice to\nlike, show up and record this show. And Travis has already put\ntogether an outline. Kevin's got" + }, + { + "startTime": 8.25, + "startTimeFormatted": "00:00:08.250", + "endTime": 16.739, + "endTimeFormatted": "00:00:16.739", + "speaker": "Alban", + "body": "suggestions, I throw my thoughts\ninto the mix. And then Travis goes and does all the work from\nthere, too. It's out into the" + }, + { + "startTime": 16.739, + "startTimeFormatted": "00:00:16.739", + "endTime": 23.73, + "endTimeFormatted": "00:00:23.730", + "speaker": "Alban", + "body": "wild. And I don't see anything.\nThat's an absolute joy for at least two thirds of the team.\nYeah, I mean, exactly." + }, + { + "startTime": 30.48, + "startTimeFormatted": "00:00:30.480", + "endTime": 35.46, + "endTimeFormatted": "00:00:35.460", + "speaker": "Kevin", + "body": "You guys remember, like\ntwo months ago, when you were like, We're going all in on\nvideo Buzzcast. I was like," + }, + { + "startTime": 35.49, + "startTimeFormatted": "00:00:35.490", + "endTime": 41.369, + "endTimeFormatted": "00:00:41.369", + "speaker": "Kevin", + "body": "that's, I mean, I will agree and\ncommit and disagree, disagree and commit, I'll do something.\nBut I don't want to do this." + }, + { + "startTime": 42.03, + "startTimeFormatted": "00:00:42.030", + "endTime": 49.619, + "endTimeFormatted": "00:00:49.619", + "speaker": "Alban", + "body": "I never said that. The\nonly reason we ever did video was because of you." + }, + { + "startTime": 50.308, + "startTimeFormatted": "00:00:50.308", + "endTime": 55.978, + "endTimeFormatted": "00:00:55.978", + "speaker": "Kevin", + "body": "That is true. I will take\nthat. Because when we first got locked down, and we weren't\nallowed to see anybody in" + }, + { + "startTime": 55.978, + "startTimeFormatted": "00:00:55.978", + "endTime": 60.598, + "endTimeFormatted": "00:01:00.598", + "speaker": "Kevin", + "body": "person, I was like, well, it\nwould be nice to be able to see you guys when we record. And if\nwe're going to be doing video" + }, + { + "startTime": 60.598, + "startTimeFormatted": "00:01:00.598", + "endTime": 66.748, + "endTimeFormatted": "00:01:06.748", + "speaker": "Kevin", + "body": "chats Anyway, why don't we go\nahead and publish those. So I do take the full blame for moving\nus to video in the first place." + }, + { + "startTime": 67.948, + "startTimeFormatted": "00:01:07.948", + "endTime": 70.049, + "endTimeFormatted": "00:01:10.049", + "speaker": "Kevin", + "body": "But how's that working out for\nus?" + }, + { + "startTime": 71.519, + "startTimeFormatted": "00:01:11.519", + "endTime": 81.299, + "endTimeFormatted": "00:01:21.299", + "speaker": "Alban", + "body": "Not good. The first one\nwe did was like a year ago, we did that live stream to our\nYouTube channel. And that just" + }, + { + "startTime": 81.299, + "startTimeFormatted": "00:01:21.299", + "endTime": 88.829, + "endTimeFormatted": "00:01:28.829", + "speaker": "Alban", + "body": "kind of grew into then we wanted\nto play around with Riverside, which was doing video remote\nvideo recording, and then squad" + }, + { + "startTime": 88.829, + "startTimeFormatted": "00:01:28.829", + "endTime": 96.75, + "endTimeFormatted": "00:01:36.750", + "speaker": "Alban", + "body": "cast launched video, remote\nvideo recording. And I think, you know, we've you kind of had\nthe tools, the tools were there." + }, + { + "startTime": 96.75, + "startTimeFormatted": "00:01:36.750", + "endTime": 104.459, + "endTimeFormatted": "00:01:44.459", + "speaker": "Alban", + "body": "So we started playing with the\ntools and experimenting. And now the experiment is coming to an\nend, at least for now, at least" + }, + { + "startTime": 104.459, + "startTimeFormatted": "00:01:44.459", + "endTime": 113.04, + "endTimeFormatted": "00:01:53.040", + "speaker": "Alban", + "body": "for now. So do we want to give\nlike the whole story of it, kind of walk through why we made each\ndecision along the way? And" + }, + { + "startTime": 113.04, + "startTimeFormatted": "00:01:53.040", + "endTime": 118.859, + "endTimeFormatted": "00:01:58.859", + "speaker": "Alban", + "body": "let's give the sparknotes what\nwe learned the highlights sparknotes? Yeah, start at the\nbeginning. Kevin, why did you" + }, + { + "startTime": 118.859, + "startTimeFormatted": "00:01:58.859", + "endTime": 121.079, + "endTimeFormatted": "00:02:01.079", + "speaker": "Alban", + "body": "want to start doing some video\nBuzzcast." + }, + { + "startTime": 121.439, + "startTimeFormatted": "00:02:01.439", + "endTime": 127.26, + "endTimeFormatted": "00:02:07.260", + "speaker": "Kevin", + "body": "When we first started\nrecording Buzzcast, we would do it together in the office in our\nlittle studio space. And we" + }, + { + "startTime": 127.26, + "startTimeFormatted": "00:02:07.260", + "endTime": 135.09, + "endTimeFormatted": "00:02:15.090", + "speaker": "Kevin", + "body": "could play off of each other's\nenergy, right? I think, Listen, I'll speak for myself, I'm not a\nsuper high energy person. So it" + }, + { + "startTime": 135.09, + "startTimeFormatted": "00:02:15.090", + "endTime": 141, + "endTimeFormatted": "00:02:21.000", + "speaker": "Kevin", + "body": "helps for me to be sitting\nacross the table for somebody or to see somebody else's reactions\nto what I'm saying or when" + }, + { + "startTime": 141, + "startTimeFormatted": "00:02:21.000", + "endTime": 146.789, + "endTimeFormatted": "00:02:26.789", + "speaker": "Kevin", + "body": "they're speaking themselves to\nbe able to keep myself amped up and engaged in the conversation\nwhen we went audio only and" + }, + { + "startTime": 146.789, + "startTimeFormatted": "00:02:26.789", + "endTime": 152.669, + "endTimeFormatted": "00:02:32.669", + "speaker": "Kevin", + "body": "there was no video component, it\nwas hard for me to continue to keep my energy high. And to stay\nengaged. I've also got a little" + }, + { + "startTime": 152.669, + "startTimeFormatted": "00:02:32.669", + "endTime": 159.9, + "endTimeFormatted": "00:02:39.900", + "speaker": "Kevin", + "body": "bit of add that I'm I'm fighting\nand dealing with at the same time. So that part was was\nnecessary in order to be able to" + }, + { + "startTime": 160.349, + "startTimeFormatted": "00:02:40.349", + "endTime": 165.599, + "endTimeFormatted": "00:02:45.599", + "speaker": "Kevin", + "body": "just produce good content. What\nI was interested in is that since we're doing this video\ncomponent Anyway, why don't we" + }, + { + "startTime": 165.599, + "startTimeFormatted": "00:02:45.599", + "endTime": 170.37, + "endTimeFormatted": "00:02:50.370", + "speaker": "Kevin", + "body": "record this, we've always said\nthat YouTube is an interesting opportunity for people to\npromote their podcasts because" + }, + { + "startTime": 170.37, + "startTimeFormatted": "00:02:50.370", + "endTime": 176.009, + "endTimeFormatted": "00:02:56.009", + "speaker": "Kevin", + "body": "they do have the algorithm, they\ndo have the recommendation engine. But you shouldn't just\npublish your audio only there." + }, + { + "startTime": 176.069, + "startTimeFormatted": "00:02:56.069", + "endTime": 180.84, + "endTimeFormatted": "00:03:00.840", + "speaker": "Kevin", + "body": "Because that doesn't feed into\nthe strengths of the algorithm. So you're not even getting the\nbenefit. And you're taking all" + }, + { + "startTime": 180.84, + "startTimeFormatted": "00:03:00.840", + "endTime": 185.759, + "endTimeFormatted": "00:03:05.759", + "speaker": "Kevin", + "body": "this extra time to do that. In\nfact, you could be you know, putting yourself at a\ndisadvantage if you do that," + }, + { + "startTime": 185.759, + "startTimeFormatted": "00:03:05.759", + "endTime": 192.36, + "endTimeFormatted": "00:03:12.360", + "speaker": "Kevin", + "body": "because then you get a bad\nreputation with the algorithm. So anyway, we were doing video,\nwhy not go ahead. And while we" + }, + { + "startTime": 192.36, + "startTimeFormatted": "00:03:12.360", + "endTime": 196.62, + "endTimeFormatted": "00:03:16.620", + "speaker": "Kevin", + "body": "edit the podcast, the audio\nversion, why not edit the video version and just stick it on\nYouTube and see if we get a bump" + }, + { + "startTime": 196.62, + "startTimeFormatted": "00:03:16.620", + "endTime": 204.87, + "endTimeFormatted": "00:03:24.870", + "speaker": "Kevin", + "body": "from it. That is where you guys\ncome in on the analytical side and say, Is this working is this\nnot I will say that the" + }, + { + "startTime": 204.87, + "startTimeFormatted": "00:03:24.870", + "endTime": 212.34, + "endTimeFormatted": "00:03:32.340", + "speaker": "Kevin", + "body": "constraints from just somebody\nwho's on the podcast are much higher than I anticipated. It's\none thing when you're out of the" + }, + { + "startTime": 212.34, + "startTimeFormatted": "00:03:32.340", + "endTime": 218.43, + "endTimeFormatted": "00:03:38.430", + "speaker": "Kevin", + "body": "office, or if you're traveling\nor you can't be here there to be able to quickly grab a USB mic,\nthrow it in your bag go with" + }, + { + "startTime": 218.43, + "startTimeFormatted": "00:03:38.430", + "endTime": 223.199, + "endTimeFormatted": "00:03:43.199", + "speaker": "Kevin", + "body": "you. And you can record audio\nfrom anywhere in the world, it's not too hard to find a quiet\nspace, most hotel rooms are" + }, + { + "startTime": 223.199, + "startTimeFormatted": "00:03:43.199", + "endTime": 227.4, + "endTimeFormatted": "00:03:47.400", + "speaker": "Kevin", + "body": "pretty quiet. Or if you're\nstaying on Airbnb or something that you can find a closet, you\ncan find a quiet space to record" + }, + { + "startTime": 227.4, + "startTimeFormatted": "00:03:47.400", + "endTime": 234.479, + "endTimeFormatted": "00:03:54.479", + "speaker": "Kevin", + "body": "audio, being able to travel with\na decent camera setup. Or if you don't have a decent camera\nsetup, then you're using" + }, + { + "startTime": 234.479, + "startTimeFormatted": "00:03:54.479", + "endTime": 239.52, + "endTimeFormatted": "00:03:59.520", + "speaker": "Kevin", + "body": "whatever on your laptop, you're\nconstantly worried about your background, like all this stuff\nis going on. It's just a" + }, + { + "startTime": 239.52, + "startTimeFormatted": "00:03:59.520", + "endTime": 245.4, + "endTimeFormatted": "00:04:05.400", + "speaker": "Kevin", + "body": "different level of commitment\nand what's required in terms of being able to put a show out\nevery week or every other week." + }, + { + "startTime": 245.61, + "startTimeFormatted": "00:04:05.610", + "endTime": 254.069, + "endTimeFormatted": "00:04:14.069", + "speaker": "Kevin", + "body": "So that has been added an extra\nlevel of commitment to the show, which again, not something that\nwe weren't willing to do, but" + }, + { + "startTime": 254.069, + "startTimeFormatted": "00:04:14.069", + "endTime": 259.56, + "endTimeFormatted": "00:04:19.560", + "speaker": "Kevin", + "body": "something that was a little bit\nunexpected. Didn't know going into it. And then from an\nanalytical side, like how" + }, + { + "startTime": 259.62, + "startTimeFormatted": "00:04:19.620", + "endTime": 264.24, + "endTimeFormatted": "00:04:24.240", + "speaker": "Kevin", + "body": "helpful was it actually, for us\ngrowing the show? That's what you guys have dug into. Right?" + }, + { + "startTime": 264.449, + "startTimeFormatted": "00:04:24.449", + "endTime": 273.689, + "endTimeFormatted": "00:04:33.689", + "speaker": "Alban", + "body": "Yeah, I mean, we can talk\na bit about the analytics buzz cast itself was getting more\nattention, let's call it" + }, + { + "startTime": 273.689, + "startTimeFormatted": "00:04:33.689", + "endTime": 285.029, + "endTimeFormatted": "00:04:45.029", + "speaker": "Alban", + "body": "attention than it ever had\nbefore. We were getting between the downloads that continued to\ngrow on the RSS side. And on the" + }, + { + "startTime": 285.029, + "startTimeFormatted": "00:04:45.029", + "endTime": 292.92, + "endTimeFormatted": "00:04:52.920", + "speaker": "Alban", + "body": "YouTube channel being added to\nthat it was huge. And then we started doing clips of Buzzcast\nepisodes. And those were doing" + }, + { + "startTime": 292.92, + "startTimeFormatted": "00:04:52.920", + "endTime": 301.259, + "endTimeFormatted": "00:05:01.259", + "speaker": "Alban", + "body": "really well. And so if you\nwanted to add all that up, it was like wow, this show is\ndoubled in sighs This is great." + }, + { + "startTime": 302.399, + "startTimeFormatted": "00:05:02.399", + "endTime": 313.259, + "endTimeFormatted": "00:05:13.259", + "speaker": "Alban", + "body": "But we on the other side, were\nkind of frustrated with the growth of the YouTube channel.\nWe grew a ton the first year." + }, + { + "startTime": 313.769, + "startTimeFormatted": "00:05:13.769", + "endTime": 322.05, + "endTimeFormatted": "00:05:22.050", + "speaker": "Alban", + "body": "And we just kind of seen a lot\nof slowing down of our growth. We didn't know exactly why. And\nwe kept kind of digging into the" + }, + { + "startTime": 322.05, + "startTimeFormatted": "00:05:22.050", + "endTime": 330.959, + "endTimeFormatted": "00:05:30.959", + "speaker": "Alban", + "body": "data. And I think it might have\nbeen Jonathan first, or maybe it was Travis, who said, I just\nclicked through all of the last" + }, + { + "startTime": 330.959, + "startTimeFormatted": "00:05:30.959", + "endTime": 339.779, + "endTimeFormatted": "00:05:39.779", + "speaker": "Alban", + "body": "videos. And I noticed most of\nthe Buzzcast ones lose subscribers. And I was like,\nThat's not true. And then I" + }, + { + "startTime": 339.779, + "startTimeFormatted": "00:05:39.779", + "endTime": 348.089, + "endTimeFormatted": "00:05:48.089", + "speaker": "Alban", + "body": "click through and went, Oh,\nthat's definitely true. I was very skeptical by nature. And so\nand then we started digging in" + }, + { + "startTime": 348.089, + "startTimeFormatted": "00:05:48.089", + "endTime": 358.5, + "endTimeFormatted": "00:05:58.500", + "speaker": "Alban", + "body": "deeper. And I took, I think it\nwas like six different stats that we use to kind of quantify\nhow valuable each individual" + }, + { + "startTime": 358.5, + "startTimeFormatted": "00:05:58.500", + "endTime": 365.519, + "endTimeFormatted": "00:06:05.519", + "speaker": "Alban", + "body": "video is. And I just went back\nand looked at, like the last 90 days, all the videos that were\ncreated during that 90 day" + }, + { + "startTime": 365.519, + "startTimeFormatted": "00:06:05.519", + "endTime": 375.54, + "endTimeFormatted": "00:06:15.540", + "speaker": "Alban", + "body": "period, I think we had 22\nvideos, or 26 videos, all of the Buzzcast ones were in the worst\ncategory, they were they" + }, + { + "startTime": 375.54, + "startTimeFormatted": "00:06:15.540", + "endTime": 385.17, + "endTimeFormatted": "00:06:25.170", + "speaker": "Alban", + "body": "represented, like the very\nbottom five episodes, or videos. And, you know, we, I think\nTravis, you had some good ideas" + }, + { + "startTime": 385.17, + "startTimeFormatted": "00:06:25.170", + "endTime": 392.699, + "endTimeFormatted": "00:06:32.699", + "speaker": "Alban", + "body": "of why the Buzzcast ones were\nperforming near the bottom. But in the end, we were kind of\ndoing the thing that we've" + }, + { + "startTime": 392.699, + "startTimeFormatted": "00:06:32.699", + "endTime": 399.99, + "endTimeFormatted": "00:06:39.990", + "speaker": "Alban", + "body": "always criticized, we've always\ncriticized people who were putting a static image on a\nYouTube video on a YouTube" + }, + { + "startTime": 399.99, + "startTimeFormatted": "00:06:39.990", + "endTime": 409.74, + "endTimeFormatted": "00:06:49.740", + "speaker": "Alban", + "body": "video, just having audio, you\nknow, we said that can crush an existing valuable YouTube\nchannel. And we were crushing" + }, + { + "startTime": 409.769, + "startTimeFormatted": "00:06:49.769", + "endTime": 419.55, + "endTimeFormatted": "00:06:59.550", + "speaker": "Alban", + "body": "our existing value bowl YouTube\nchannel, by adding this, you know, some of this, basically\npodcast content in video format." + }, + { + "startTime": 419.61, + "startTimeFormatted": "00:06:59.610", + "endTime": 425.16, + "endTimeFormatted": "00:07:05.160", + "speaker": "Kevin", + "body": "To clarify, we weren't\ncrushing it because we weren't putting the static image when we\nwere putting real video up. But" + }, + { + "startTime": 425.16, + "startTimeFormatted": "00:07:05.160", + "endTime": 431.519, + "endTimeFormatted": "00:07:11.519", + "speaker": "Kevin", + "body": "we weren't playing in line with\nthe the rules of YouTube or to use the algorithm in the\nsmartest and best way we were" + }, + { + "startTime": 431.519, + "startTimeFormatted": "00:07:11.519", + "endTime": 437.55, + "endTimeFormatted": "00:07:17.550", + "speaker": "Kevin", + "body": "confusing the algorithm. We were\npublishing different lengths of content, different formats of\ncontent. And so we ended up is a" + }, + { + "startTime": 437.55, + "startTimeFormatted": "00:07:17.550", + "endTime": 442.769, + "endTimeFormatted": "00:07:22.769", + "speaker": "Kevin", + "body": "very important and valuable\nchannel for us for marketing our software and telling the world\nabout what Buzzsprout can do for" + }, + { + "startTime": 442.769, + "startTimeFormatted": "00:07:22.769", + "endTime": 446.79, + "endTimeFormatted": "00:07:26.790", + "speaker": "Kevin", + "body": "you as a podcaster. We were\nhurting that marketing channel for us, right?" + }, + { + "startTime": 447.089, + "startTimeFormatted": "00:07:27.089", + "endTime": 454.92, + "endTimeFormatted": "00:07:34.920", + "speaker": "Alban", + "body": "Yeah, I guess what I was\nsaying is, we were not being hypocritical in the way that we\ncreated the video, the content," + }, + { + "startTime": 454.98, + "startTimeFormatted": "00:07:34.980", + "endTime": 461.97, + "endTimeFormatted": "00:07:41.970", + "speaker": "Alban", + "body": "because we weren't publishing\nthe static image with the audio. But the reason we say we\nrecommend everybody else not to" + }, + { + "startTime": 461.97, + "startTimeFormatted": "00:07:41.970", + "endTime": 468.48, + "endTimeFormatted": "00:07:48.480", + "speaker": "Alban", + "body": "do that, is because what it's\ndoing is it's showing YouTube that your content is low\nquality, and it's a specific" + }, + { + "startTime": 468.48, + "startTimeFormatted": "00:07:48.480", + "endTime": 477.389, + "endTimeFormatted": "00:07:57.389", + "speaker": "Alban", + "body": "type of content. It's audio plus\nan image. Well, when we were looking at it, YouTube was used\nto a much higher production" + }, + { + "startTime": 477.389, + "startTimeFormatted": "00:07:57.389", + "endTime": 485.79, + "endTimeFormatted": "00:08:05.790", + "speaker": "Alban", + "body": "quality, a very different type\nof content for our channel. And so I think people were\nconstantly confused. They're" + }, + { + "startTime": 485.79, + "startTimeFormatted": "00:08:05.790", + "endTime": 494.49, + "endTimeFormatted": "00:08:14.490", + "speaker": "Alban", + "body": "running into videos that they\nthought were going to be Travis or Sarah jalon, doing an in\ndepth tutorial. And they were" + }, + { + "startTime": 494.49, + "startTimeFormatted": "00:08:14.490", + "endTime": 502.199, + "endTimeFormatted": "00:08:22.199", + "speaker": "Alban", + "body": "clicking, and they were finding\nme pontificating about Facebook podcasts for 20 minutes. So\nTravis, give us some more" + }, + { + "startTime": 502.199, + "startTimeFormatted": "00:08:22.199", + "endTime": 509.639, + "endTimeFormatted": "00:08:29.639", + "speaker": "Alban", + "body": "insight, what's what are the\ndifferentiators between our day to day content are the bread and\nbutter that we do very well, and" + }, + { + "startTime": 509.639, + "startTimeFormatted": "00:08:29.639", + "endTime": 511.35, + "endTimeFormatted": "00:08:31.350", + "speaker": "Alban", + "body": "what Buzzcast was doing on our\nchannel?" + }, + { + "startTime": 511.56, + "startTimeFormatted": "00:08:31.560", + "endTime": 518.49, + "endTimeFormatted": "00:08:38.490", + "speaker": "Travis", + "body": "One thing to keep in\nmind is when we create content for Podcasting, Q&A, when we\ncreate tutorials, things like" + }, + { + "startTime": 518.49, + "startTimeFormatted": "00:08:38.490", + "endTime": 525.21, + "endTimeFormatted": "00:08:45.210", + "speaker": "Travis", + "body": "that, we have a very specific\naim for those videos. Right? So we're trying to answer questions\nreally well, we're trying to" + }, + { + "startTime": 525.419, + "startTimeFormatted": "00:08:45.419", + "endTime": 534.269, + "endTimeFormatted": "00:08:54.269", + "speaker": "Travis", + "body": "take all the knowledge and best\npractices for how to be a podcaster. And consolidating\nthat into a form factor. That is" + }, + { + "startTime": 534.299, + "startTimeFormatted": "00:08:54.299", + "endTime": 540.69, + "endTimeFormatted": "00:09:00.690", + "speaker": "Travis", + "body": "something you could easily watch\nin just a few minutes and get all the information that you\nneed. And because we're able to" + }, + { + "startTime": 540.809, + "startTimeFormatted": "00:09:00.809", + "endTime": 546.96, + "endTimeFormatted": "00:09:06.960", + "speaker": "Travis", + "body": "put that level of focus on it,\nlike Alan mentioned, the production quality is better. We\nhave custom animations, and B" + }, + { + "startTime": 546.96, + "startTimeFormatted": "00:09:06.960", + "endTime": 552.72, + "endTimeFormatted": "00:09:12.720", + "speaker": "Travis", + "body": "roll, which is just a fancy way\nof saying we cut away to different videos of models doing\nthings that match what we're" + }, + { + "startTime": 552.72, + "startTimeFormatted": "00:09:12.720", + "endTime": 563.73, + "endTimeFormatted": "00:09:23.730", + "speaker": "Travis", + "body": "talking about on screen. And so\nwe're able to create a type of content that works really well\nin a YouTube ecosystem. And so" + }, + { + "startTime": 563.73, + "startTimeFormatted": "00:09:23.730", + "endTime": 571.379, + "endTimeFormatted": "00:09:31.379", + "speaker": "Travis", + "body": "if your whole channel is that\nkind of content, then YouTube starts knowing Okay, if someone\nwe've kind of identified them as" + }, + { + "startTime": 571.379, + "startTimeFormatted": "00:09:31.379", + "endTime": 576.69, + "endTimeFormatted": "00:09:36.690", + "speaker": "Travis", + "body": "a potential podcaster, and\nthey're asking a podcast related question, Buzzsprout is going to\nbe the channel we recommend" + }, + { + "startTime": 576.69, + "startTimeFormatted": "00:09:36.690", + "endTime": 584.22, + "endTimeFormatted": "00:09:44.220", + "speaker": "Travis", + "body": "because we know they have this\nkind of content. The reason that we split off Buzzcast the full\nepisodes into a separate channel" + }, + { + "startTime": 584.34, + "startTimeFormatted": "00:09:44.340", + "endTime": 594.21, + "endTimeFormatted": "00:09:54.210", + "speaker": "Travis", + "body": "a couple of months ago, is\nbecause we noticed that those videos were not performing at\nall at the same level as the" + }, + { + "startTime": 594.539, + "startTimeFormatted": "00:09:54.539", + "endTime": 600.509, + "endTimeFormatted": "00:10:00.509", + "speaker": "Travis", + "body": "Podcasting, Q&A and other\ntutorial videos were doing. And that was a common practice we'd\nseen with other youtubers That" + }, + { + "startTime": 600.509, + "startTimeFormatted": "00:10:00.509", + "endTime": 606.029, + "endTimeFormatted": "00:10:06.029", + "speaker": "Travis", + "body": "created video podcasts, they\nwould create new channels for them. And then if they had\nclips, that would be a third" + }, + { + "startTime": 606.029, + "startTimeFormatted": "00:10:06.029", + "endTime": 610.44, + "endTimeFormatted": "00:10:10.440", + "speaker": "Travis", + "body": "channel. So they would actually\nhave three channels, they'd have their main YouTube channel, a\nfull podcast channel and a clips" + }, + { + "startTime": 610.44, + "startTimeFormatted": "00:10:10.440", + "endTime": 616.679, + "endTimeFormatted": "00:10:16.679", + "speaker": "Travis", + "body": "channel, in order to make sure\nthat they were kind of playing by the rules, the best practice\nof YouTube. So these were all" + }, + { + "startTime": 616.679, + "startTimeFormatted": "00:10:16.679", + "endTime": 623.009, + "endTimeFormatted": "00:10:23.009", + "speaker": "Travis", + "body": "things that we, you know, as we\nwere experimenting, we weren't sure like, how far are we really\ngoing to carry this book? Like," + }, + { + "startTime": 623.009, + "startTimeFormatted": "00:10:23.009", + "endTime": 630.149, + "endTimeFormatted": "00:10:30.149", + "speaker": "Travis", + "body": "how invested Are we going to get\ninto video Buzzcast. And so it didn't make sense to spin up a\nwhole YouTube channel, we're" + }, + { + "startTime": 630.149, + "startTimeFormatted": "00:10:30.149", + "endTime": 635.97, + "endTimeFormatted": "00:10:35.970", + "speaker": "Travis", + "body": "just going to do a couple\nepisodes and then retire it right. So we tested in our on\nour main channel first and said," + }, + { + "startTime": 635.97, + "startTimeFormatted": "00:10:35.970", + "endTime": 641.669, + "endTimeFormatted": "00:10:41.669", + "speaker": "Travis", + "body": "Okay, that's working. So then\nwhat if we took the next step, and we made it consistent? And\nthen what if we took the next" + }, + { + "startTime": 641.669, + "startTimeFormatted": "00:10:41.669", + "endTime": 648.72, + "endTimeFormatted": "00:10:48.720", + "speaker": "Travis", + "body": "step and made a separate, and so\nit's kind of like evolved over time. And now to Kevin's point,\nit's at the place where we just" + }, + { + "startTime": 648.72, + "startTimeFormatted": "00:10:48.720", + "endTime": 655.919, + "endTimeFormatted": "00:10:55.919", + "speaker": "Travis", + "body": "wanted to make sure, if we keep\ngoing on this trajectory, it's going to serve you guys, it's\ngonna make Buzzcast better for" + }, + { + "startTime": 655.919, + "startTimeFormatted": "00:10:55.919", + "endTime": 659.279, + "endTimeFormatted": "00:10:59.279", + "speaker": "Travis", + "body": "you. And it's also going to make\nsense in the grand scheme of the" + }, + { + "startTime": 659.279, + "startTimeFormatted": "00:10:59.279", + "endTime": 662.94, + "endTimeFormatted": "00:11:02.940", + "speaker": "Travis", + "body": "other things that we're doing to\nproduce and create content. And" + }, + { + "startTime": 662.94, + "startTimeFormatted": "00:11:02.940", + "endTime": 670.289, + "endTimeFormatted": "00:11:10.289", + "speaker": "Travis", + "body": "so we're now at this nexus point\nwhere if we're going to be able to go back and record in the\nstudio, you know, that has a" + }, + { + "startTime": 670.289, + "startTimeFormatted": "00:11:10.289", + "endTime": 677.37, + "endTimeFormatted": "00:11:17.370", + "speaker": "Travis", + "body": "level of production that even\nexceeds what we're currently what we were doing before. And,\nand so at this point in time, it" + }, + { + "startTime": 677.37, + "startTimeFormatted": "00:11:17.370", + "endTime": 684.269, + "endTimeFormatted": "00:11:24.269", + "speaker": "Travis", + "body": "makes more sense for us to pause\nit, knowing we can always turn it back on later. But just to\ndouble down and refocus our" + }, + { + "startTime": 684.269, + "startTimeFormatted": "00:11:24.269", + "endTime": 686.94, + "endTimeFormatted": "00:11:26.940", + "speaker": "Travis", + "body": "efforts on the audio only\nversion of Buzzcast." + }, + { + "startTime": 687.299, + "startTimeFormatted": "00:11:27.299", + "endTime": 695.429, + "endTimeFormatted": "00:11:35.429", + "speaker": "Alban", + "body": "So if I can kind of tie\nthis together with what are the best practices we have learned\nfor YouTube, and podcasting, in" + }, + { + "startTime": 695.429, + "startTimeFormatted": "00:11:35.429", + "endTime": 704.85, + "endTimeFormatted": "00:11:44.850", + "speaker": "Alban", + "body": "particular, because podcasting\nis really growing on YouTube, one out of five people now who\nsay they listened to podcasts," + }, + { + "startTime": 704.85, + "startTimeFormatted": "00:11:44.850", + "endTime": 713.639, + "endTimeFormatted": "00:11:53.639", + "speaker": "Alban", + "body": "they listened to most of their\npodcasts on YouTube, one out of five, that's pretty remarkably\nhigh numbers. That comes from" + }, + { + "startTime": 713.7, + "startTimeFormatted": "00:11:53.700", + "endTime": 721.289, + "endTimeFormatted": "00:12:01.289", + "speaker": "Alban", + "body": "Edison research. I actually\ninterviewed Tom Webster this morning, and he told me that so\nit's definitely working there." + }, + { + "startTime": 721.769, + "startTimeFormatted": "00:12:01.769", + "endTime": 730.019, + "endTimeFormatted": "00:12:10.019", + "speaker": "Alban", + "body": "But it takes a lot to make it\nwork. And it was not stuff that was going to make sense for us\nto do. So. I think to do" + }, + { + "startTime": 730.08, + "startTimeFormatted": "00:12:10.080", + "endTime": 739.62, + "endTimeFormatted": "00:12:19.620", + "speaker": "Alban", + "body": "podcasts, well on YouTube, you\nprobably need to be recording a person so that you have that\nlive engaging element. Because I" + }, + { + "startTime": 739.62, + "startTimeFormatted": "00:12:19.620", + "endTime": 748.62, + "endTimeFormatted": "00:12:28.620", + "speaker": "Alban", + "body": "don't know how to say this\nexactly. But like, the level of engagement you want to see\nbetween the hosts during a audio" + }, + { + "startTime": 748.71, + "startTimeFormatted": "00:12:28.710", + "endTime": 756.24, + "endTimeFormatted": "00:12:36.240", + "speaker": "Alban", + "body": "and a video medium is very\ndifferent. Right now, like I can see Kevin and Travis and like\nKevin looks kind of" + }, + { + "startTime": 756.24, + "startTimeFormatted": "00:12:36.240", + "endTime": 761.34, + "endTimeFormatted": "00:12:41.340", + "speaker": "Alban", + "body": "disinterested. That doesn't\nbother anybody who's just listening to this because they\ngo, Oh, Kevin's probably" + }, + { + "startTime": 761.34, + "startTimeFormatted": "00:12:41.340", + "endTime": 771.059, + "endTimeFormatted": "00:12:51.059", + "speaker": "Alban", + "body": "listening attentively. But you\nknow what? But if we're on video, I'd be the first comment\nwe ever got on one of our" + }, + { + "startTime": 771.059, + "startTimeFormatted": "00:12:51.059", + "endTime": 779.19, + "endTimeFormatted": "00:12:59.190", + "speaker": "Alban", + "body": "Buzzcast episodes was why does\nalbot look so mad. And I was like, Oh, that's just my face\nlooks. That's just me. Like," + }, + { + "startTime": 779.19, + "startTimeFormatted": "00:12:59.190", + "endTime": 787.23, + "endTimeFormatted": "00:13:07.230", + "speaker": "Alban", + "body": "that's just me not smiling. And\nso that works perfectly fine. When you're recording long\ndistance recordings. When it's" + }, + { + "startTime": 787.23, + "startTimeFormatted": "00:13:07.230", + "endTime": 795.509, + "endTimeFormatted": "00:13:15.509", + "speaker": "Alban", + "body": "on video, it starts to look a\nlittle weird. And you can either kind of over fake enthusiasm, or\nyou can get together in an audio" + }, + { + "startTime": 795.509, + "startTimeFormatted": "00:13:15.509", + "endTime": 803.37, + "endTimeFormatted": "00:13:23.370", + "speaker": "Alban", + "body": "studio get together in a studio\nin person. So like, get together in person, I think is a very\nhigh recommendation, they should" + }, + { + "startTime": 803.37, + "startTimeFormatted": "00:13:23.370", + "endTime": 811.379, + "endTimeFormatted": "00:13:31.379", + "speaker": "Alban", + "body": "try to get that number, you\nknow, if at all possible, then you've also got to have like\nmultiple shots to be able to" + }, + { + "startTime": 811.379, + "startTimeFormatted": "00:13:31.379", + "endTime": 818.7, + "endTimeFormatted": "00:13:38.700", + "speaker": "Alban", + "body": "keep it interesting. So that's\nprobably a camera on each host. Maybe an additional wide angle\ncamera, you can see that we've" + }, + { + "startTime": 818.7, + "startTimeFormatted": "00:13:38.700", + "endTime": 825.929, + "endTimeFormatted": "00:13:45.929", + "speaker": "Alban", + "body": "experimented this in some of our\nPodcasting Q&A videos is rolling, I think three different\ncameras now all at once, and" + }, + { + "startTime": 825.929, + "startTimeFormatted": "00:13:45.929", + "endTime": 835.11, + "endTimeFormatted": "00:13:55.110", + "speaker": "Alban", + "body": "then we flipped between them.\nFor us to do the three of us in the studio would require us\nprobably to be shooting like" + }, + { + "startTime": 835.11, + "startTimeFormatted": "00:13:55.110", + "endTime": 843.33, + "endTimeFormatted": "00:14:03.330", + "speaker": "Alban", + "body": "four or five cameras at a time.\nAnd then the, you know, that really ramps up the amount of\nvideo editing that we're doing." + }, + { + "startTime": 843.509, + "startTimeFormatted": "00:14:03.509", + "endTime": 849.96, + "endTimeFormatted": "00:14:09.960", + "speaker": "Alban", + "body": "Okay, so we're buying a bunch of\ncameras. We're buying, we're doing more in video editing.\nWe're getting us all together in" + }, + { + "startTime": 849.96, + "startTimeFormatted": "00:14:09.960", + "endTime": 857.789, + "endTimeFormatted": "00:14:17.789", + "speaker": "Alban", + "body": "the studio in the most\ndangerous, dangerous COVID hotspot United States right now.\nSo three negatives, and all for" + }, + { + "startTime": 857.789, + "startTimeFormatted": "00:14:17.789", + "endTime": 864.929, + "endTimeFormatted": "00:14:24.929", + "speaker": "Alban", + "body": "the benefit of starting a new\nYouTube channel that isn't exactly in alignment with what\nwe want. So that's to kind of" + }, + { + "startTime": 864.929, + "startTimeFormatted": "00:14:24.929", + "endTime": 872.34, + "endTimeFormatted": "00:14:32.340", + "speaker": "Alban", + "body": "wrap it up quickly. What how\nwe're thinking about this. Maybe we come back, maybe not. But\nuntil next time, listen to us on" + }, + { + "startTime": 872.34, + "startTimeFormatted": "00:14:32.340", + "endTime": 874.71, + "endTimeFormatted": "00:14:34.710", + "speaker": "Alban", + "body": "our RSS backed podcast." + }, + { + "startTime": 875.099, + "startTimeFormatted": "00:14:35.099", + "endTime": 881.399, + "endTimeFormatted": "00:14:41.399", + "speaker": "Travis", + "body": "Yes, we are definitely\nnot going anywhere. You'll just need to listen to us anywhere\nexcept for Spotify will be." + }, + { + "startTime": 882.419, + "startTimeFormatted": "00:14:42.419", + "endTime": 888.269, + "endTimeFormatted": "00:14:48.269", + "speaker": "Alban", + "body": "This is basically Apple\npodcasts and indie apps exclusive now. Yeah, I would say\nso. I would say so." + }, + { + "startTime": 888.568, + "startTimeFormatted": "00:14:48.568", + "endTime": 893.339, + "endTimeFormatted": "00:14:53.339", + "speaker": "Kevin", + "body": "Yeah. I think it's an\ninteresting point that you talked about when you talk about\nyour interview with Tom Webster" + }, + { + "startTime": 893.339, + "startTimeFormatted": "00:14:53.339", + "endTime": 899.969, + "endTimeFormatted": "00:14:59.969", + "speaker": "Kevin", + "body": "and he's saying that one in five\npodcasts are roughly 20% of people listening the podcast in\nYouTube, and I can't help it" + }, + { + "startTime": 899.999, + "startTimeFormatted": "00:14:59.999", + "endTime": 910.259, + "endTimeFormatted": "00:15:10.259", + "speaker": "Kevin", + "body": "think that that is it just don't\nthink that there's a stat that we should just take without some\nadditional thought, right? Like" + }, + { + "startTime": 910.619, + "startTimeFormatted": "00:15:10.619", + "endTime": 915.989, + "endTimeFormatted": "00:15:15.989", + "speaker": "Kevin", + "body": "listening to a podcast and\nYouTube is a different experience than what a lot of us\nwho produce podcasts are in the" + }, + { + "startTime": 915.989, + "startTimeFormatted": "00:15:15.989", + "endTime": 921.328, + "endTimeFormatted": "00:15:21.328", + "speaker": "Kevin", + "body": "podcasting space probably think\nabout when we think about podcasting, like the benefits in\nthe beauty of podcasting is it's" + }, + { + "startTime": 921.328, + "startTimeFormatted": "00:15:21.328", + "endTime": 926.068, + "endTimeFormatted": "00:15:26.068", + "speaker": "Kevin", + "body": "it's passive, it's something\nthat you can do not only on demand, but at your convenience\nwhile you're doing other things" + }, + { + "startTime": 926.068, + "startTimeFormatted": "00:15:26.068", + "endTime": 930.328, + "endTimeFormatted": "00:15:30.328", + "speaker": "Kevin", + "body": "while you're doing housework\nwhile you're exercising, while you're at work while you're\ndriving a car, you the YouTube" + }, + { + "startTime": 930.328, + "startTimeFormatted": "00:15:30.328", + "endTime": 937.198, + "endTimeFormatted": "00:15:37.198", + "speaker": "Kevin", + "body": "experience is different than\nthat. And so while the YouTube ecosystem is huge, and it might\nbe a lot more mainstream in" + }, + { + "startTime": 937.198, + "startTimeFormatted": "00:15:37.198", + "endTime": 941.818, + "endTimeFormatted": "00:15:41.818", + "speaker": "Kevin", + "body": "terms of the number of people\nwho engage in that space, and then at some point, click on\nsomething that is calling itself" + }, + { + "startTime": 941.818, + "startTimeFormatted": "00:15:41.818", + "endTime": 947.849, + "endTimeFormatted": "00:15:47.849", + "speaker": "Kevin", + "body": "a podcast, it's, it might just\nbe an exposure thing, it might just be the size of the\necosystem thing, it might not" + }, + { + "startTime": 947.849, + "startTimeFormatted": "00:15:47.849", + "endTime": 953.938, + "endTimeFormatted": "00:15:53.938", + "speaker": "Kevin", + "body": "necessarily be what we would\nconsider a podcast and all the great benefits that go along\nwith podcasting. And I don't" + }, + { + "startTime": 953.938, + "startTimeFormatted": "00:15:53.938", + "endTime": 958.438, + "endTimeFormatted": "00:15:58.438", + "speaker": "Kevin", + "body": "want to get into the details of\nis it does it really have an RSS feed and all that stuff, that's\nnot really what I'm talking" + }, + { + "startTime": 958.438, + "startTimeFormatted": "00:15:58.438", + "endTime": 962.999, + "endTimeFormatted": "00:16:02.999", + "speaker": "Kevin", + "body": "about. I'm just kind of talking\nabout the size of the medium and the number of people who at some\npoint during their normal day," + }, + { + "startTime": 963.208, + "startTimeFormatted": "00:16:03.208", + "endTime": 971.129, + "endTimeFormatted": "00:16:11.129", + "speaker": "Kevin", + "body": "flip open YouTube, and might\nclick on something that is calling itself a podcast. So\nthat being said, YouTube is a" + }, + { + "startTime": 971.158, + "startTimeFormatted": "00:16:11.158", + "endTime": 976.288, + "endTimeFormatted": "00:16:16.288", + "speaker": "Kevin", + "body": "fine place for you to distribute\ncontent and being creator. But hopefully, there's some\ntakeaways from what we've" + }, + { + "startTime": 976.288, + "startTimeFormatted": "00:16:16.288", + "endTime": 982.438, + "endTimeFormatted": "00:16:22.438", + "speaker": "Kevin", + "body": "experienced over the past year,\npressing into the YouTube Space a little bit in terms of putting\na podcast onto YouTube, there's" + }, + { + "startTime": 982.438, + "startTimeFormatted": "00:16:22.438", + "endTime": 988.109, + "endTimeFormatted": "00:16:28.109", + "speaker": "Kevin", + "body": "a lot more that goes into it\nthan just recording a zoom call, and then throwing it up there.\nIf you really want to succeed," + }, + { + "startTime": 988.469, + "startTimeFormatted": "00:16:28.469", + "endTime": 992.188, + "endTimeFormatted": "00:16:32.188", + "speaker": "Kevin", + "body": "you have to understand the\nalgorithm, you have to understand how the medium works,\nyou have to understand what type" + }, + { + "startTime": 992.188, + "startTimeFormatted": "00:16:32.188", + "endTime": 998.188, + "endTimeFormatted": "00:16:38.188", + "speaker": "Kevin", + "body": "of content works there is, this\nis a larger level of commitment. And you might find a huge\naudience and huge following" + }, + { + "startTime": 998.188, + "startTimeFormatted": "00:16:38.188", + "endTime": 1005.269, + "endTimeFormatted": "00:16:45.269", + "speaker": "Kevin", + "body": "there. But it's probably not\ngoing to be it's not an overnight success. It is a lot\nof work. And it is very" + }, + { + "startTime": 1005.269, + "startTimeFormatted": "00:16:45.269", + "endTime": 1012.558, + "endTimeFormatted": "00:16:52.558", + "speaker": "Kevin", + "body": "different than audio only\npodcasting. So as we continue to unpack, and learn things about\nhow to use YouTube, or other" + }, + { + "startTime": 1012.558, + "startTimeFormatted": "00:16:52.558", + "endTime": 1018.379, + "endTimeFormatted": "00:16:58.379", + "speaker": "Kevin", + "body": "channels to grow your main\npodcast, your audio only podcast, it's distributed\nthrough RSS, we will continue to" + }, + { + "startTime": 1018.379, + "startTimeFormatted": "00:16:58.379", + "endTime": 1023.719, + "endTimeFormatted": "00:17:03.719", + "speaker": "Kevin", + "body": "share those learnings with you\nand hopefully make you a better podcaster. But this is where we\nare today. And the decisions" + }, + { + "startTime": 1023.719, + "startTimeFormatted": "00:17:03.719", + "endTime": 1031.638, + "endTimeFormatted": "00:17:11.638", + "speaker": "Kevin", + "body": "we've made. So this podcast will\nnot be on YouTube, and not in video form. And as we learn more\nand grow more, we'll share all" + }, + { + "startTime": 1031.638, + "startTimeFormatted": "00:17:11.638", + "endTime": 1032.179, + "endTimeFormatted": "00:17:12.179", + "speaker": "Kevin", + "body": "our learnings with" + }, + { + "startTime": 1035.42, + "startTimeFormatted": "00:17:15.420", + "endTime": 1041.9, + "endTimeFormatted": "00:17:21.900", + "speaker": "Travis", + "body": "so if you've been a\nBuzzcast listener for any length of time, you know, we're big\nfans of the podcast index and" + }, + { + "startTime": 1041.9, + "startTimeFormatted": "00:17:21.900", + "endTime": 1049.279, + "endTimeFormatted": "00:17:29.279", + "speaker": "Travis", + "body": "podcasting 2.0, that entire\ngroup, that entire working group of people dedicating themselves\nto improving the open podcast" + }, + { + "startTime": 1049.279, + "startTimeFormatted": "00:17:29.279", + "endTime": 1056.42, + "endTimeFormatted": "00:17:36.420", + "speaker": "Travis", + "body": "ecosystem, and creating really\nfun new features that allow you as a creator, to make awesome\ncontent and help your listeners" + }, + { + "startTime": 1056.69, + "startTimeFormatted": "00:17:36.690", + "endTime": 1064.069, + "endTimeFormatted": "00:17:44.069", + "speaker": "Travis", + "body": "really engage with your show in\nsome really unique ways. Kevin and Tom had an opportunity to\nsit down with Dave Jones, who is" + }, + { + "startTime": 1064.069, + "startTimeFormatted": "00:17:44.069", + "endTime": 1072.17, + "endTimeFormatted": "00:17:52.170", + "speaker": "Travis", + "body": "working on the podcast index and\npodcasting 2.0 to talk about a new feature that Buzzsprout is\nnow supporting, and also tease" + }, + { + "startTime": 1072.17, + "startTimeFormatted": "00:17:52.170", + "endTime": 1079.009, + "endTimeFormatted": "00:17:59.009", + "speaker": "Travis", + "body": "out some fun new things that\nthey have coming down the pipeline. So here's that\nconversation between Kevin Tom and Dave Jones." + }, + { + "startTime": 1079.309, + "startTimeFormatted": "00:17:59.309", + "endTime": 1086.99, + "endTimeFormatted": "00:18:06.990", + "speaker": "Tom", + "body": "This is Tom Rossi,\ntechnical co founder of Buzzsprout. And I am glad to be\njoined by Dave Jones, one of the" + }, + { + "startTime": 1086.99, + "startTimeFormatted": "00:18:06.990", + "endTime": 1093.859, + "endTimeFormatted": "00:18:13.859", + "speaker": "Tom", + "body": "two guys running the podcast\nindex, Dave Jones and Adam curry have been doing amazing work\nwith the podcast index. Dave," + }, + { + "startTime": 1093.89, + "startTimeFormatted": "00:18:13.890", + "endTime": 1100.64, + "endTimeFormatted": "00:18:20.640", + "speaker": "Tom", + "body": "welcome to the show. Thanks for\nall that you're doing. Tell us a little bit about the podcast\nindex and what you guys are" + }, + { + "startTime": 1100.64, + "startTimeFormatted": "00:18:20.640", + "endTime": 1101.269, + "endTimeFormatted": "00:18:21.269", + "speaker": "Tom", + "body": "doing over there." + }, + { + "startTime": 1101.66, + "startTimeFormatted": "00:18:21.660", + "endTime": 1104.839, + "endTimeFormatted": "00:18:24.839", + "speaker": "Dave", + "body": "Let's see, what are we\ndoing at the podcast? And what are we not doing at podcast?" + }, + { + "startTime": 1105.44, + "startTimeFormatted": "00:18:25.440", + "endTime": 1112.7, + "endTimeFormatted": "00:18:32.700", + "speaker": "Kevin", + "body": "So Dave, the podcasting\nto auto project is like it incorporates the podcast index\nand the podcasting namespace" + }, + { + "startTime": 1112.7, + "startTimeFormatted": "00:18:32.700", + "endTime": 1116.69, + "endTimeFormatted": "00:18:36.690", + "speaker": "Kevin", + "body": "right and a whole bunch of\nthings. Can you tell us like what's the difference? What are\nthe two functions that those" + }, + { + "startTime": 1116.72, + "startTimeFormatted": "00:18:36.720", + "endTime": 1119.299, + "endTimeFormatted": "00:18:39.299", + "speaker": "Kevin", + "body": "those two things sort of where\nthey come together? How does it all work?" + }, + { + "startTime": 1119.45, + "startTimeFormatted": "00:18:39.450", + "endTime": 1125.63, + "endTimeFormatted": "00:18:45.630", + "speaker": "Dave", + "body": "Yeah, we get this question\na lot. What the heck are y'all doing with all these various\nprojects? And then what did they" + }, + { + "startTime": 1125.63, + "startTimeFormatted": "00:18:45.630", + "endTime": 1134.359, + "endTimeFormatted": "00:18:54.359", + "speaker": "Dave", + "body": "even mean? And so podcasting 2.0\nis the name of our podcast, but it's also the name of the\nbroader movement of trying to" + }, + { + "startTime": 1134.359, + "startTimeFormatted": "00:18:54.359", + "endTime": 1137.269, + "endTimeFormatted": "00:18:57.269", + "speaker": "Dave", + "body": "preserve, protect and extend the\nopen RSS ecosystem," + }, + { + "startTime": 1137.299, + "startTimeFormatted": "00:18:57.299", + "endTime": 1141.68, + "endTimeFormatted": "00:19:01.680", + "speaker": "Kevin", + "body": "right. When we say this,\nthis is a little bit different than what like fireside chat\nintroduced it podcast movement," + }, + { + "startTime": 1141.68, + "startTimeFormatted": "00:19:01.680", + "endTime": 1144.109, + "endTimeFormatted": "00:19:04.109", + "speaker": "Kevin", + "body": "is podcasting to Dotto, right.\nYeah," + }, + { + "startTime": 1144.259, + "startTimeFormatted": "00:19:04.259", + "endTime": 1153.289, + "endTimeFormatted": "00:19:13.289", + "speaker": "Dave", + "body": "I gotta hope it is\ncompletely different. Yeah, but podcasting. 2.0 is just an open\nsource, volunteer movement of" + }, + { + "startTime": 1153.289, + "startTimeFormatted": "00:19:13.289", + "endTime": 1161.75, + "endTimeFormatted": "00:19:21.750", + "speaker": "Dave", + "body": "people coming up with ideas and\nlaunching projects to help preserve the open RSS ecosystem\nof podcasting, and podcasting" + }, + { + "startTime": 1161.779, + "startTimeFormatted": "00:19:21.779", + "endTime": 1166.97, + "endTimeFormatted": "00:19:26.970", + "speaker": "Dave", + "body": "inside the app. So pod inside\npodcasting 2.0. But that would be the podcast namespace where\nall these new features and tags" + }, + { + "startTime": 1166.97, + "startTimeFormatted": "00:19:26.970", + "endTime": 1173.72, + "endTimeFormatted": "00:19:33.720", + "speaker": "Dave", + "body": "are coming from. Also within\npodcasting, 2.0 would be something like pod ping, which\nallows hosts to rapidly notified" + }, + { + "startTime": 1173.839, + "startTimeFormatted": "00:19:33.839", + "endTime": 1180.23, + "endTimeFormatted": "00:19:40.230", + "speaker": "Dave", + "body": "apps and aggregators of new\nepisodes, things like that. That's all in the podcasting 2.0\nside of things. The podcast" + }, + { + "startTime": 1180.259, + "startTimeFormatted": "00:19:40.259", + "endTime": 1188.15, + "endTimeFormatted": "00:19:48.150", + "speaker": "Dave", + "body": "index is the thing that we\ncreated at the very beginning in order to facilitate all these\nother things. So the podcast" + }, + { + "startTime": 1188.15, + "startTimeFormatted": "00:19:48.150", + "endTime": 1195.829, + "endTimeFormatted": "00:19:55.829", + "speaker": "Dave", + "body": "index is the largest directory\nof podcasts on the internet. It's were like 4.1 million\npodcasts right now feeds. We are" + }, + { + "startTime": 1195.829, + "startTimeFormatted": "00:19:55.829", + "endTime": 1204.289, + "endTimeFormatted": "00:20:04.289", + "speaker": "Dave", + "body": "a directory and also an API for\npodcast app. to hook in to get their podcast data from,\nbasically, they just start" + }, + { + "startTime": 1204.289, + "startTimeFormatted": "00:20:04.289", + "endTime": 1212.21, + "endTimeFormatted": "00:20:12.210", + "speaker": "Dave", + "body": "coding an app, they plug into us\nand they get all their data in, it saves them a world of hurt on\nthat side of things. So those," + }, + { + "startTime": 1212.45, + "startTimeFormatted": "00:20:12.450", + "endTime": 1218.599, + "endTimeFormatted": "00:20:18.599", + "speaker": "Dave", + "body": "the podcasts index is the APN\ndirectory, but geisen 2.0 is all the features and community\nmovement." + }, + { + "startTime": 1219.23, + "startTimeFormatted": "00:20:19.230", + "endTime": 1224.93, + "endTimeFormatted": "00:20:24.930", + "speaker": "Kevin", + "body": "Right, and then huge\nopportunity with the index is that we're not tied in or\nreliant on Apple anymore. So" + }, + { + "startTime": 1224.93, + "startTimeFormatted": "00:20:24.930", + "endTime": 1229.609, + "endTimeFormatted": "00:20:29.609", + "speaker": "Kevin", + "body": "like over the past two or three\nmonths, Apple's directory has been having a ton of problems.\nNot to mention even before that," + }, + { + "startTime": 1229.609, + "startTimeFormatted": "00:20:29.609", + "endTime": 1234.769, + "endTimeFormatted": "00:20:34.769", + "speaker": "Kevin", + "body": "when it was working, well, it\nwould take you probably a minimum of two or three days up\nto a couple weeks to even get in" + }, + { + "startTime": 1234.98, + "startTimeFormatted": "00:20:34.980", + "endTime": 1240.95, + "endTimeFormatted": "00:20:40.950", + "speaker": "Kevin", + "body": "Apple podcast directory, then\nwhen you publish a new episode, it might be 24 hours or more\nbefore that new episode gets" + }, + { + "startTime": 1240.95, + "startTimeFormatted": "00:20:40.950", + "endTime": 1246.95, + "endTimeFormatted": "00:20:46.950", + "speaker": "Kevin", + "body": "released in search showing up on\nany of the apps that rely on that directory. And the index\nsolves all that along with other" + }, + { + "startTime": 1246.95, + "startTimeFormatted": "00:20:46.950", + "endTime": 1250.46, + "endTimeFormatted": "00:20:50.460", + "speaker": "Kevin", + "body": "technologies that you're\ndeveloping as well like the pod paying and everything else.\nRight." + }, + { + "startTime": 1250.519, + "startTimeFormatted": "00:20:50.519", + "endTime": 1256.7, + "endTimeFormatted": "00:20:56.700", + "speaker": "Dave", + "body": "Yeah, we started this\nwhole project with with the directory and the API with the\nidea that we wanted to take" + }, + { + "startTime": 1257.21, + "startTimeFormatted": "00:20:57.210", + "endTime": 1265.43, + "endTimeFormatted": "00:21:05.430", + "speaker": "Dave", + "body": "Apple Apple's directory away\nfrom being the center of the podcasting universe, which has\nbeen for, you know, 15 years at" + }, + { + "startTime": 1265.43, + "startTimeFormatted": "00:21:05.430", + "endTime": 1273.319, + "endTimeFormatted": "00:21:13.319", + "speaker": "Dave", + "body": "least. And the idea there was\nthat, you know, no, no knock on Apple, I mean, they've been good\nstewards of podcasting, it's" + }, + { + "startTime": 1273.319, + "startTimeFormatted": "00:21:13.319", + "endTime": 1283.549, + "endTimeFormatted": "00:21:23.549", + "speaker": "Dave", + "body": "just that it doesn't make a lot\nof sense for an open specification, like podcasting,\nan open system that anybody can" + }, + { + "startTime": 1283.549, + "startTimeFormatted": "00:21:23.549", + "endTime": 1293.18, + "endTimeFormatted": "00:21:33.180", + "speaker": "Dave", + "body": "participate in, it does not make\na lot of sense for that. To be controlled by a single humongous\nentity like apple, I mean," + }, + { + "startTime": 1293.18, + "startTimeFormatted": "00:21:33.180", + "endTime": 1297.89, + "endTimeFormatted": "00:21:37.890", + "speaker": "Dave", + "body": "they're literally the biggest\ncompany in the world. And so it's sort of like you have this\nweird spectrum where you got" + }, + { + "startTime": 1297.89, + "startTimeFormatted": "00:21:37.890", + "endTime": 1305.15, + "endTimeFormatted": "00:21:45.150", + "speaker": "Dave", + "body": "podcasting, which is completely\nopen, I can hand write an RSS feed today, and get into the\ninbox and create a podcast. And" + }, + { + "startTime": 1305.18, + "startTimeFormatted": "00:21:45.180", + "endTime": 1312.559, + "endTimeFormatted": "00:21:52.559", + "speaker": "Dave", + "body": "I can do it from my computer in\nfive minutes. But then you have the directory where all the\npodcasts are found, his career" + }, + { + "startTime": 1312.589, + "startTimeFormatted": "00:21:52.589", + "endTime": 1320.059, + "endTimeFormatted": "00:22:00.059", + "speaker": "Dave", + "body": "is controlled by this huge\ncorporation. So it really just didn't didn't make a lot of\nsense, the goal there was create" + }, + { + "startTime": 1320.059, + "startTimeFormatted": "00:22:00.059", + "endTime": 1327.23, + "endTimeFormatted": "00:22:07.230", + "speaker": "Dave", + "body": "a directory that is completely\nopen, anybody can join it, anybody can add to it, anybody\ncan put their podcast into it in" + }, + { + "startTime": 1327.41, + "startTimeFormatted": "00:22:07.410", + "endTime": 1335.509, + "endTimeFormatted": "00:22:15.509", + "speaker": "Dave", + "body": "15 seconds. And then the next\nstep, which is the which is the part that has to happen, make it\navailable for free, and" + }, + { + "startTime": 1335.509, + "startTimeFormatted": "00:22:15.509", + "endTime": 1343.22, + "endTimeFormatted": "00:22:23.220", + "speaker": "Dave", + "body": "everybody can download it, you\ncan download it our entire database right now from our From\nthe homepage of our website, and" + }, + { + "startTime": 1343.369, + "startTimeFormatted": "00:22:23.369", + "endTime": 1348.71, + "endTimeFormatted": "00:22:28.710", + "speaker": "Dave", + "body": "do whatever you want with it,\nyou can go create your own directory or your own API or\nyour own apps. So if it's not" + }, + { + "startTime": 1348.71, + "startTimeFormatted": "00:22:28.710", + "endTime": 1354.349, + "endTimeFormatted": "00:22:34.349", + "speaker": "Dave", + "body": "free, then it doesn't solve any\nof the problem. And if you have to have us, it still doesn't\nsolve the problem. You need to" + }, + { + "startTime": 1354.349, + "startTimeFormatted": "00:22:34.349", + "endTime": 1358.039, + "endTimeFormatted": "00:22:38.039", + "speaker": "Dave", + "body": "be we need to redistribute it.\nAnd so that's what we that was the Gulf in the beginning." + }, + { + "startTime": 1358.46, + "startTimeFormatted": "00:22:38.460", + "endTime": 1364.46, + "endTimeFormatted": "00:22:44.460", + "speaker": "Tom", + "body": "One of the features that\nI'm most excited about out of podcasting 2.0 is pod ping, can\nyou tell us a little bit about that?" + }, + { + "startTime": 1364.519, + "startTimeFormatted": "00:22:44.519", + "endTime": 1372.769, + "endTimeFormatted": "00:22:52.769", + "speaker": "Dave", + "body": "Yeah, sure. podcasting\nsuffers from the same thing that all RSS based infrastructure\ndoes it, what you have is a" + }, + { + "startTime": 1372.769, + "startTimeFormatted": "00:22:52.769", + "endTime": 1380.329, + "endTimeFormatted": "00:23:00.329", + "speaker": "Dave", + "body": "system where you publish an\nepisode of whatever this is, or a blog post or anything, any bit\nof information, you publish that" + }, + { + "startTime": 1380.329, + "startTimeFormatted": "00:23:00.329", + "endTime": 1387.349, + "endTimeFormatted": "00:23:07.349", + "speaker": "Dave", + "body": "to an RSS feed, think of it like\na WordPress blog. So then the RSS feed, which is just a file\non a web server somewhere, it" + }, + { + "startTime": 1387.349, + "startTimeFormatted": "00:23:07.349", + "endTime": 1393.65, + "endTimeFormatted": "00:23:13.650", + "speaker": "Dave", + "body": "gets updated. How does the rest\nof the world know that you've just put a blog post up on your\nwebsite, they have to be" + }, + { + "startTime": 1393.65, + "startTimeFormatted": "00:23:13.650", + "endTime": 1400.94, + "endTimeFormatted": "00:23:20.940", + "speaker": "Dave", + "body": "notified, or they have to go and\ncheck in there's, there's the only two ways to get that\ninformation. So just think of it" + }, + { + "startTime": 1400.94, + "startTimeFormatted": "00:23:20.940", + "endTime": 1407.779, + "endTimeFormatted": "00:23:27.779", + "speaker": "Dave", + "body": "like, you know, clicking on a\nwebsite refresh button over and over and over just to see if\nsomething new pops up. That's" + }, + { + "startTime": 1407.779, + "startTimeFormatted": "00:23:27.779", + "endTime": 1414.019, + "endTimeFormatted": "00:23:34.019", + "speaker": "Dave", + "body": "essentially what all of these\ninfrastructures have to do, whether it's podcasting or\nblogosphere, or any of these" + }, + { + "startTime": 1414.019, + "startTimeFormatted": "00:23:34.019", + "endTime": 1418.279, + "endTimeFormatted": "00:23:38.279", + "speaker": "Dave", + "body": "things. It's just what you\nresort to is just checking the website over and over and over." + }, + { + "startTime": 1418.549, + "startTimeFormatted": "00:23:38.549", + "endTime": 1423.259, + "endTimeFormatted": "00:23:43.259", + "speaker": "Tom", + "body": "And this is this is one of\nthe things that we see all the time, right, where we have\npodcasters, who will publish an" + }, + { + "startTime": 1423.259, + "startTimeFormatted": "00:23:43.259", + "endTime": 1429.71, + "endTimeFormatted": "00:23:49.710", + "speaker": "Tom", + "body": "episode. And then they're\nwondering, Well, where is it? I published it an hour ago? Why\ndon't I see it anywhere? Why" + }, + { + "startTime": 1429.71, + "startTimeFormatted": "00:23:49.710", + "endTime": 1436.19, + "endTimeFormatted": "00:23:56.190", + "speaker": "Tom", + "body": "don't I see it on Apple? Why\ndon't I see it on Spotify? And I think what what's exciting about\npod pain is this is a solution" + }, + { + "startTime": 1436.19, + "startTimeFormatted": "00:23:56.190", + "endTime": 1443.779, + "endTimeFormatted": "00:24:03.779", + "speaker": "Tom", + "body": "to that problem, which is if you\nsubscribe to a feed with with pod pain, you'll know whenever\nit gets updated. You'll know" + }, + { + "startTime": 1443.779, + "startTimeFormatted": "00:24:03.779", + "endTime": 1444.769, + "endTimeFormatted": "00:24:04.769", + "speaker": "Tom", + "body": "about it immediately." + }, + { + "startTime": 1445.13, + "startTimeFormatted": "00:24:05.130", + "endTime": 1451.4, + "endTimeFormatted": "00:24:11.400", + "speaker": "Dave", + "body": "Yeah, and that's a just a\nreversal of that whole thing of instead of checking over and\nover and over for new content." + }, + { + "startTime": 1451.91, + "startTimeFormatted": "00:24:11.910", + "endTime": 1455.66, + "endTimeFormatted": "00:24:15.660", + "speaker": "Dave", + "body": "We tell you, you know, the\npublisher tells you when there's content," + }, + { + "startTime": 1455.93, + "startTimeFormatted": "00:24:15.930", + "endTime": 1462.47, + "endTimeFormatted": "00:24:22.470", + "speaker": "Tom", + "body": "pod ping solves two\nproblems. One is the polling with RSS feeds. And then you\nalso have the problem of much of" + }, + { + "startTime": 1462.47, + "startTimeFormatted": "00:24:22.470", + "endTime": 1470.089, + "endTimeFormatted": "00:24:30.089", + "speaker": "Tom", + "body": "the web sub pub pub is built on\nGoogle, which isn't reliable. So pod ping does it in a reliable\nway. And so as I've talked to" + }, + { + "startTime": 1470.089, + "startTimeFormatted": "00:24:30.089", + "endTime": 1473.93, + "endTimeFormatted": "00:24:33.930", + "speaker": "Tom", + "body": "people about pod paying, and\nthey said, Well, don't we already have a solution for\nthis? Well, we don't have a" + }, + { + "startTime": 1473.93, + "startTimeFormatted": "00:24:33.930", + "endTime": 1480.92, + "endTimeFormatted": "00:24:40.920", + "speaker": "Tom", + "body": "reliable solution for this. And\nso that's why a lot of people just continue to pull RSS feeds.\nSo really excited about the work" + }, + { + "startTime": 1480.92, + "startTimeFormatted": "00:24:40.920", + "endTime": 1487.49, + "endTimeFormatted": "00:24:47.490", + "speaker": "Tom", + "body": "that you did with with pod Ping.\nOne of the features of the podcast namespace that we've\njust implemented at Buzzsprout." + }, + { + "startTime": 1487.519, + "startTimeFormatted": "00:24:47.519", + "endTime": 1496.009, + "endTimeFormatted": "00:24:56.009", + "speaker": "Tom", + "body": "That I'm sure everyone would\nlove to hear why we did it. Is the gu ID, or the gu ID. How do\nyou say Dave gwit? Yeah, let's" + }, + { + "startTime": 1496.009, + "startTimeFormatted": "00:24:56.009", + "endTime": 1502.22, + "endTimeFormatted": "00:25:02.220", + "speaker": "Tom", + "body": "Duguid. Goo it sounds gross.\nLet's do good. There's no way around it that it's He's gonna\nsound gross. So but tell us" + }, + { + "startTime": 1502.64, + "startTimeFormatted": "00:25:02.640", + "endTime": 1509.569, + "endTimeFormatted": "00:25:09.569", + "speaker": "Tom", + "body": "what, what's the grid? And why\ndo you want podcasting companies like Buzzsprout and podcasters.\nto include this in their RSS" + }, + { + "startTime": 1509.569, + "startTimeFormatted": "00:25:09.569", + "endTime": 1509.869, + "endTimeFormatted": "00:25:09.869", + "speaker": "Tom", + "body": "feed," + }, + { + "startTime": 1510.259, + "startTimeFormatted": "00:25:10.259", + "endTime": 1520.279, + "endTimeFormatted": "00:25:20.279", + "speaker": "Dave", + "body": "a grid is a globally\nunique identifier, geo ID. It is a long number that uniquely\nidentifies a thing and object" + }, + { + "startTime": 1520.73, + "startTimeFormatted": "00:25:20.730", + "endTime": 1529.97, + "endTimeFormatted": "00:25:29.970", + "speaker": "Dave", + "body": "globally in the world. It's this\nthing is this number. And so that is a thing that Apple's\ndirectory has always had." + }, + { + "startTime": 1530.599, + "startTimeFormatted": "00:25:30.599", + "endTime": 1540.41, + "endTimeFormatted": "00:25:40.410", + "speaker": "Dave", + "body": "Everybody's podcast has an\niTunes ID, or an apple podcast ID. And if you go and look for\nyour podcast on Apple's podcast" + }, + { + "startTime": 1540.41, + "startTimeFormatted": "00:25:40.410", + "endTime": 1546.619, + "endTimeFormatted": "00:25:46.619", + "speaker": "Dave", + "body": "directory, you can see at the\nend of the little URL in the address bar up there, you can\nsee your Apple ID, because Apple" + }, + { + "startTime": 1546.619, + "startTimeFormatted": "00:25:46.619", + "endTime": 1554.42, + "endTimeFormatted": "00:25:54.420", + "speaker": "Dave", + "body": "has been the center of the\npodcasting universe for so long, that iTunes ID has become the\nway that many apps identify a" + }, + { + "startTime": 1554.42, + "startTimeFormatted": "00:25:54.420", + "endTime": 1564.559, + "endTimeFormatted": "00:26:04.559", + "speaker": "Dave", + "body": "podcast in there's problems with\nthat. We solve those problems earlier this year, when Apple's\nAPI stopped returning the" + }, + { + "startTime": 1564.559, + "startTimeFormatted": "00:26:04.559", + "endTime": 1573.2, + "endTimeFormatted": "00:26:13.200", + "speaker": "Dave", + "body": "location of where podcast live\nat. So they stopped returning in their API for many, many feeds,\nthey stopped returning the" + }, + { + "startTime": 1573.2, + "startTimeFormatted": "00:26:13.200", + "endTime": 1580.19, + "endTimeFormatted": "00:26:20.190", + "speaker": "Dave", + "body": "actual URL, which is would be\nlike, you know, buzzsprout.com slash such and such. That's a\nhuge problem because it broke" + }, + { + "startTime": 1580.19, + "startTimeFormatted": "00:26:20.190", + "endTime": 1586.789, + "endTimeFormatted": "00:26:26.789", + "speaker": "Dave", + "body": "tons of apps. And we were on the\nfront lines of that, because a lot of people started using our\nAPI when that happened, because" + }, + { + "startTime": 1586.789, + "startTimeFormatted": "00:26:26.789", + "endTime": 1588.41, + "endTimeFormatted": "00:26:28.410", + "speaker": "Dave", + "body": "it broke and broke their app." + }, + { + "startTime": 1588.559, + "startTimeFormatted": "00:26:28.559", + "endTime": 1595.039, + "endTimeFormatted": "00:26:35.039", + "speaker": "Kevin", + "body": "Is this stuff going to\nhelp us move in the direction of like global comments, global\nratings and reviews? Are you" + }, + { + "startTime": 1595.039, + "startTimeFormatted": "00:26:35.039", + "endTime": 1602.539, + "endTimeFormatted": "00:26:42.539", + "speaker": "Kevin", + "body": "guys working on infrastructure\nto be able to allow podcasters to leave a five star rating in\none app that then translates" + }, + { + "startTime": 1602.539, + "startTimeFormatted": "00:26:42.539", + "endTime": 1608.39, + "endTimeFormatted": "00:26:48.390", + "speaker": "Kevin", + "body": "over to another app or a comment\nover here on pod friend that could get posted in pod chaser?" + }, + { + "startTime": 1608.779, + "startTimeFormatted": "00:26:48.779", + "endTime": 1612.98, + "endTimeFormatted": "00:26:52.980", + "speaker": "Dave", + "body": "Yeah, I hope so. I mean,\nthat's the idea. That's, that's absolutely the goal with this." + }, + { + "startTime": 1613.16, + "startTimeFormatted": "00:26:53.160", + "endTime": 1619.73, + "endTimeFormatted": "00:26:59.730", + "speaker": "Tom", + "body": "Just a quick note for our\nBuzzsprout listeners, don't you don't have to write into the\nport and ask us to put a grid on" + }, + { + "startTime": 1619.73, + "startTimeFormatted": "00:26:59.730", + "endTime": 1626.089, + "endTimeFormatted": "00:27:06.089", + "speaker": "Tom", + "body": "your RSS feed, they're already\nthere. So all these features whenever we can we want to\nimplement them without having to" + }, + { + "startTime": 1626.089, + "startTimeFormatted": "00:27:06.089", + "endTime": 1632.42, + "endTimeFormatted": "00:27:12.420", + "speaker": "Tom", + "body": "require, you know, any, any kind\nof, you know, technical knowledge on our podcasters. And\nso, yes, the goods are already" + }, + { + "startTime": 1632.42, + "startTimeFormatted": "00:27:12.420", + "endTime": 1634.97, + "endTimeFormatted": "00:27:14.970", + "speaker": "Tom", + "body": "there. And we continue to follow\nall the work that Dave and Adam" + }, + { + "startTime": 1634.97, + "startTimeFormatted": "00:27:14.970", + "endTime": 1637.4, + "endTimeFormatted": "00:27:17.400", + "speaker": "Tom", + "body": "are doing, and we will implement\nthose features as they come up." + }, + { + "startTime": 1637.579, + "startTimeFormatted": "00:27:17.579", + "endTime": 1644.96, + "endTimeFormatted": "00:27:24.960", + "speaker": "Tom", + "body": "Dave, thank you for being on the\nshow. Thank you for all the work that you're doing to help make\npodcasting. Awesome. We" + }, + { + "startTime": 1644.96, + "startTimeFormatted": "00:27:24.960", + "endTime": 1646.43, + "endTimeFormatted": "00:27:26.430", + "speaker": "Tom", + "body": "appreciate it. And thanks for\nbeing here." + }, + { + "startTime": 1646.519, + "startTimeFormatted": "00:27:26.519", + "endTime": 1652.13, + "endTimeFormatted": "00:27:32.130", + "speaker": "Kevin", + "body": "Yeah, thanks, guys.\nAppreciate it. listeners, please check out podcast index.org\nclick on apps, download a new" + }, + { + "startTime": 1652.13, + "startTimeFormatted": "00:27:32.130", + "endTime": 1658.789, + "endTimeFormatted": "00:27:38.789", + "speaker": "Kevin", + "body": "podcast app, recommend it to\nyour listening audience. And yeah, support the movement. It's\nreally good stuff for podcasting." + }, + { + "startTime": 1661.93, + "startTimeFormatted": "00:27:41.930", + "endTime": 1668.049, + "endTimeFormatted": "00:27:48.049", + "speaker": "Travis", + "body": "So we asked the good\npeople of the internet, namely on our YouTube community chats\nif you subscribe to the YouTube," + }, + { + "startTime": 1668.079, + "startTimeFormatted": "00:27:48.079", + "endTime": 1674.38, + "endTimeFormatted": "00:27:54.380", + "speaker": "Travis", + "body": "the main Buzzsprout YouTube\nchannel, you may have seen this in your subscriber feed. Alban\nasked on Twitter, we also posted" + }, + { + "startTime": 1674.38, + "startTimeFormatted": "00:27:54.380", + "endTime": 1680.049, + "endTimeFormatted": "00:28:00.049", + "speaker": "Travis", + "body": "in the Facebook group, the\nBuzzsprout podcast, Facebook group, just your questions. So\nwe're going to run through a" + }, + { + "startTime": 1680.049, + "startTimeFormatted": "00:28:00.049", + "endTime": 1684.46, + "endTimeFormatted": "00:28:04.460", + "speaker": "Travis", + "body": "lightning round, have a bunch of\nquestions and hopefully will" + } + ] +} \ No newline at end of file diff --git a/test/test_files/buzzcast_srt_speaker_change_combined_segments_128_parsed.json b/test/test_files/buzzcast_srt_speaker_change_combined_segments_128_parsed.json new file mode 100644 index 0000000..72456ae --- /dev/null +++ b/test/test_files/buzzcast_srt_speaker_change_combined_segments_128_parsed.json @@ -0,0 +1,1802 @@ +{ + "segments": [ + { + "startTime": 0, + "startTimeFormatted": "00:00:00.000", + "endTime": 8.25, + "endTimeFormatted": "00:00:08.250", + "speaker": "Alban", + "body": "It is so stinking nice to\nlike, show up and record this show. And Travis has already put\ntogether an outline. Kevin's got" + }, + { + "startTime": 8.25, + "startTimeFormatted": "00:00:08.250", + "endTime": 16.739, + "endTimeFormatted": "00:00:16.739", + "body": "suggestions, I throw my thoughts\ninto the mix. And then Travis goes and does all the work from\nthere, too. It's out into the" + }, + { + "startTime": 16.739, + "startTimeFormatted": "00:00:16.739", + "endTime": 23.73, + "endTimeFormatted": "00:00:23.730", + "body": "wild. And I don't see anything.\nThat's an absolute joy for at least two thirds of the team.\nYeah, I mean, exactly." + }, + { + "startTime": 30.48, + "startTimeFormatted": "00:00:30.480", + "endTime": 35.46, + "endTimeFormatted": "00:00:35.460", + "speaker": "Kevin", + "body": "You guys remember, like\ntwo months ago, when you were like, We're going all in on\nvideo Buzzcast. I was like," + }, + { + "startTime": 35.49, + "startTimeFormatted": "00:00:35.490", + "endTime": 41.369, + "endTimeFormatted": "00:00:41.369", + "body": "that's, I mean, I will agree and\ncommit and disagree, disagree and commit, I'll do something.\nBut I don't want to do this." + }, + { + "startTime": 42.03, + "startTimeFormatted": "00:00:42.030", + "endTime": 49.619, + "endTimeFormatted": "00:00:49.619", + "speaker": "Alban", + "body": "I never said that. The\nonly reason we ever did video was because of you." + }, + { + "startTime": 50.308, + "startTimeFormatted": "00:00:50.308", + "endTime": 55.978, + "endTimeFormatted": "00:00:55.978", + "speaker": "Kevin", + "body": "That is true. I will take\nthat. Because when we first got locked down, and we weren't\nallowed to see anybody in" + }, + { + "startTime": 55.978, + "startTimeFormatted": "00:00:55.978", + "endTime": 60.598, + "endTimeFormatted": "00:01:00.598", + "body": "person, I was like, well, it\nwould be nice to be able to see you guys when we record. And if\nwe're going to be doing video" + }, + { + "startTime": 60.598, + "startTimeFormatted": "00:01:00.598", + "endTime": 66.748, + "endTimeFormatted": "00:01:06.748", + "body": "chats Anyway, why don't we go\nahead and publish those. So I do take the full blame for moving\nus to video in the first place." + }, + { + "startTime": 67.948, + "startTimeFormatted": "00:01:07.948", + "endTime": 70.049, + "endTimeFormatted": "00:01:10.049", + "body": "But how's that working out for\nus?" + }, + { + "startTime": 71.519, + "startTimeFormatted": "00:01:11.519", + "endTime": 81.299, + "endTimeFormatted": "00:01:21.299", + "speaker": "Alban", + "body": "Not good. The first one\nwe did was like a year ago, we did that live stream to our\nYouTube channel. And that just" + }, + { + "startTime": 81.299, + "startTimeFormatted": "00:01:21.299", + "endTime": 88.829, + "endTimeFormatted": "00:01:28.829", + "body": "kind of grew into then we wanted\nto play around with Riverside, which was doing video remote\nvideo recording, and then squad" + }, + { + "startTime": 88.829, + "startTimeFormatted": "00:01:28.829", + "endTime": 96.75, + "endTimeFormatted": "00:01:36.750", + "body": "cast launched video, remote\nvideo recording. And I think, you know, we've you kind of had\nthe tools, the tools were there." + }, + { + "startTime": 96.75, + "startTimeFormatted": "00:01:36.750", + "endTime": 104.459, + "endTimeFormatted": "00:01:44.459", + "body": "So we started playing with the\ntools and experimenting. And now the experiment is coming to an\nend, at least for now, at least" + }, + { + "startTime": 104.459, + "startTimeFormatted": "00:01:44.459", + "endTime": 113.04, + "endTimeFormatted": "00:01:53.040", + "body": "for now. So do we want to give\nlike the whole story of it, kind of walk through why we made each\ndecision along the way? And" + }, + { + "startTime": 113.04, + "startTimeFormatted": "00:01:53.040", + "endTime": 118.859, + "endTimeFormatted": "00:01:58.859", + "body": "let's give the sparknotes what\nwe learned the highlights sparknotes? Yeah, start at the\nbeginning. Kevin, why did you" + }, + { + "startTime": 118.859, + "startTimeFormatted": "00:01:58.859", + "endTime": 121.079, + "endTimeFormatted": "00:02:01.079", + "body": "want to start doing some video\nBuzzcast." + }, + { + "startTime": 121.439, + "startTimeFormatted": "00:02:01.439", + "endTime": 127.26, + "endTimeFormatted": "00:02:07.260", + "speaker": "Kevin", + "body": "When we first started\nrecording Buzzcast, we would do it together in the office in our\nlittle studio space. And we" + }, + { + "startTime": 127.26, + "startTimeFormatted": "00:02:07.260", + "endTime": 135.09, + "endTimeFormatted": "00:02:15.090", + "body": "could play off of each other's\nenergy, right? I think, Listen, I'll speak for myself, I'm not a\nsuper high energy person. So it" + }, + { + "startTime": 135.09, + "startTimeFormatted": "00:02:15.090", + "endTime": 141, + "endTimeFormatted": "00:02:21.000", + "body": "helps for me to be sitting\nacross the table for somebody or to see somebody else's reactions\nto what I'm saying or when" + }, + { + "startTime": 141, + "startTimeFormatted": "00:02:21.000", + "endTime": 146.789, + "endTimeFormatted": "00:02:26.789", + "body": "they're speaking themselves to\nbe able to keep myself amped up and engaged in the conversation\nwhen we went audio only and" + }, + { + "startTime": 146.789, + "startTimeFormatted": "00:02:26.789", + "endTime": 152.669, + "endTimeFormatted": "00:02:32.669", + "body": "there was no video component, it\nwas hard for me to continue to keep my energy high. And to stay\nengaged. I've also got a little" + }, + { + "startTime": 152.669, + "startTimeFormatted": "00:02:32.669", + "endTime": 159.9, + "endTimeFormatted": "00:02:39.900", + "body": "bit of add that I'm I'm fighting\nand dealing with at the same time. So that part was was\nnecessary in order to be able to" + }, + { + "startTime": 160.349, + "startTimeFormatted": "00:02:40.349", + "endTime": 165.599, + "endTimeFormatted": "00:02:45.599", + "body": "just produce good content. What\nI was interested in is that since we're doing this video\ncomponent Anyway, why don't we" + }, + { + "startTime": 165.599, + "startTimeFormatted": "00:02:45.599", + "endTime": 170.37, + "endTimeFormatted": "00:02:50.370", + "body": "record this, we've always said\nthat YouTube is an interesting opportunity for people to\npromote their podcasts because" + }, + { + "startTime": 170.37, + "startTimeFormatted": "00:02:50.370", + "endTime": 176.009, + "endTimeFormatted": "00:02:56.009", + "body": "they do have the algorithm, they\ndo have the recommendation engine. But you shouldn't just\npublish your audio only there." + }, + { + "startTime": 176.069, + "startTimeFormatted": "00:02:56.069", + "endTime": 180.84, + "endTimeFormatted": "00:03:00.840", + "body": "Because that doesn't feed into\nthe strengths of the algorithm. So you're not even getting the\nbenefit. And you're taking all" + }, + { + "startTime": 180.84, + "startTimeFormatted": "00:03:00.840", + "endTime": 185.759, + "endTimeFormatted": "00:03:05.759", + "body": "this extra time to do that. In\nfact, you could be you know, putting yourself at a\ndisadvantage if you do that," + }, + { + "startTime": 185.759, + "startTimeFormatted": "00:03:05.759", + "endTime": 192.36, + "endTimeFormatted": "00:03:12.360", + "body": "because then you get a bad\nreputation with the algorithm. So anyway, we were doing video,\nwhy not go ahead. And while we" + }, + { + "startTime": 192.36, + "startTimeFormatted": "00:03:12.360", + "endTime": 196.62, + "endTimeFormatted": "00:03:16.620", + "body": "edit the podcast, the audio\nversion, why not edit the video version and just stick it on\nYouTube and see if we get a bump" + }, + { + "startTime": 196.62, + "startTimeFormatted": "00:03:16.620", + "endTime": 204.87, + "endTimeFormatted": "00:03:24.870", + "body": "from it. That is where you guys\ncome in on the analytical side and say, Is this working is this\nnot I will say that the" + }, + { + "startTime": 204.87, + "startTimeFormatted": "00:03:24.870", + "endTime": 212.34, + "endTimeFormatted": "00:03:32.340", + "body": "constraints from just somebody\nwho's on the podcast are much higher than I anticipated. It's\none thing when you're out of the" + }, + { + "startTime": 212.34, + "startTimeFormatted": "00:03:32.340", + "endTime": 218.43, + "endTimeFormatted": "00:03:38.430", + "body": "office, or if you're traveling\nor you can't be here there to be able to quickly grab a USB mic,\nthrow it in your bag go with" + }, + { + "startTime": 218.43, + "startTimeFormatted": "00:03:38.430", + "endTime": 223.199, + "endTimeFormatted": "00:03:43.199", + "body": "you. And you can record audio\nfrom anywhere in the world, it's not too hard to find a quiet\nspace, most hotel rooms are" + }, + { + "startTime": 223.199, + "startTimeFormatted": "00:03:43.199", + "endTime": 227.4, + "endTimeFormatted": "00:03:47.400", + "body": "pretty quiet. Or if you're\nstaying on Airbnb or something that you can find a closet, you\ncan find a quiet space to record" + }, + { + "startTime": 227.4, + "startTimeFormatted": "00:03:47.400", + "endTime": 234.479, + "endTimeFormatted": "00:03:54.479", + "body": "audio, being able to travel with\na decent camera setup. Or if you don't have a decent camera\nsetup, then you're using" + }, + { + "startTime": 234.479, + "startTimeFormatted": "00:03:54.479", + "endTime": 239.52, + "endTimeFormatted": "00:03:59.520", + "body": "whatever on your laptop, you're\nconstantly worried about your background, like all this stuff\nis going on. It's just a" + }, + { + "startTime": 239.52, + "startTimeFormatted": "00:03:59.520", + "endTime": 245.4, + "endTimeFormatted": "00:04:05.400", + "body": "different level of commitment\nand what's required in terms of being able to put a show out\nevery week or every other week." + }, + { + "startTime": 245.61, + "startTimeFormatted": "00:04:05.610", + "endTime": 254.069, + "endTimeFormatted": "00:04:14.069", + "body": "So that has been added an extra\nlevel of commitment to the show, which again, not something that\nwe weren't willing to do, but" + }, + { + "startTime": 254.069, + "startTimeFormatted": "00:04:14.069", + "endTime": 259.56, + "endTimeFormatted": "00:04:19.560", + "body": "something that was a little bit\nunexpected. Didn't know going into it. And then from an\nanalytical side, like how" + }, + { + "startTime": 259.62, + "startTimeFormatted": "00:04:19.620", + "endTime": 264.24, + "endTimeFormatted": "00:04:24.240", + "body": "helpful was it actually, for us\ngrowing the show? That's what you guys have dug into. Right?" + }, + { + "startTime": 264.449, + "startTimeFormatted": "00:04:24.449", + "endTime": 273.689, + "endTimeFormatted": "00:04:33.689", + "speaker": "Alban", + "body": "Yeah, I mean, we can talk\na bit about the analytics buzz cast itself was getting more\nattention, let's call it" + }, + { + "startTime": 273.689, + "startTimeFormatted": "00:04:33.689", + "endTime": 285.029, + "endTimeFormatted": "00:04:45.029", + "body": "attention than it ever had\nbefore. We were getting between the downloads that continued to\ngrow on the RSS side. And on the" + }, + { + "startTime": 285.029, + "startTimeFormatted": "00:04:45.029", + "endTime": 292.92, + "endTimeFormatted": "00:04:52.920", + "body": "YouTube channel being added to\nthat it was huge. And then we started doing clips of Buzzcast\nepisodes. And those were doing" + }, + { + "startTime": 292.92, + "startTimeFormatted": "00:04:52.920", + "endTime": 301.259, + "endTimeFormatted": "00:05:01.259", + "body": "really well. And so if you\nwanted to add all that up, it was like wow, this show is\ndoubled in sighs This is great." + }, + { + "startTime": 302.399, + "startTimeFormatted": "00:05:02.399", + "endTime": 313.259, + "endTimeFormatted": "00:05:13.259", + "body": "But we on the other side, were\nkind of frustrated with the growth of the YouTube channel.\nWe grew a ton the first year." + }, + { + "startTime": 313.769, + "startTimeFormatted": "00:05:13.769", + "endTime": 322.05, + "endTimeFormatted": "00:05:22.050", + "body": "And we just kind of seen a lot\nof slowing down of our growth. We didn't know exactly why. And\nwe kept kind of digging into the" + }, + { + "startTime": 322.05, + "startTimeFormatted": "00:05:22.050", + "endTime": 330.959, + "endTimeFormatted": "00:05:30.959", + "body": "data. And I think it might have\nbeen Jonathan first, or maybe it was Travis, who said, I just\nclicked through all of the last" + }, + { + "startTime": 330.959, + "startTimeFormatted": "00:05:30.959", + "endTime": 339.779, + "endTimeFormatted": "00:05:39.779", + "body": "videos. And I noticed most of\nthe Buzzcast ones lose subscribers. And I was like,\nThat's not true. And then I" + }, + { + "startTime": 339.779, + "startTimeFormatted": "00:05:39.779", + "endTime": 348.089, + "endTimeFormatted": "00:05:48.089", + "body": "click through and went, Oh,\nthat's definitely true. I was very skeptical by nature. And so\nand then we started digging in" + }, + { + "startTime": 348.089, + "startTimeFormatted": "00:05:48.089", + "endTime": 358.5, + "endTimeFormatted": "00:05:58.500", + "body": "deeper. And I took, I think it\nwas like six different stats that we use to kind of quantify\nhow valuable each individual" + }, + { + "startTime": 358.5, + "startTimeFormatted": "00:05:58.500", + "endTime": 365.519, + "endTimeFormatted": "00:06:05.519", + "body": "video is. And I just went back\nand looked at, like the last 90 days, all the videos that were\ncreated during that 90 day" + }, + { + "startTime": 365.519, + "startTimeFormatted": "00:06:05.519", + "endTime": 375.54, + "endTimeFormatted": "00:06:15.540", + "body": "period, I think we had 22\nvideos, or 26 videos, all of the Buzzcast ones were in the worst\ncategory, they were they" + }, + { + "startTime": 375.54, + "startTimeFormatted": "00:06:15.540", + "endTime": 385.17, + "endTimeFormatted": "00:06:25.170", + "body": "represented, like the very\nbottom five episodes, or videos. And, you know, we, I think\nTravis, you had some good ideas" + }, + { + "startTime": 385.17, + "startTimeFormatted": "00:06:25.170", + "endTime": 392.699, + "endTimeFormatted": "00:06:32.699", + "body": "of why the Buzzcast ones were\nperforming near the bottom. But in the end, we were kind of\ndoing the thing that we've" + }, + { + "startTime": 392.699, + "startTimeFormatted": "00:06:32.699", + "endTime": 399.99, + "endTimeFormatted": "00:06:39.990", + "body": "always criticized, we've always\ncriticized people who were putting a static image on a\nYouTube video on a YouTube" + }, + { + "startTime": 399.99, + "startTimeFormatted": "00:06:39.990", + "endTime": 409.74, + "endTimeFormatted": "00:06:49.740", + "body": "video, just having audio, you\nknow, we said that can crush an existing valuable YouTube\nchannel. And we were crushing" + }, + { + "startTime": 409.769, + "startTimeFormatted": "00:06:49.769", + "endTime": 419.55, + "endTimeFormatted": "00:06:59.550", + "body": "our existing value bowl YouTube\nchannel, by adding this, you know, some of this, basically\npodcast content in video format." + }, + { + "startTime": 419.61, + "startTimeFormatted": "00:06:59.610", + "endTime": 425.16, + "endTimeFormatted": "00:07:05.160", + "speaker": "Kevin", + "body": "To clarify, we weren't\ncrushing it because we weren't putting the static image when we\nwere putting real video up. But" + }, + { + "startTime": 425.16, + "startTimeFormatted": "00:07:05.160", + "endTime": 431.519, + "endTimeFormatted": "00:07:11.519", + "body": "we weren't playing in line with\nthe the rules of YouTube or to use the algorithm in the\nsmartest and best way we were" + }, + { + "startTime": 431.519, + "startTimeFormatted": "00:07:11.519", + "endTime": 437.55, + "endTimeFormatted": "00:07:17.550", + "body": "confusing the algorithm. We were\npublishing different lengths of content, different formats of\ncontent. And so we ended up is a" + }, + { + "startTime": 437.55, + "startTimeFormatted": "00:07:17.550", + "endTime": 442.769, + "endTimeFormatted": "00:07:22.769", + "body": "very important and valuable\nchannel for us for marketing our software and telling the world\nabout what Buzzsprout can do for" + }, + { + "startTime": 442.769, + "startTimeFormatted": "00:07:22.769", + "endTime": 446.79, + "endTimeFormatted": "00:07:26.790", + "body": "you as a podcaster. We were\nhurting that marketing channel for us, right?" + }, + { + "startTime": 447.089, + "startTimeFormatted": "00:07:27.089", + "endTime": 454.92, + "endTimeFormatted": "00:07:34.920", + "speaker": "Alban", + "body": "Yeah, I guess what I was\nsaying is, we were not being hypocritical in the way that we\ncreated the video, the content," + }, + { + "startTime": 454.98, + "startTimeFormatted": "00:07:34.980", + "endTime": 461.97, + "endTimeFormatted": "00:07:41.970", + "body": "because we weren't publishing\nthe static image with the audio. But the reason we say we\nrecommend everybody else not to" + }, + { + "startTime": 461.97, + "startTimeFormatted": "00:07:41.970", + "endTime": 468.48, + "endTimeFormatted": "00:07:48.480", + "body": "do that, is because what it's\ndoing is it's showing YouTube that your content is low\nquality, and it's a specific" + }, + { + "startTime": 468.48, + "startTimeFormatted": "00:07:48.480", + "endTime": 477.389, + "endTimeFormatted": "00:07:57.389", + "body": "type of content. It's audio plus\nan image. Well, when we were looking at it, YouTube was used\nto a much higher production" + }, + { + "startTime": 477.389, + "startTimeFormatted": "00:07:57.389", + "endTime": 485.79, + "endTimeFormatted": "00:08:05.790", + "body": "quality, a very different type\nof content for our channel. And so I think people were\nconstantly confused. They're" + }, + { + "startTime": 485.79, + "startTimeFormatted": "00:08:05.790", + "endTime": 494.49, + "endTimeFormatted": "00:08:14.490", + "body": "running into videos that they\nthought were going to be Travis or Sarah jalon, doing an in\ndepth tutorial. And they were" + }, + { + "startTime": 494.49, + "startTimeFormatted": "00:08:14.490", + "endTime": 502.199, + "endTimeFormatted": "00:08:22.199", + "body": "clicking, and they were finding\nme pontificating about Facebook podcasts for 20 minutes. So\nTravis, give us some more" + }, + { + "startTime": 502.199, + "startTimeFormatted": "00:08:22.199", + "endTime": 509.639, + "endTimeFormatted": "00:08:29.639", + "body": "insight, what's what are the\ndifferentiators between our day to day content are the bread and\nbutter that we do very well, and" + }, + { + "startTime": 509.639, + "startTimeFormatted": "00:08:29.639", + "endTime": 511.35, + "endTimeFormatted": "00:08:31.350", + "body": "what Buzzcast was doing on our\nchannel?" + }, + { + "startTime": 511.56, + "startTimeFormatted": "00:08:31.560", + "endTime": 518.49, + "endTimeFormatted": "00:08:38.490", + "speaker": "Travis", + "body": "One thing to keep in\nmind is when we create content for Podcasting, Q&A, when we\ncreate tutorials, things like" + }, + { + "startTime": 518.49, + "startTimeFormatted": "00:08:38.490", + "endTime": 525.21, + "endTimeFormatted": "00:08:45.210", + "body": "that, we have a very specific\naim for those videos. Right? So we're trying to answer questions\nreally well, we're trying to" + }, + { + "startTime": 525.419, + "startTimeFormatted": "00:08:45.419", + "endTime": 534.269, + "endTimeFormatted": "00:08:54.269", + "body": "take all the knowledge and best\npractices for how to be a podcaster. And consolidating\nthat into a form factor. That is" + }, + { + "startTime": 534.299, + "startTimeFormatted": "00:08:54.299", + "endTime": 540.69, + "endTimeFormatted": "00:09:00.690", + "body": "something you could easily watch\nin just a few minutes and get all the information that you\nneed. And because we're able to" + }, + { + "startTime": 540.809, + "startTimeFormatted": "00:09:00.809", + "endTime": 546.96, + "endTimeFormatted": "00:09:06.960", + "body": "put that level of focus on it,\nlike Alan mentioned, the production quality is better. We\nhave custom animations, and B" + }, + { + "startTime": 546.96, + "startTimeFormatted": "00:09:06.960", + "endTime": 552.72, + "endTimeFormatted": "00:09:12.720", + "body": "roll, which is just a fancy way\nof saying we cut away to different videos of models doing\nthings that match what we're" + }, + { + "startTime": 552.72, + "startTimeFormatted": "00:09:12.720", + "endTime": 563.73, + "endTimeFormatted": "00:09:23.730", + "body": "talking about on screen. And so\nwe're able to create a type of content that works really well\nin a YouTube ecosystem. And so" + }, + { + "startTime": 563.73, + "startTimeFormatted": "00:09:23.730", + "endTime": 571.379, + "endTimeFormatted": "00:09:31.379", + "body": "if your whole channel is that\nkind of content, then YouTube starts knowing Okay, if someone\nwe've kind of identified them as" + }, + { + "startTime": 571.379, + "startTimeFormatted": "00:09:31.379", + "endTime": 576.69, + "endTimeFormatted": "00:09:36.690", + "body": "a potential podcaster, and\nthey're asking a podcast related question, Buzzsprout is going to\nbe the channel we recommend" + }, + { + "startTime": 576.69, + "startTimeFormatted": "00:09:36.690", + "endTime": 584.22, + "endTimeFormatted": "00:09:44.220", + "body": "because we know they have this\nkind of content. The reason that we split off Buzzcast the full\nepisodes into a separate channel" + }, + { + "startTime": 584.34, + "startTimeFormatted": "00:09:44.340", + "endTime": 594.21, + "endTimeFormatted": "00:09:54.210", + "body": "a couple of months ago, is\nbecause we noticed that those videos were not performing at\nall at the same level as the" + }, + { + "startTime": 594.539, + "startTimeFormatted": "00:09:54.539", + "endTime": 600.509, + "endTimeFormatted": "00:10:00.509", + "body": "Podcasting, Q&A and other\ntutorial videos were doing. And that was a common practice we'd\nseen with other youtubers That" + }, + { + "startTime": 600.509, + "startTimeFormatted": "00:10:00.509", + "endTime": 606.029, + "endTimeFormatted": "00:10:06.029", + "body": "created video podcasts, they\nwould create new channels for them. And then if they had\nclips, that would be a third" + }, + { + "startTime": 606.029, + "startTimeFormatted": "00:10:06.029", + "endTime": 610.44, + "endTimeFormatted": "00:10:10.440", + "body": "channel. So they would actually\nhave three channels, they'd have their main YouTube channel, a\nfull podcast channel and a clips" + }, + { + "startTime": 610.44, + "startTimeFormatted": "00:10:10.440", + "endTime": 616.679, + "endTimeFormatted": "00:10:16.679", + "body": "channel, in order to make sure\nthat they were kind of playing by the rules, the best practice\nof YouTube. So these were all" + }, + { + "startTime": 616.679, + "startTimeFormatted": "00:10:16.679", + "endTime": 623.009, + "endTimeFormatted": "00:10:23.009", + "body": "things that we, you know, as we\nwere experimenting, we weren't sure like, how far are we really\ngoing to carry this book? Like," + }, + { + "startTime": 623.009, + "startTimeFormatted": "00:10:23.009", + "endTime": 630.149, + "endTimeFormatted": "00:10:30.149", + "body": "how invested Are we going to get\ninto video Buzzcast. And so it didn't make sense to spin up a\nwhole YouTube channel, we're" + }, + { + "startTime": 630.149, + "startTimeFormatted": "00:10:30.149", + "endTime": 635.97, + "endTimeFormatted": "00:10:35.970", + "body": "just going to do a couple\nepisodes and then retire it right. So we tested in our on\nour main channel first and said," + }, + { + "startTime": 635.97, + "startTimeFormatted": "00:10:35.970", + "endTime": 641.669, + "endTimeFormatted": "00:10:41.669", + "body": "Okay, that's working. So then\nwhat if we took the next step, and we made it consistent? And\nthen what if we took the next" + }, + { + "startTime": 641.669, + "startTimeFormatted": "00:10:41.669", + "endTime": 648.72, + "endTimeFormatted": "00:10:48.720", + "body": "step and made a separate, and so\nit's kind of like evolved over time. And now to Kevin's point,\nit's at the place where we just" + }, + { + "startTime": 648.72, + "startTimeFormatted": "00:10:48.720", + "endTime": 655.919, + "endTimeFormatted": "00:10:55.919", + "body": "wanted to make sure, if we keep\ngoing on this trajectory, it's going to serve you guys, it's\ngonna make Buzzcast better for" + }, + { + "startTime": 655.919, + "startTimeFormatted": "00:10:55.919", + "endTime": 659.279, + "endTimeFormatted": "00:10:59.279", + "body": "you. And it's also going to make\nsense in the grand scheme of the" + }, + { + "startTime": 659.279, + "startTimeFormatted": "00:10:59.279", + "endTime": 662.94, + "endTimeFormatted": "00:11:02.940", + "body": "other things that we're doing to\nproduce and create content. And" + }, + { + "startTime": 662.94, + "startTimeFormatted": "00:11:02.940", + "endTime": 670.289, + "endTimeFormatted": "00:11:10.289", + "body": "so we're now at this nexus point\nwhere if we're going to be able to go back and record in the\nstudio, you know, that has a" + }, + { + "startTime": 670.289, + "startTimeFormatted": "00:11:10.289", + "endTime": 677.37, + "endTimeFormatted": "00:11:17.370", + "body": "level of production that even\nexceeds what we're currently what we were doing before. And,\nand so at this point in time, it" + }, + { + "startTime": 677.37, + "startTimeFormatted": "00:11:17.370", + "endTime": 684.269, + "endTimeFormatted": "00:11:24.269", + "body": "makes more sense for us to pause\nit, knowing we can always turn it back on later. But just to\ndouble down and refocus our" + }, + { + "startTime": 684.269, + "startTimeFormatted": "00:11:24.269", + "endTime": 686.94, + "endTimeFormatted": "00:11:26.940", + "body": "efforts on the audio only\nversion of Buzzcast." + }, + { + "startTime": 687.299, + "startTimeFormatted": "00:11:27.299", + "endTime": 695.429, + "endTimeFormatted": "00:11:35.429", + "speaker": "Alban", + "body": "So if I can kind of tie\nthis together with what are the best practices we have learned\nfor YouTube, and podcasting, in" + }, + { + "startTime": 695.429, + "startTimeFormatted": "00:11:35.429", + "endTime": 704.85, + "endTimeFormatted": "00:11:44.850", + "body": "particular, because podcasting\nis really growing on YouTube, one out of five people now who\nsay they listened to podcasts," + }, + { + "startTime": 704.85, + "startTimeFormatted": "00:11:44.850", + "endTime": 713.639, + "endTimeFormatted": "00:11:53.639", + "body": "they listened to most of their\npodcasts on YouTube, one out of five, that's pretty remarkably\nhigh numbers. That comes from" + }, + { + "startTime": 713.7, + "startTimeFormatted": "00:11:53.700", + "endTime": 721.289, + "endTimeFormatted": "00:12:01.289", + "body": "Edison research. I actually\ninterviewed Tom Webster this morning, and he told me that so\nit's definitely working there." + }, + { + "startTime": 721.769, + "startTimeFormatted": "00:12:01.769", + "endTime": 730.019, + "endTimeFormatted": "00:12:10.019", + "body": "But it takes a lot to make it\nwork. And it was not stuff that was going to make sense for us\nto do. So. I think to do" + }, + { + "startTime": 730.08, + "startTimeFormatted": "00:12:10.080", + "endTime": 739.62, + "endTimeFormatted": "00:12:19.620", + "body": "podcasts, well on YouTube, you\nprobably need to be recording a person so that you have that\nlive engaging element. Because I" + }, + { + "startTime": 739.62, + "startTimeFormatted": "00:12:19.620", + "endTime": 748.62, + "endTimeFormatted": "00:12:28.620", + "body": "don't know how to say this\nexactly. But like, the level of engagement you want to see\nbetween the hosts during a audio" + }, + { + "startTime": 748.71, + "startTimeFormatted": "00:12:28.710", + "endTime": 756.24, + "endTimeFormatted": "00:12:36.240", + "body": "and a video medium is very\ndifferent. Right now, like I can see Kevin and Travis and like\nKevin looks kind of" + }, + { + "startTime": 756.24, + "startTimeFormatted": "00:12:36.240", + "endTime": 761.34, + "endTimeFormatted": "00:12:41.340", + "body": "disinterested. That doesn't\nbother anybody who's just listening to this because they\ngo, Oh, Kevin's probably" + }, + { + "startTime": 761.34, + "startTimeFormatted": "00:12:41.340", + "endTime": 771.059, + "endTimeFormatted": "00:12:51.059", + "body": "listening attentively. But you\nknow what? But if we're on video, I'd be the first comment\nwe ever got on one of our" + }, + { + "startTime": 771.059, + "startTimeFormatted": "00:12:51.059", + "endTime": 779.19, + "endTimeFormatted": "00:12:59.190", + "body": "Buzzcast episodes was why does\nalbot look so mad. And I was like, Oh, that's just my face\nlooks. That's just me. Like," + }, + { + "startTime": 779.19, + "startTimeFormatted": "00:12:59.190", + "endTime": 787.23, + "endTimeFormatted": "00:13:07.230", + "body": "that's just me not smiling. And\nso that works perfectly fine. When you're recording long\ndistance recordings. When it's" + }, + { + "startTime": 787.23, + "startTimeFormatted": "00:13:07.230", + "endTime": 795.509, + "endTimeFormatted": "00:13:15.509", + "body": "on video, it starts to look a\nlittle weird. And you can either kind of over fake enthusiasm, or\nyou can get together in an audio" + }, + { + "startTime": 795.509, + "startTimeFormatted": "00:13:15.509", + "endTime": 803.37, + "endTimeFormatted": "00:13:23.370", + "body": "studio get together in a studio\nin person. So like, get together in person, I think is a very\nhigh recommendation, they should" + }, + { + "startTime": 803.37, + "startTimeFormatted": "00:13:23.370", + "endTime": 811.379, + "endTimeFormatted": "00:13:31.379", + "body": "try to get that number, you\nknow, if at all possible, then you've also got to have like\nmultiple shots to be able to" + }, + { + "startTime": 811.379, + "startTimeFormatted": "00:13:31.379", + "endTime": 818.7, + "endTimeFormatted": "00:13:38.700", + "body": "keep it interesting. So that's\nprobably a camera on each host. Maybe an additional wide angle\ncamera, you can see that we've" + }, + { + "startTime": 818.7, + "startTimeFormatted": "00:13:38.700", + "endTime": 825.929, + "endTimeFormatted": "00:13:45.929", + "body": "experimented this in some of our\nPodcasting Q&A videos is rolling, I think three different\ncameras now all at once, and" + }, + { + "startTime": 825.929, + "startTimeFormatted": "00:13:45.929", + "endTime": 835.11, + "endTimeFormatted": "00:13:55.110", + "body": "then we flipped between them.\nFor us to do the three of us in the studio would require us\nprobably to be shooting like" + }, + { + "startTime": 835.11, + "startTimeFormatted": "00:13:55.110", + "endTime": 843.33, + "endTimeFormatted": "00:14:03.330", + "body": "four or five cameras at a time.\nAnd then the, you know, that really ramps up the amount of\nvideo editing that we're doing." + }, + { + "startTime": 843.509, + "startTimeFormatted": "00:14:03.509", + "endTime": 849.96, + "endTimeFormatted": "00:14:09.960", + "body": "Okay, so we're buying a bunch of\ncameras. We're buying, we're doing more in video editing.\nWe're getting us all together in" + }, + { + "startTime": 849.96, + "startTimeFormatted": "00:14:09.960", + "endTime": 857.789, + "endTimeFormatted": "00:14:17.789", + "body": "the studio in the most\ndangerous, dangerous COVID hotspot United States right now.\nSo three negatives, and all for" + }, + { + "startTime": 857.789, + "startTimeFormatted": "00:14:17.789", + "endTime": 864.929, + "endTimeFormatted": "00:14:24.929", + "body": "the benefit of starting a new\nYouTube channel that isn't exactly in alignment with what\nwe want. So that's to kind of" + }, + { + "startTime": 864.929, + "startTimeFormatted": "00:14:24.929", + "endTime": 872.34, + "endTimeFormatted": "00:14:32.340", + "body": "wrap it up quickly. What how\nwe're thinking about this. Maybe we come back, maybe not. But\nuntil next time, listen to us on" + }, + { + "startTime": 872.34, + "startTimeFormatted": "00:14:32.340", + "endTime": 874.71, + "endTimeFormatted": "00:14:34.710", + "body": "our RSS backed podcast." + }, + { + "startTime": 875.099, + "startTimeFormatted": "00:14:35.099", + "endTime": 881.399, + "endTimeFormatted": "00:14:41.399", + "speaker": "Travis", + "body": "Yes, we are definitely\nnot going anywhere. You'll just need to listen to us anywhere\nexcept for Spotify will be." + }, + { + "startTime": 882.419, + "startTimeFormatted": "00:14:42.419", + "endTime": 888.269, + "endTimeFormatted": "00:14:48.269", + "speaker": "Alban", + "body": "This is basically Apple\npodcasts and indie apps exclusive now. Yeah, I would say\nso. I would say so." + }, + { + "startTime": 888.568, + "startTimeFormatted": "00:14:48.568", + "endTime": 893.339, + "endTimeFormatted": "00:14:53.339", + "speaker": "Kevin", + "body": "Yeah. I think it's an\ninteresting point that you talked about when you talk about\nyour interview with Tom Webster" + }, + { + "startTime": 893.339, + "startTimeFormatted": "00:14:53.339", + "endTime": 899.969, + "endTimeFormatted": "00:14:59.969", + "body": "and he's saying that one in five\npodcasts are roughly 20% of people listening the podcast in\nYouTube, and I can't help it" + }, + { + "startTime": 899.999, + "startTimeFormatted": "00:14:59.999", + "endTime": 910.259, + "endTimeFormatted": "00:15:10.259", + "body": "think that that is it just don't\nthink that there's a stat that we should just take without some\nadditional thought, right? Like" + }, + { + "startTime": 910.619, + "startTimeFormatted": "00:15:10.619", + "endTime": 915.989, + "endTimeFormatted": "00:15:15.989", + "body": "listening to a podcast and\nYouTube is a different experience than what a lot of us\nwho produce podcasts are in the" + }, + { + "startTime": 915.989, + "startTimeFormatted": "00:15:15.989", + "endTime": 921.328, + "endTimeFormatted": "00:15:21.328", + "body": "podcasting space probably think\nabout when we think about podcasting, like the benefits in\nthe beauty of podcasting is it's" + }, + { + "startTime": 921.328, + "startTimeFormatted": "00:15:21.328", + "endTime": 926.068, + "endTimeFormatted": "00:15:26.068", + "body": "it's passive, it's something\nthat you can do not only on demand, but at your convenience\nwhile you're doing other things" + }, + { + "startTime": 926.068, + "startTimeFormatted": "00:15:26.068", + "endTime": 930.328, + "endTimeFormatted": "00:15:30.328", + "body": "while you're doing housework\nwhile you're exercising, while you're at work while you're\ndriving a car, you the YouTube" + }, + { + "startTime": 930.328, + "startTimeFormatted": "00:15:30.328", + "endTime": 937.198, + "endTimeFormatted": "00:15:37.198", + "body": "experience is different than\nthat. And so while the YouTube ecosystem is huge, and it might\nbe a lot more mainstream in" + }, + { + "startTime": 937.198, + "startTimeFormatted": "00:15:37.198", + "endTime": 941.818, + "endTimeFormatted": "00:15:41.818", + "body": "terms of the number of people\nwho engage in that space, and then at some point, click on\nsomething that is calling itself" + }, + { + "startTime": 941.818, + "startTimeFormatted": "00:15:41.818", + "endTime": 947.849, + "endTimeFormatted": "00:15:47.849", + "body": "a podcast, it's, it might just\nbe an exposure thing, it might just be the size of the\necosystem thing, it might not" + }, + { + "startTime": 947.849, + "startTimeFormatted": "00:15:47.849", + "endTime": 953.938, + "endTimeFormatted": "00:15:53.938", + "body": "necessarily be what we would\nconsider a podcast and all the great benefits that go along\nwith podcasting. And I don't" + }, + { + "startTime": 953.938, + "startTimeFormatted": "00:15:53.938", + "endTime": 958.438, + "endTimeFormatted": "00:15:58.438", + "body": "want to get into the details of\nis it does it really have an RSS feed and all that stuff, that's\nnot really what I'm talking" + }, + { + "startTime": 958.438, + "startTimeFormatted": "00:15:58.438", + "endTime": 962.999, + "endTimeFormatted": "00:16:02.999", + "body": "about. I'm just kind of talking\nabout the size of the medium and the number of people who at some\npoint during their normal day," + }, + { + "startTime": 963.208, + "startTimeFormatted": "00:16:03.208", + "endTime": 971.129, + "endTimeFormatted": "00:16:11.129", + "body": "flip open YouTube, and might\nclick on something that is calling itself a podcast. So\nthat being said, YouTube is a" + }, + { + "startTime": 971.158, + "startTimeFormatted": "00:16:11.158", + "endTime": 976.288, + "endTimeFormatted": "00:16:16.288", + "body": "fine place for you to distribute\ncontent and being creator. But hopefully, there's some\ntakeaways from what we've" + }, + { + "startTime": 976.288, + "startTimeFormatted": "00:16:16.288", + "endTime": 982.438, + "endTimeFormatted": "00:16:22.438", + "body": "experienced over the past year,\npressing into the YouTube Space a little bit in terms of putting\na podcast onto YouTube, there's" + }, + { + "startTime": 982.438, + "startTimeFormatted": "00:16:22.438", + "endTime": 988.109, + "endTimeFormatted": "00:16:28.109", + "body": "a lot more that goes into it\nthan just recording a zoom call, and then throwing it up there.\nIf you really want to succeed," + }, + { + "startTime": 988.469, + "startTimeFormatted": "00:16:28.469", + "endTime": 992.188, + "endTimeFormatted": "00:16:32.188", + "body": "you have to understand the\nalgorithm, you have to understand how the medium works,\nyou have to understand what type" + }, + { + "startTime": 992.188, + "startTimeFormatted": "00:16:32.188", + "endTime": 998.188, + "endTimeFormatted": "00:16:38.188", + "body": "of content works there is, this\nis a larger level of commitment. And you might find a huge\naudience and huge following" + }, + { + "startTime": 998.188, + "startTimeFormatted": "00:16:38.188", + "endTime": 1005.269, + "endTimeFormatted": "00:16:45.269", + "body": "there. But it's probably not\ngoing to be it's not an overnight success. It is a lot\nof work. And it is very" + }, + { + "startTime": 1005.269, + "startTimeFormatted": "00:16:45.269", + "endTime": 1012.558, + "endTimeFormatted": "00:16:52.558", + "body": "different than audio only\npodcasting. So as we continue to unpack, and learn things about\nhow to use YouTube, or other" + }, + { + "startTime": 1012.558, + "startTimeFormatted": "00:16:52.558", + "endTime": 1018.379, + "endTimeFormatted": "00:16:58.379", + "body": "channels to grow your main\npodcast, your audio only podcast, it's distributed\nthrough RSS, we will continue to" + }, + { + "startTime": 1018.379, + "startTimeFormatted": "00:16:58.379", + "endTime": 1023.719, + "endTimeFormatted": "00:17:03.719", + "body": "share those learnings with you\nand hopefully make you a better podcaster. But this is where we\nare today. And the decisions" + }, + { + "startTime": 1023.719, + "startTimeFormatted": "00:17:03.719", + "endTime": 1031.638, + "endTimeFormatted": "00:17:11.638", + "body": "we've made. So this podcast will\nnot be on YouTube, and not in video form. And as we learn more\nand grow more, we'll share all" + }, + { + "startTime": 1031.638, + "startTimeFormatted": "00:17:11.638", + "endTime": 1032.179, + "endTimeFormatted": "00:17:12.179", + "body": "our learnings with" + }, + { + "startTime": 1035.42, + "startTimeFormatted": "00:17:15.420", + "endTime": 1041.9, + "endTimeFormatted": "00:17:21.900", + "speaker": "Travis", + "body": "so if you've been a\nBuzzcast listener for any length of time, you know, we're big\nfans of the podcast index and" + }, + { + "startTime": 1041.9, + "startTimeFormatted": "00:17:21.900", + "endTime": 1049.279, + "endTimeFormatted": "00:17:29.279", + "body": "podcasting 2.0, that entire\ngroup, that entire working group of people dedicating themselves\nto improving the open podcast" + }, + { + "startTime": 1049.279, + "startTimeFormatted": "00:17:29.279", + "endTime": 1056.42, + "endTimeFormatted": "00:17:36.420", + "body": "ecosystem, and creating really\nfun new features that allow you as a creator, to make awesome\ncontent and help your listeners" + }, + { + "startTime": 1056.69, + "startTimeFormatted": "00:17:36.690", + "endTime": 1064.069, + "endTimeFormatted": "00:17:44.069", + "body": "really engage with your show in\nsome really unique ways. Kevin and Tom had an opportunity to\nsit down with Dave Jones, who is" + }, + { + "startTime": 1064.069, + "startTimeFormatted": "00:17:44.069", + "endTime": 1072.17, + "endTimeFormatted": "00:17:52.170", + "body": "working on the podcast index and\npodcasting 2.0 to talk about a new feature that Buzzsprout is\nnow supporting, and also tease" + }, + { + "startTime": 1072.17, + "startTimeFormatted": "00:17:52.170", + "endTime": 1079.009, + "endTimeFormatted": "00:17:59.009", + "body": "out some fun new things that\nthey have coming down the pipeline. So here's that\nconversation between Kevin Tom and Dave Jones." + }, + { + "startTime": 1079.309, + "startTimeFormatted": "00:17:59.309", + "endTime": 1086.99, + "endTimeFormatted": "00:18:06.990", + "speaker": "Tom", + "body": "This is Tom Rossi,\ntechnical co founder of Buzzsprout. And I am glad to be\njoined by Dave Jones, one of the" + }, + { + "startTime": 1086.99, + "startTimeFormatted": "00:18:06.990", + "endTime": 1093.859, + "endTimeFormatted": "00:18:13.859", + "body": "two guys running the podcast\nindex, Dave Jones and Adam curry have been doing amazing work\nwith the podcast index. Dave," + }, + { + "startTime": 1093.89, + "startTimeFormatted": "00:18:13.890", + "endTime": 1100.64, + "endTimeFormatted": "00:18:20.640", + "body": "welcome to the show. Thanks for\nall that you're doing. Tell us a little bit about the podcast\nindex and what you guys are" + }, + { + "startTime": 1100.64, + "startTimeFormatted": "00:18:20.640", + "endTime": 1101.269, + "endTimeFormatted": "00:18:21.269", + "body": "doing over there." + }, + { + "startTime": 1101.66, + "startTimeFormatted": "00:18:21.660", + "endTime": 1104.839, + "endTimeFormatted": "00:18:24.839", + "speaker": "Dave", + "body": "Let's see, what are we\ndoing at the podcast? And what are we not doing at podcast?" + }, + { + "startTime": 1105.44, + "startTimeFormatted": "00:18:25.440", + "endTime": 1112.7, + "endTimeFormatted": "00:18:32.700", + "speaker": "Kevin", + "body": "So Dave, the podcasting\nto auto project is like it incorporates the podcast index\nand the podcasting namespace" + }, + { + "startTime": 1112.7, + "startTimeFormatted": "00:18:32.700", + "endTime": 1116.69, + "endTimeFormatted": "00:18:36.690", + "body": "right and a whole bunch of\nthings. Can you tell us like what's the difference? What are\nthe two functions that those" + }, + { + "startTime": 1116.72, + "startTimeFormatted": "00:18:36.720", + "endTime": 1119.299, + "endTimeFormatted": "00:18:39.299", + "body": "those two things sort of where\nthey come together? How does it all work?" + }, + { + "startTime": 1119.45, + "startTimeFormatted": "00:18:39.450", + "endTime": 1125.63, + "endTimeFormatted": "00:18:45.630", + "speaker": "Dave", + "body": "Yeah, we get this question\na lot. What the heck are y'all doing with all these various\nprojects? And then what did they" + }, + { + "startTime": 1125.63, + "startTimeFormatted": "00:18:45.630", + "endTime": 1134.359, + "endTimeFormatted": "00:18:54.359", + "body": "even mean? And so podcasting 2.0\nis the name of our podcast, but it's also the name of the\nbroader movement of trying to" + }, + { + "startTime": 1134.359, + "startTimeFormatted": "00:18:54.359", + "endTime": 1137.269, + "endTimeFormatted": "00:18:57.269", + "body": "preserve, protect and extend the\nopen RSS ecosystem," + }, + { + "startTime": 1137.299, + "startTimeFormatted": "00:18:57.299", + "endTime": 1141.68, + "endTimeFormatted": "00:19:01.680", + "speaker": "Kevin", + "body": "right. When we say this,\nthis is a little bit different than what like fireside chat\nintroduced it podcast movement," + }, + { + "startTime": 1141.68, + "startTimeFormatted": "00:19:01.680", + "endTime": 1144.109, + "endTimeFormatted": "00:19:04.109", + "body": "is podcasting to Dotto, right.\nYeah," + }, + { + "startTime": 1144.259, + "startTimeFormatted": "00:19:04.259", + "endTime": 1153.289, + "endTimeFormatted": "00:19:13.289", + "speaker": "Dave", + "body": "I gotta hope it is\ncompletely different. Yeah, but podcasting. 2.0 is just an open\nsource, volunteer movement of" + }, + { + "startTime": 1153.289, + "startTimeFormatted": "00:19:13.289", + "endTime": 1161.75, + "endTimeFormatted": "00:19:21.750", + "body": "people coming up with ideas and\nlaunching projects to help preserve the open RSS ecosystem\nof podcasting, and podcasting" + }, + { + "startTime": 1161.779, + "startTimeFormatted": "00:19:21.779", + "endTime": 1166.97, + "endTimeFormatted": "00:19:26.970", + "body": "inside the app. So pod inside\npodcasting 2.0. But that would be the podcast namespace where\nall these new features and tags" + }, + { + "startTime": 1166.97, + "startTimeFormatted": "00:19:26.970", + "endTime": 1173.72, + "endTimeFormatted": "00:19:33.720", + "body": "are coming from. Also within\npodcasting, 2.0 would be something like pod ping, which\nallows hosts to rapidly notified" + }, + { + "startTime": 1173.839, + "startTimeFormatted": "00:19:33.839", + "endTime": 1180.23, + "endTimeFormatted": "00:19:40.230", + "body": "apps and aggregators of new\nepisodes, things like that. That's all in the podcasting 2.0\nside of things. The podcast" + }, + { + "startTime": 1180.259, + "startTimeFormatted": "00:19:40.259", + "endTime": 1188.15, + "endTimeFormatted": "00:19:48.150", + "body": "index is the thing that we\ncreated at the very beginning in order to facilitate all these\nother things. So the podcast" + }, + { + "startTime": 1188.15, + "startTimeFormatted": "00:19:48.150", + "endTime": 1195.829, + "endTimeFormatted": "00:19:55.829", + "body": "index is the largest directory\nof podcasts on the internet. It's were like 4.1 million\npodcasts right now feeds. We are" + }, + { + "startTime": 1195.829, + "startTimeFormatted": "00:19:55.829", + "endTime": 1204.289, + "endTimeFormatted": "00:20:04.289", + "body": "a directory and also an API for\npodcast app. to hook in to get their podcast data from,\nbasically, they just start" + }, + { + "startTime": 1204.289, + "startTimeFormatted": "00:20:04.289", + "endTime": 1212.21, + "endTimeFormatted": "00:20:12.210", + "body": "coding an app, they plug into us\nand they get all their data in, it saves them a world of hurt on\nthat side of things. So those," + }, + { + "startTime": 1212.45, + "startTimeFormatted": "00:20:12.450", + "endTime": 1218.599, + "endTimeFormatted": "00:20:18.599", + "body": "the podcasts index is the APN\ndirectory, but geisen 2.0 is all the features and community\nmovement." + }, + { + "startTime": 1219.23, + "startTimeFormatted": "00:20:19.230", + "endTime": 1224.93, + "endTimeFormatted": "00:20:24.930", + "speaker": "Kevin", + "body": "Right, and then huge\nopportunity with the index is that we're not tied in or\nreliant on Apple anymore. So" + }, + { + "startTime": 1224.93, + "startTimeFormatted": "00:20:24.930", + "endTime": 1229.609, + "endTimeFormatted": "00:20:29.609", + "body": "like over the past two or three\nmonths, Apple's directory has been having a ton of problems.\nNot to mention even before that," + }, + { + "startTime": 1229.609, + "startTimeFormatted": "00:20:29.609", + "endTime": 1234.769, + "endTimeFormatted": "00:20:34.769", + "body": "when it was working, well, it\nwould take you probably a minimum of two or three days up\nto a couple weeks to even get in" + }, + { + "startTime": 1234.98, + "startTimeFormatted": "00:20:34.980", + "endTime": 1240.95, + "endTimeFormatted": "00:20:40.950", + "body": "Apple podcast directory, then\nwhen you publish a new episode, it might be 24 hours or more\nbefore that new episode gets" + }, + { + "startTime": 1240.95, + "startTimeFormatted": "00:20:40.950", + "endTime": 1246.95, + "endTimeFormatted": "00:20:46.950", + "body": "released in search showing up on\nany of the apps that rely on that directory. And the index\nsolves all that along with other" + }, + { + "startTime": 1246.95, + "startTimeFormatted": "00:20:46.950", + "endTime": 1250.46, + "endTimeFormatted": "00:20:50.460", + "body": "technologies that you're\ndeveloping as well like the pod paying and everything else.\nRight." + }, + { + "startTime": 1250.519, + "startTimeFormatted": "00:20:50.519", + "endTime": 1256.7, + "endTimeFormatted": "00:20:56.700", + "speaker": "Dave", + "body": "Yeah, we started this\nwhole project with with the directory and the API with the\nidea that we wanted to take" + }, + { + "startTime": 1257.21, + "startTimeFormatted": "00:20:57.210", + "endTime": 1265.43, + "endTimeFormatted": "00:21:05.430", + "body": "Apple Apple's directory away\nfrom being the center of the podcasting universe, which has\nbeen for, you know, 15 years at" + }, + { + "startTime": 1265.43, + "startTimeFormatted": "00:21:05.430", + "endTime": 1273.319, + "endTimeFormatted": "00:21:13.319", + "body": "least. And the idea there was\nthat, you know, no, no knock on Apple, I mean, they've been good\nstewards of podcasting, it's" + }, + { + "startTime": 1273.319, + "startTimeFormatted": "00:21:13.319", + "endTime": 1283.549, + "endTimeFormatted": "00:21:23.549", + "body": "just that it doesn't make a lot\nof sense for an open specification, like podcasting,\nan open system that anybody can" + }, + { + "startTime": 1283.549, + "startTimeFormatted": "00:21:23.549", + "endTime": 1293.18, + "endTimeFormatted": "00:21:33.180", + "body": "participate in, it does not make\na lot of sense for that. To be controlled by a single humongous\nentity like apple, I mean," + }, + { + "startTime": 1293.18, + "startTimeFormatted": "00:21:33.180", + "endTime": 1297.89, + "endTimeFormatted": "00:21:37.890", + "body": "they're literally the biggest\ncompany in the world. And so it's sort of like you have this\nweird spectrum where you got" + }, + { + "startTime": 1297.89, + "startTimeFormatted": "00:21:37.890", + "endTime": 1305.15, + "endTimeFormatted": "00:21:45.150", + "body": "podcasting, which is completely\nopen, I can hand write an RSS feed today, and get into the\ninbox and create a podcast. And" + }, + { + "startTime": 1305.18, + "startTimeFormatted": "00:21:45.180", + "endTime": 1312.559, + "endTimeFormatted": "00:21:52.559", + "body": "I can do it from my computer in\nfive minutes. But then you have the directory where all the\npodcasts are found, his career" + }, + { + "startTime": 1312.589, + "startTimeFormatted": "00:21:52.589", + "endTime": 1320.059, + "endTimeFormatted": "00:22:00.059", + "body": "is controlled by this huge\ncorporation. So it really just didn't didn't make a lot of\nsense, the goal there was create" + }, + { + "startTime": 1320.059, + "startTimeFormatted": "00:22:00.059", + "endTime": 1327.23, + "endTimeFormatted": "00:22:07.230", + "body": "a directory that is completely\nopen, anybody can join it, anybody can add to it, anybody\ncan put their podcast into it in" + }, + { + "startTime": 1327.41, + "startTimeFormatted": "00:22:07.410", + "endTime": 1335.509, + "endTimeFormatted": "00:22:15.509", + "body": "15 seconds. And then the next\nstep, which is the which is the part that has to happen, make it\navailable for free, and" + }, + { + "startTime": 1335.509, + "startTimeFormatted": "00:22:15.509", + "endTime": 1343.22, + "endTimeFormatted": "00:22:23.220", + "body": "everybody can download it, you\ncan download it our entire database right now from our From\nthe homepage of our website, and" + }, + { + "startTime": 1343.369, + "startTimeFormatted": "00:22:23.369", + "endTime": 1348.71, + "endTimeFormatted": "00:22:28.710", + "body": "do whatever you want with it,\nyou can go create your own directory or your own API or\nyour own apps. So if it's not" + }, + { + "startTime": 1348.71, + "startTimeFormatted": "00:22:28.710", + "endTime": 1354.349, + "endTimeFormatted": "00:22:34.349", + "body": "free, then it doesn't solve any\nof the problem. And if you have to have us, it still doesn't\nsolve the problem. You need to" + }, + { + "startTime": 1354.349, + "startTimeFormatted": "00:22:34.349", + "endTime": 1358.039, + "endTimeFormatted": "00:22:38.039", + "body": "be we need to redistribute it.\nAnd so that's what we that was the Gulf in the beginning." + }, + { + "startTime": 1358.46, + "startTimeFormatted": "00:22:38.460", + "endTime": 1364.46, + "endTimeFormatted": "00:22:44.460", + "speaker": "Tom", + "body": "One of the features that\nI'm most excited about out of podcasting 2.0 is pod ping, can\nyou tell us a little bit about that?" + }, + { + "startTime": 1364.519, + "startTimeFormatted": "00:22:44.519", + "endTime": 1372.769, + "endTimeFormatted": "00:22:52.769", + "speaker": "Dave", + "body": "Yeah, sure. podcasting\nsuffers from the same thing that all RSS based infrastructure\ndoes it, what you have is a" + }, + { + "startTime": 1372.769, + "startTimeFormatted": "00:22:52.769", + "endTime": 1380.329, + "endTimeFormatted": "00:23:00.329", + "body": "system where you publish an\nepisode of whatever this is, or a blog post or anything, any bit\nof information, you publish that" + }, + { + "startTime": 1380.329, + "startTimeFormatted": "00:23:00.329", + "endTime": 1387.349, + "endTimeFormatted": "00:23:07.349", + "body": "to an RSS feed, think of it like\na WordPress blog. So then the RSS feed, which is just a file\non a web server somewhere, it" + }, + { + "startTime": 1387.349, + "startTimeFormatted": "00:23:07.349", + "endTime": 1393.65, + "endTimeFormatted": "00:23:13.650", + "body": "gets updated. How does the rest\nof the world know that you've just put a blog post up on your\nwebsite, they have to be" + }, + { + "startTime": 1393.65, + "startTimeFormatted": "00:23:13.650", + "endTime": 1400.94, + "endTimeFormatted": "00:23:20.940", + "body": "notified, or they have to go and\ncheck in there's, there's the only two ways to get that\ninformation. So just think of it" + }, + { + "startTime": 1400.94, + "startTimeFormatted": "00:23:20.940", + "endTime": 1407.779, + "endTimeFormatted": "00:23:27.779", + "body": "like, you know, clicking on a\nwebsite refresh button over and over and over just to see if\nsomething new pops up. That's" + }, + { + "startTime": 1407.779, + "startTimeFormatted": "00:23:27.779", + "endTime": 1414.019, + "endTimeFormatted": "00:23:34.019", + "body": "essentially what all of these\ninfrastructures have to do, whether it's podcasting or\nblogosphere, or any of these" + }, + { + "startTime": 1414.019, + "startTimeFormatted": "00:23:34.019", + "endTime": 1418.279, + "endTimeFormatted": "00:23:38.279", + "body": "things. It's just what you\nresort to is just checking the website over and over and over." + }, + { + "startTime": 1418.549, + "startTimeFormatted": "00:23:38.549", + "endTime": 1423.259, + "endTimeFormatted": "00:23:43.259", + "speaker": "Tom", + "body": "And this is this is one of\nthe things that we see all the time, right, where we have\npodcasters, who will publish an" + }, + { + "startTime": 1423.259, + "startTimeFormatted": "00:23:43.259", + "endTime": 1429.71, + "endTimeFormatted": "00:23:49.710", + "body": "episode. And then they're\nwondering, Well, where is it? I published it an hour ago? Why\ndon't I see it anywhere? Why" + }, + { + "startTime": 1429.71, + "startTimeFormatted": "00:23:49.710", + "endTime": 1436.19, + "endTimeFormatted": "00:23:56.190", + "body": "don't I see it on Apple? Why\ndon't I see it on Spotify? And I think what what's exciting about\npod pain is this is a solution" + }, + { + "startTime": 1436.19, + "startTimeFormatted": "00:23:56.190", + "endTime": 1443.779, + "endTimeFormatted": "00:24:03.779", + "body": "to that problem, which is if you\nsubscribe to a feed with with pod pain, you'll know whenever\nit gets updated. You'll know" + }, + { + "startTime": 1443.779, + "startTimeFormatted": "00:24:03.779", + "endTime": 1444.769, + "endTimeFormatted": "00:24:04.769", + "body": "about it immediately." + }, + { + "startTime": 1445.13, + "startTimeFormatted": "00:24:05.130", + "endTime": 1451.4, + "endTimeFormatted": "00:24:11.400", + "speaker": "Dave", + "body": "Yeah, and that's a just a\nreversal of that whole thing of instead of checking over and\nover and over for new content." + }, + { + "startTime": 1451.91, + "startTimeFormatted": "00:24:11.910", + "endTime": 1455.66, + "endTimeFormatted": "00:24:15.660", + "body": "We tell you, you know, the\npublisher tells you when there's content," + }, + { + "startTime": 1455.93, + "startTimeFormatted": "00:24:15.930", + "endTime": 1462.47, + "endTimeFormatted": "00:24:22.470", + "speaker": "Tom", + "body": "pod ping solves two\nproblems. One is the polling with RSS feeds. And then you\nalso have the problem of much of" + }, + { + "startTime": 1462.47, + "startTimeFormatted": "00:24:22.470", + "endTime": 1470.089, + "endTimeFormatted": "00:24:30.089", + "body": "the web sub pub pub is built on\nGoogle, which isn't reliable. So pod ping does it in a reliable\nway. And so as I've talked to" + }, + { + "startTime": 1470.089, + "startTimeFormatted": "00:24:30.089", + "endTime": 1473.93, + "endTimeFormatted": "00:24:33.930", + "body": "people about pod paying, and\nthey said, Well, don't we already have a solution for\nthis? Well, we don't have a" + }, + { + "startTime": 1473.93, + "startTimeFormatted": "00:24:33.930", + "endTime": 1480.92, + "endTimeFormatted": "00:24:40.920", + "body": "reliable solution for this. And\nso that's why a lot of people just continue to pull RSS feeds.\nSo really excited about the work" + }, + { + "startTime": 1480.92, + "startTimeFormatted": "00:24:40.920", + "endTime": 1487.49, + "endTimeFormatted": "00:24:47.490", + "body": "that you did with with pod Ping.\nOne of the features of the podcast namespace that we've\njust implemented at Buzzsprout." + }, + { + "startTime": 1487.519, + "startTimeFormatted": "00:24:47.519", + "endTime": 1496.009, + "endTimeFormatted": "00:24:56.009", + "body": "That I'm sure everyone would\nlove to hear why we did it. Is the gu ID, or the gu ID. How do\nyou say Dave gwit? Yeah, let's" + }, + { + "startTime": 1496.009, + "startTimeFormatted": "00:24:56.009", + "endTime": 1502.22, + "endTimeFormatted": "00:25:02.220", + "body": "Duguid. Goo it sounds gross.\nLet's do good. There's no way around it that it's He's gonna\nsound gross. So but tell us" + }, + { + "startTime": 1502.64, + "startTimeFormatted": "00:25:02.640", + "endTime": 1509.569, + "endTimeFormatted": "00:25:09.569", + "body": "what, what's the grid? And why\ndo you want podcasting companies like Buzzsprout and podcasters.\nto include this in their RSS" + }, + { + "startTime": 1509.569, + "startTimeFormatted": "00:25:09.569", + "endTime": 1509.869, + "endTimeFormatted": "00:25:09.869", + "body": "feed," + }, + { + "startTime": 1510.259, + "startTimeFormatted": "00:25:10.259", + "endTime": 1520.279, + "endTimeFormatted": "00:25:20.279", + "speaker": "Dave", + "body": "a grid is a globally\nunique identifier, geo ID. It is a long number that uniquely\nidentifies a thing and object" + }, + { + "startTime": 1520.73, + "startTimeFormatted": "00:25:20.730", + "endTime": 1529.97, + "endTimeFormatted": "00:25:29.970", + "body": "globally in the world. It's this\nthing is this number. And so that is a thing that Apple's\ndirectory has always had." + }, + { + "startTime": 1530.599, + "startTimeFormatted": "00:25:30.599", + "endTime": 1540.41, + "endTimeFormatted": "00:25:40.410", + "body": "Everybody's podcast has an\niTunes ID, or an apple podcast ID. And if you go and look for\nyour podcast on Apple's podcast" + }, + { + "startTime": 1540.41, + "startTimeFormatted": "00:25:40.410", + "endTime": 1546.619, + "endTimeFormatted": "00:25:46.619", + "body": "directory, you can see at the\nend of the little URL in the address bar up there, you can\nsee your Apple ID, because Apple" + }, + { + "startTime": 1546.619, + "startTimeFormatted": "00:25:46.619", + "endTime": 1554.42, + "endTimeFormatted": "00:25:54.420", + "body": "has been the center of the\npodcasting universe for so long, that iTunes ID has become the\nway that many apps identify a" + }, + { + "startTime": 1554.42, + "startTimeFormatted": "00:25:54.420", + "endTime": 1564.559, + "endTimeFormatted": "00:26:04.559", + "body": "podcast in there's problems with\nthat. We solve those problems earlier this year, when Apple's\nAPI stopped returning the" + }, + { + "startTime": 1564.559, + "startTimeFormatted": "00:26:04.559", + "endTime": 1573.2, + "endTimeFormatted": "00:26:13.200", + "body": "location of where podcast live\nat. So they stopped returning in their API for many, many feeds,\nthey stopped returning the" + }, + { + "startTime": 1573.2, + "startTimeFormatted": "00:26:13.200", + "endTime": 1580.19, + "endTimeFormatted": "00:26:20.190", + "body": "actual URL, which is would be\nlike, you know, buzzsprout.com slash such and such. That's a\nhuge problem because it broke" + }, + { + "startTime": 1580.19, + "startTimeFormatted": "00:26:20.190", + "endTime": 1586.789, + "endTimeFormatted": "00:26:26.789", + "body": "tons of apps. And we were on the\nfront lines of that, because a lot of people started using our\nAPI when that happened, because" + }, + { + "startTime": 1586.789, + "startTimeFormatted": "00:26:26.789", + "endTime": 1588.41, + "endTimeFormatted": "00:26:28.410", + "body": "it broke and broke their app." + }, + { + "startTime": 1588.559, + "startTimeFormatted": "00:26:28.559", + "endTime": 1595.039, + "endTimeFormatted": "00:26:35.039", + "speaker": "Kevin", + "body": "Is this stuff going to\nhelp us move in the direction of like global comments, global\nratings and reviews? Are you" + }, + { + "startTime": 1595.039, + "startTimeFormatted": "00:26:35.039", + "endTime": 1602.539, + "endTimeFormatted": "00:26:42.539", + "body": "guys working on infrastructure\nto be able to allow podcasters to leave a five star rating in\none app that then translates" + }, + { + "startTime": 1602.539, + "startTimeFormatted": "00:26:42.539", + "endTime": 1608.39, + "endTimeFormatted": "00:26:48.390", + "body": "over to another app or a comment\nover here on pod friend that could get posted in pod chaser?" + }, + { + "startTime": 1608.779, + "startTimeFormatted": "00:26:48.779", + "endTime": 1612.98, + "endTimeFormatted": "00:26:52.980", + "speaker": "Dave", + "body": "Yeah, I hope so. I mean,\nthat's the idea. That's, that's absolutely the goal with this." + }, + { + "startTime": 1613.16, + "startTimeFormatted": "00:26:53.160", + "endTime": 1619.73, + "endTimeFormatted": "00:26:59.730", + "speaker": "Tom", + "body": "Just a quick note for our\nBuzzsprout listeners, don't you don't have to write into the\nport and ask us to put a grid on" + }, + { + "startTime": 1619.73, + "startTimeFormatted": "00:26:59.730", + "endTime": 1626.089, + "endTimeFormatted": "00:27:06.089", + "body": "your RSS feed, they're already\nthere. So all these features whenever we can we want to\nimplement them without having to" + }, + { + "startTime": 1626.089, + "startTimeFormatted": "00:27:06.089", + "endTime": 1632.42, + "endTimeFormatted": "00:27:12.420", + "body": "require, you know, any, any kind\nof, you know, technical knowledge on our podcasters. And\nso, yes, the goods are already" + }, + { + "startTime": 1632.42, + "startTimeFormatted": "00:27:12.420", + "endTime": 1634.97, + "endTimeFormatted": "00:27:14.970", + "body": "there. And we continue to follow\nall the work that Dave and Adam" + }, + { + "startTime": 1634.97, + "startTimeFormatted": "00:27:14.970", + "endTime": 1637.4, + "endTimeFormatted": "00:27:17.400", + "body": "are doing, and we will implement\nthose features as they come up." + }, + { + "startTime": 1637.579, + "startTimeFormatted": "00:27:17.579", + "endTime": 1644.96, + "endTimeFormatted": "00:27:24.960", + "body": "Dave, thank you for being on the\nshow. Thank you for all the work that you're doing to help make\npodcasting. Awesome. We" + }, + { + "startTime": 1644.96, + "startTimeFormatted": "00:27:24.960", + "endTime": 1646.43, + "endTimeFormatted": "00:27:26.430", + "body": "appreciate it. And thanks for\nbeing here." + }, + { + "startTime": 1646.519, + "startTimeFormatted": "00:27:26.519", + "endTime": 1652.13, + "endTimeFormatted": "00:27:32.130", + "speaker": "Kevin", + "body": "Yeah, thanks, guys.\nAppreciate it. listeners, please check out podcast index.org\nclick on apps, download a new" + }, + { + "startTime": 1652.13, + "startTimeFormatted": "00:27:32.130", + "endTime": 1658.789, + "endTimeFormatted": "00:27:38.789", + "body": "podcast app, recommend it to\nyour listening audience. And yeah, support the movement. It's\nreally good stuff for podcasting." + }, + { + "startTime": 1661.93, + "startTimeFormatted": "00:27:41.930", + "endTime": 1668.049, + "endTimeFormatted": "00:27:48.049", + "speaker": "Travis", + "body": "So we asked the good\npeople of the internet, namely on our YouTube community chats\nif you subscribe to the YouTube," + }, + { + "startTime": 1668.079, + "startTimeFormatted": "00:27:48.079", + "endTime": 1674.38, + "endTimeFormatted": "00:27:54.380", + "body": "the main Buzzsprout YouTube\nchannel, you may have seen this in your subscriber feed. Alban\nasked on Twitter, we also posted" + }, + { + "startTime": 1674.38, + "startTimeFormatted": "00:27:54.380", + "endTime": 1680.049, + "endTimeFormatted": "00:28:00.049", + "body": "in the Facebook group, the\nBuzzsprout podcast, Facebook group, just your questions. So\nwe're going to run through a" + }, + { + "startTime": 1680.049, + "startTimeFormatted": "00:28:00.049", + "endTime": 1684.46, + "endTimeFormatted": "00:28:04.460", + "body": "lightning round, have a bunch of\nquestions and hopefully will" + } + ] +} \ No newline at end of file diff --git a/test/test_files/how_to_start_a_podcast_json_combine_segments_32_parsed.json b/test/test_files/how_to_start_a_podcast_json_combine_segments_32_parsed.json new file mode 100644 index 0000000..228d942 --- /dev/null +++ b/test/test_files/how_to_start_a_podcast_json_combine_segments_32_parsed.json @@ -0,0 +1,3284 @@ +{ + "segments": [ + { + "startTime": 0.3, + "startTimeFormatted": "00:00:00.300", + "endTime": 2.16, + "endTimeFormatted": "00:00:02.160", + "speaker": "Travis", + "body": "Hey, Travis Albritain here. Uh," + }, + { + "startTime": 2.19, + "startTimeFormatted": "00:00:02.190", + "endTime": 4.14, + "endTimeFormatted": "00:00:04.140", + "speaker": "Travis", + "body": "so I hope the, these episodes" + }, + { + "startTime": 4.141, + "startTimeFormatted": "00:00:04.141", + "endTime": 5.22, + "endTimeFormatted": "00:00:05.220", + "speaker": "Travis", + "body": "have been super helpful for you" + }, + { + "startTime": 5.52, + "startTimeFormatted": "00:00:05.520", + "endTime": 6.75, + "endTimeFormatted": "00:00:06.750", + "speaker": "Travis", + "body": "getting your show off the ground" + }, + { + "startTime": 6.751, + "startTimeFormatted": "00:00:06.751", + "endTime": 7.89, + "endTimeFormatted": "00:00:07.890", + "speaker": "Travis", + "body": "and having the confidence that" + }, + { + "startTime": 7.891, + "startTimeFormatted": "00:00:07.891", + "endTime": 9.72, + "endTimeFormatted": "00:00:09.720", + "speaker": "Travis", + "body": "you need to really launch a" + }, + { + "startTime": 9.721, + "startTimeFormatted": "00:00:09.721", + "endTime": 10.86, + "endTimeFormatted": "00:00:10.860", + "speaker": "Travis", + "body": "podcast, which is such an" + }, + { + "startTime": 10.861, + "startTimeFormatted": "00:00:10.861", + "endTime": 12.48, + "endTimeFormatted": "00:00:12.480", + "speaker": "Travis", + "body": "incredible thing. Now, I" + }, + { + "startTime": 12.481, + "startTimeFormatted": "00:00:12.481", + "endTime": 14.64, + "endTimeFormatted": "00:00:14.640", + "speaker": "Travis", + "body": "recently had the opportunity to" + }, + { + "startTime": 14.91, + "startTimeFormatted": "00:00:14.910", + "endTime": 16.2, + "endTimeFormatted": "00:00:16.200", + "speaker": "Travis", + "body": "sit down for a conversation with" + }, + { + "startTime": 16.23, + "startTimeFormatted": "00:00:16.230", + "endTime": 18.12, + "endTimeFormatted": "00:00:18.120", + "speaker": "Travis", + "body": "Eric Nuzum, who is been an" + }, + { + "startTime": 18.121, + "startTimeFormatted": "00:00:18.121", + "endTime": 19.29, + "endTimeFormatted": "00:00:19.290", + "speaker": "Travis", + "body": "executive producer on some of" + }, + { + "startTime": 19.291, + "startTimeFormatted": "00:00:19.291", + "endTime": 21.24, + "endTimeFormatted": "00:00:21.240", + "speaker": "Travis", + "body": "the biggest podcasts in the" + }, + { + "startTime": 21.241, + "startTimeFormatted": "00:00:21.241", + "endTime": 23.25, + "endTimeFormatted": "00:00:23.250", + "speaker": "Travis", + "body": "world, many of NPRs podcast," + }, + { + "startTime": 23.31, + "startTimeFormatted": "00:00:23.310", + "endTime": 26.31, + "endTimeFormatted": "00:00:26.310", + "speaker": "Travis", + "body": "Ted's podcasts, um, and just" + }, + { + "startTime": 26.311, + "startTimeFormatted": "00:00:26.311", + "endTime": 28.44, + "endTimeFormatted": "00:00:28.440", + "speaker": "Travis", + "body": "brings a lot of insight and" + }, + { + "startTime": 28.47, + "startTimeFormatted": "00:00:28.470", + "endTime": 30.9, + "endTimeFormatted": "00:00:30.900", + "speaker": "Travis", + "body": "depth of wisdom to podcasting." + }, + { + "startTime": 30.901, + "startTimeFormatted": "00:00:30.901", + "endTime": 31.8, + "endTimeFormatted": "00:00:31.800", + "speaker": "Travis", + "body": "And so I wanted to share this" + }, + { + "startTime": 31.801, + "startTimeFormatted": "00:00:31.801", + "endTime": 33.35, + "endTimeFormatted": "00:00:33.350", + "speaker": "Travis", + "body": "with you as kind of like a" + }, + { + "startTime": 34.08, + "startTimeFormatted": "00:00:34.080", + "endTime": 36.6, + "endTimeFormatted": "00:00:36.600", + "speaker": "Travis", + "body": "podcasting 201. This interview" + }, + { + "startTime": 36.84, + "startTimeFormatted": "00:00:36.840", + "endTime": 38.49, + "endTimeFormatted": "00:00:38.490", + "speaker": "Travis", + "body": "is what to do once you have your" + }, + { + "startTime": 38.491, + "startTimeFormatted": "00:00:38.491", + "endTime": 40.11, + "endTimeFormatted": "00:00:40.110", + "speaker": "Travis", + "body": "show going and you really want" + }, + { + "startTime": 40.111, + "startTimeFormatted": "00:00:40.111", + "endTime": 41.28, + "endTimeFormatted": "00:00:41.280", + "speaker": "Travis", + "body": "to see what's the next step." + }, + { + "startTime": 41.31, + "startTimeFormatted": "00:00:41.310", + "endTime": 43.14, + "endTimeFormatted": "00:00:43.140", + "speaker": "Travis", + "body": "What's the next level that I can" + }, + { + "startTime": 43.141, + "startTimeFormatted": "00:00:43.141", + "endTime": 46.32, + "endTimeFormatted": "00:00:46.320", + "speaker": "Travis", + "body": "get to with my podcast. Uh, he" + }, + { + "startTime": 46.321, + "startTimeFormatted": "00:00:46.321", + "endTime": 48.27, + "endTimeFormatted": "00:00:48.270", + "speaker": "Travis", + "body": "just wrote a brand new book on" + }, + { + "startTime": 48.271, + "startTimeFormatted": "00:00:48.271", + "endTime": 50.28, + "endTimeFormatted": "00:00:50.280", + "speaker": "Travis", + "body": "podcasting called Make Noise. I" + }, + { + "startTime": 50.281, + "startTimeFormatted": "00:00:50.281", + "endTime": 51.69, + "endTimeFormatted": "00:00:51.690", + "speaker": "Travis", + "body": "will leave a link to the book in" + }, + { + "startTime": 51.691, + "startTimeFormatted": "00:00:51.691", + "endTime": 52.95, + "endTimeFormatted": "00:00:52.950", + "speaker": "Travis", + "body": "the episode description. It's a" + }, + { + "startTime": 52.951, + "startTimeFormatted": "00:00:52.951", + "endTime": 54.63, + "endTimeFormatted": "00:00:54.630", + "speaker": "Travis", + "body": "fantastic book. So I hope that" + }, + { + "startTime": 54.631, + "startTimeFormatted": "00:00:54.631", + "endTime": 56.4, + "endTimeFormatted": "00:00:56.400", + "speaker": "Travis", + "body": "this conversation is helpful for" + }, + { + "startTime": 56.401, + "startTimeFormatted": "00:00:56.401", + "endTime": 57.96, + "endTimeFormatted": "00:00:57.960", + "speaker": "Travis", + "body": "you and that you get a lot out" + }, + { + "startTime": 57.961, + "startTimeFormatted": "00:00:57.961", + "endTime": 59.58, + "endTimeFormatted": "00:00:59.580", + "speaker": "Travis", + "body": "of it. And without further ado," + }, + { + "startTime": 59.64, + "startTimeFormatted": "00:00:59.640", + "endTime": 61.29, + "endTimeFormatted": "00:01:01.290", + "speaker": "Travis", + "body": "here's my conversation with Eric" + }, + { + "startTime": 61.291, + "startTimeFormatted": "00:01:01.291", + "endTime": 61.62, + "endTimeFormatted": "00:01:01.620", + "speaker": "Travis", + "body": "Nuzum." + }, + { + "startTime": 65.52, + "startTimeFormatted": "00:01:05.520", + "endTime": 67.73, + "endTimeFormatted": "00:01:07.730", + "speaker": "Eric", + "body": "So my name is Eric Nuzum and," + }, + { + "startTime": 68.09, + "startTimeFormatted": "00:01:08.090", + "endTime": 70.73, + "endTimeFormatted": "00:01:10.730", + "speaker": "Eric", + "body": "uh, I, um, spent most of the" + }, + { + "startTime": 70.731, + "startTimeFormatted": "00:01:10.731", + "endTime": 71.69, + "endTimeFormatted": "00:01:11.690", + "speaker": "Eric", + "body": "early part of my career in" + }, + { + "startTime": 71.691, + "startTimeFormatted": "00:01:11.691", + "endTime": 73.43, + "endTimeFormatted": "00:01:13.430", + "speaker": "Eric", + "body": "broadcast and eventually worked" + }, + { + "startTime": 73.431, + "startTimeFormatted": "00:01:13.431", + "endTime": 75.68, + "endTimeFormatted": "00:01:15.680", + "speaker": "Eric", + "body": "my way up to working at NPR. And" + }, + { + "startTime": 75.681, + "startTimeFormatted": "00:01:15.681", + "endTime": 77.57, + "endTimeFormatted": "00:01:17.570", + "speaker": "Eric", + "body": "I started there in 2004 and" + }, + { + "startTime": 77.99, + "startTimeFormatted": "00:01:17.990", + "endTime": 78.95, + "endTimeFormatted": "00:01:18.950", + "speaker": "Eric", + "body": "listening less than a year" + }, + { + "startTime": 78.951, + "startTimeFormatted": "00:01:18.951", + "endTime": 82.13, + "endTimeFormatted": "00:01:22.130", + "speaker": "Eric", + "body": "later, I was in the, um, the" + }, + { + "startTime": 82.131, + "startTimeFormatted": "00:01:22.131", + "endTime": 83.75, + "endTimeFormatted": "00:01:23.750", + "speaker": "Eric", + "body": "cafeteria line at NPR and the" + }, + { + "startTime": 83.751, + "startTimeFormatted": "00:01:23.751", + "endTime": 85.46, + "endTimeFormatted": "00:01:25.460", + "speaker": "Eric", + "body": "guy who was our COO at the time" + }, + { + "startTime": 85.85, + "startTimeFormatted": "00:01:25.850", + "endTime": 87.14, + "endTimeFormatted": "00:01:27.140", + "speaker": "Eric", + "body": "was behind me trying to make" + }, + { + "startTime": 87.141, + "startTimeFormatted": "00:01:27.141", + "endTime": 88.85, + "endTimeFormatted": "00:01:28.850", + "speaker": "Eric", + "body": "some kind of awkward chit-chat." + }, + { + "startTime": 89.45, + "startTimeFormatted": "00:01:29.450", + "endTime": 90.08, + "endTimeFormatted": "00:01:30.080", + "speaker": "Eric", + "body": "He says, well, what's" + }, + { + "startTime": 90.081, + "startTimeFormatted": "00:01:30.081", + "endTime": 90.98, + "endTimeFormatted": "00:01:30.980", + "speaker": "Eric", + "body": "interesting that you've seen" + }, + { + "startTime": 90.981, + "startTimeFormatted": "00:01:30.981", + "endTime": 91.88, + "endTimeFormatted": "00:01:31.880", + "speaker": "Eric", + "body": "lately. And I said, well," + }, + { + "startTime": 91.881, + "startTimeFormatted": "00:01:31.881", + "endTime": 93.32, + "endTimeFormatted": "00:01:33.320", + "speaker": "Eric", + "body": "there's this podcasting thing." + }, + { + "startTime": 93.321, + "startTimeFormatted": "00:01:33.321", + "endTime": 94.64, + "endTimeFormatted": "00:01:34.640", + "speaker": "Eric", + "body": "And I started explaining to him" + }, + { + "startTime": 94.641, + "startTimeFormatted": "00:01:34.641", + "endTime": 95.9, + "endTimeFormatted": "00:01:35.900", + "speaker": "Eric", + "body": "in the lunch line, just gotta" + }, + { + "startTime": 95.901, + "startTimeFormatted": "00:01:35.901", + "endTime": 97.88, + "endTimeFormatted": "00:01:37.880", + "speaker": "Eric", + "body": "make conversation. He's like," + }, + { + "startTime": 97.91, + "startTimeFormatted": "00:01:37.910", + "endTime": 100.34, + "endTimeFormatted": "00:01:40.340", + "speaker": "Eric", + "body": "Oh, come by and give me a little" + }, + { + "startTime": 100.341, + "startTimeFormatted": "00:01:40.341", + "endTime": 102.14, + "endTimeFormatted": "00:01:42.140", + "speaker": "Eric", + "body": "spiel on it. And so I came, I" + }, + { + "startTime": 102.141, + "startTimeFormatted": "00:01:42.141", + "endTime": 103.16, + "endTimeFormatted": "00:01:43.160", + "speaker": "Eric", + "body": "made an appointment, went and" + }, + { + "startTime": 103.161, + "startTimeFormatted": "00:01:43.161", + "endTime": 105.83, + "endTimeFormatted": "00:01:45.830", + "speaker": "Eric", + "body": "gave a spiel a couple of weeks" + }, + { + "startTime": 105.831, + "startTimeFormatted": "00:01:45.831", + "endTime": 107.09, + "endTimeFormatted": "00:01:47.090", + "speaker": "Eric", + "body": "later, he shows back up at my" + }, + { + "startTime": 107.091, + "startTimeFormatted": "00:01:47.091", + "endTime": 109.04, + "endTimeFormatted": "00:01:49.040", + "speaker": "Eric", + "body": "door and says, you have a team" + }, + { + "startTime": 109.041, + "startTimeFormatted": "00:01:49.041", + "endTime": 111.08, + "endTimeFormatted": "00:01:51.080", + "speaker": "Eric", + "body": "of eight and you have 12 weeks." + }, + { + "startTime": 111.53, + "startTimeFormatted": "00:01:51.530", + "endTime": 112.76, + "endTimeFormatted": "00:01:52.760", + "speaker": "Eric", + "body": "And at the end of that 12 weeks," + }, + { + "startTime": 112.761, + "startTimeFormatted": "00:01:52.761", + "endTime": 113.63, + "endTimeFormatted": "00:01:53.630", + "speaker": "Eric", + "body": "we want there to be NPR" + }, + { + "startTime": 113.631, + "startTimeFormatted": "00:01:53.631", + "endTime": 116.18, + "endTimeFormatted": "00:01:56.180", + "speaker": "Eric", + "body": "podcasts. I'm like, okay. And we" + }, + { + "startTime": 116.37, + "startTimeFormatted": "00:01:56.370", + "endTime": 117.26, + "endTimeFormatted": "00:01:57.260", + "speaker": "Eric", + "body": "actually delivered it a month." + }, + { + "startTime": 117.29, + "startTimeFormatted": "00:01:57.290", + "endTime": 119, + "endTimeFormatted": "00:01:59.000", + "speaker": "Eric", + "body": "We got an extra month. Uh, we" + }, + { + "startTime": 119.001, + "startTimeFormatted": "00:01:59.001", + "endTime": 120.2, + "endTimeFormatted": "00:02:00.200", + "speaker": "Eric", + "body": "delivered it. It was 32" + }, + { + "startTime": 120.201, + "startTimeFormatted": "00:02:00.201", + "endTime": 122.06, + "endTimeFormatted": "00:02:02.060", + "speaker": "Eric", + "body": "podcasts. And then for the" + }, + { + "startTime": 122.061, + "startTimeFormatted": "00:02:02.061", + "endTime": 123.2, + "endTimeFormatted": "00:02:03.200", + "speaker": "Eric", + "body": "following decade, I kind of" + }, + { + "startTime": 123.201, + "startTimeFormatted": "00:02:03.201", + "endTime": 124.7, + "endTimeFormatted": "00:02:04.700", + "speaker": "Eric", + "body": "remained kind of the editorial" + }, + { + "startTime": 124.701, + "startTimeFormatted": "00:02:04.701", + "endTime": 126.62, + "endTimeFormatted": "00:02:06.620", + "speaker": "Eric", + "body": "lead on NPR podcasts, both" + }, + { + "startTime": 127.07, + "startTimeFormatted": "00:02:07.070", + "endTime": 128.33, + "endTimeFormatted": "00:02:08.330", + "speaker": "Eric", + "body": "figuring out how to take in pair" + }, + { + "startTime": 128.331, + "startTimeFormatted": "00:02:08.331", + "endTime": 129.62, + "endTimeFormatted": "00:02:09.620", + "speaker": "Eric", + "body": "programming and have it thrive" + }, + { + "startTime": 129.621, + "startTimeFormatted": "00:02:09.621", + "endTime": 130.94, + "endTimeFormatted": "00:02:10.940", + "speaker": "Eric", + "body": "in the podcast world, sound" + }, + { + "startTime": 131.21, + "startTimeFormatted": "00:02:11.210", + "endTime": 133.79, + "endTimeFormatted": "00:02:13.790", + "speaker": "Eric", + "body": "authentic there and also making" + }, + { + "startTime": 133.791, + "startTimeFormatted": "00:02:13.791", + "endTime": 134.96, + "endTimeFormatted": "00:02:14.960", + "speaker": "Eric", + "body": "new things that were intended" + }, + { + "startTime": 135.2, + "startTimeFormatted": "00:02:15.200", + "endTime": 136.55, + "endTimeFormatted": "00:02:16.550", + "speaker": "Eric", + "body": "originally to be in that space" + }, + { + "startTime": 136.97, + "startTimeFormatted": "00:02:16.970", + "endTime": 139, + "endTimeFormatted": "00:02:19.000", + "speaker": "Eric", + "body": "and did that for a decade. And" + }, + { + "startTime": 139.001, + "startTimeFormatted": "00:02:19.001", + "endTime": 140.75, + "endTimeFormatted": "00:02:20.750", + "speaker": "Eric", + "body": "then a couple of years ago," + }, + { + "startTime": 140.78, + "startTimeFormatted": "00:02:20.780", + "endTime": 141.8, + "endTimeFormatted": "00:02:21.800", + "speaker": "Eric", + "body": "probably four and a half years" + }, + { + "startTime": 141.801, + "startTimeFormatted": "00:02:21.801", + "endTime": 143.57, + "endTimeFormatted": "00:02:23.570", + "speaker": "Eric", + "body": "or so ago, I left NPR and went" + }, + { + "startTime": 143.571, + "startTimeFormatted": "00:02:23.571", + "endTime": 144.83, + "endTimeFormatted": "00:02:24.830", + "speaker": "Eric", + "body": "to Ottawa, which is part of the" + }, + { + "startTime": 144.831, + "startTimeFormatted": "00:02:24.831", + "endTime": 147.68, + "endTimeFormatted": "00:02:27.680", + "speaker": "Eric", + "body": "Amazon. Uh, you, you extended" + }, + { + "startTime": 147.681, + "startTimeFormatted": "00:02:27.681", + "endTime": 150.38, + "endTimeFormatted": "00:02:30.380", + "speaker": "Eric", + "body": "universe and, um, uh, created" + }, + { + "startTime": 150.381, + "startTimeFormatted": "00:02:30.381", + "endTime": 151.67, + "endTimeFormatted": "00:02:31.670", + "speaker": "Eric", + "body": "original the original content" + }, + { + "startTime": 151.671, + "startTimeFormatted": "00:02:31.671", + "endTime": 154.82, + "endTimeFormatted": "00:02:34.820", + "speaker": "Eric", + "body": "team there. Uh, and then about a" + }, + { + "startTime": 154.821, + "startTimeFormatted": "00:02:34.821", + "endTime": 156.56, + "endTimeFormatted": "00:02:36.560", + "speaker": "Eric", + "body": "year or so ago, uh, one of my" + }, + { + "startTime": 156.561, + "startTimeFormatted": "00:02:36.561", + "endTime": 158.87, + "endTimeFormatted": "00:02:38.870", + "speaker": "Eric", + "body": "friends and I left and started" + }, + { + "startTime": 158.871, + "startTimeFormatted": "00:02:38.871", + "endTime": 160.52, + "endTimeFormatted": "00:02:40.520", + "speaker": "Eric", + "body": "magnificent noise, which is a," + }, + { + "startTime": 160.79, + "startTimeFormatted": "00:02:40.790", + "endTime": 163.04, + "endTimeFormatted": "00:02:43.040", + "speaker": "Eric", + "body": "uh, um, which is a podcast" + }, + { + "startTime": 163.041, + "startTimeFormatted": "00:02:43.041", + "endTime": 164.06, + "endTimeFormatted": "00:02:44.060", + "speaker": "Eric", + "body": "production and consultation" + }, + { + "startTime": 164.061, + "startTimeFormatted": "00:02:44.061", + "endTime": 165.47, + "endTimeFormatted": "00:02:45.470", + "speaker": "Eric", + "body": "company, uh, based in New York." + }, + { + "startTime": 166.07, + "startTimeFormatted": "00:02:46.070", + "endTime": 166.07, + "endTimeFormatted": "00:02:46.070", + "speaker": "Eric", + "body": "And," + }, + { + "startTime": 166.25, + "startTimeFormatted": "00:02:46.250", + "endTime": 167.81, + "endTimeFormatted": "00:02:47.810", + "speaker": "Travis", + "body": "And so now you have, uh, your" + }, + { + "startTime": 167.811, + "startTimeFormatted": "00:02:47.811", + "endTime": 170.51, + "endTimeFormatted": "00:02:50.510", + "speaker": "Travis", + "body": "first podcast related book, um," + }, + { + "startTime": 170.53, + "startTimeFormatted": "00:02:50.530", + "endTime": 172.88, + "endTimeFormatted": "00:02:52.880", + "speaker": "Travis", + "body": "make noise. Yeah. And I love as" + }, + { + "startTime": 172.881, + "startTimeFormatted": "00:02:52.881", + "endTime": 174.56, + "endTimeFormatted": "00:02:54.560", + "speaker": "Travis", + "body": "I was going through and reading" + }, + { + "startTime": 174.561, + "startTimeFormatted": "00:02:54.561", + "endTime": 176.63, + "endTimeFormatted": "00:02:56.630", + "speaker": "Travis", + "body": "it. And, and specifically one of" + }, + { + "startTime": 176.631, + "startTimeFormatted": "00:02:56.631", + "endTime": 178.25, + "endTimeFormatted": "00:02:58.250", + "speaker": "Travis", + "body": "the things that you harp on, uh," + }, + { + "startTime": 178.251, + "startTimeFormatted": "00:02:58.251", + "endTime": 179.38, + "endTimeFormatted": "00:02:59.380", + "speaker": "Travis", + "body": "which we'll dive into about the" + }, + { + "startTime": 179.381, + "startTimeFormatted": "00:02:59.381", + "endTime": 181.24, + "endTimeFormatted": "00:03:01.240", + "speaker": "Travis", + "body": "10 word description, I was like," + }, + { + "startTime": 181.241, + "startTimeFormatted": "00:03:01.241", + "endTime": 182.29, + "endTimeFormatted": "00:03:02.290", + "speaker": "Travis", + "body": "let me go back to the front" + }, + { + "startTime": 182.291, + "startTimeFormatted": "00:03:02.291", + "endTime": 184.63, + "endTimeFormatted": "00:03:04.630", + "speaker": "Travis", + "body": "cover and see if he followed his" + }, + { + "startTime": 184.631, + "startTimeFormatted": "00:03:04.631", + "endTime": 186.82, + "endTimeFormatted": "00:03:06.820", + "speaker": "Travis", + "body": "own rules. He did even got an" + }, + { + "startTime": 186.821, + "startTimeFormatted": "00:03:06.821", + "endTime": 188.53, + "endTimeFormatted": "00:03:08.530", + "speaker": "Travis", + "body": "extra word, despair, a creative" + }, + { + "startTime": 188.59, + "startTimeFormatted": "00:03:08.590", + "endTime": 189.79, + "endTimeFormatted": "00:03:09.790", + "speaker": "Travis", + "body": "guide to podcasting and great" + }, + { + "startTime": 189.791, + "startTimeFormatted": "00:03:09.791", + "endTime": 192.13, + "endTimeFormatted": "00:03:12.130", + "speaker": "Travis", + "body": "audio storytelling. Um, so why" + }, + { + "startTime": 192.131, + "startTimeFormatted": "00:03:12.131", + "endTime": 194.74, + "endTimeFormatted": "00:03:14.740", + "speaker": "Travis", + "body": "did you feel like now was the" + }, + { + "startTime": 194.741, + "startTimeFormatted": "00:03:14.741", + "endTime": 197.08, + "endTimeFormatted": "00:03:17.080", + "speaker": "Travis", + "body": "time to publish this book that" + }, + { + "startTime": 197.35, + "startTimeFormatted": "00:03:17.350", + "endTime": 198.55, + "endTimeFormatted": "00:03:18.550", + "speaker": "Travis", + "body": "you've been in podcasting" + }, + { + "startTime": 198.551, + "startTimeFormatted": "00:03:18.551", + "endTime": 200.56, + "endTimeFormatted": "00:03:20.560", + "speaker": "Travis", + "body": "basically since the beginning" + }, + { + "startTime": 200.77, + "startTimeFormatted": "00:03:20.770", + "endTime": 201.91, + "endTimeFormatted": "00:03:21.910", + "speaker": "Travis", + "body": "longer than just about anyone" + }, + { + "startTime": 201.911, + "startTimeFormatted": "00:03:21.911", + "endTime": 203.74, + "endTimeFormatted": "00:03:23.740", + "speaker": "Travis", + "body": "listening to this episode? Uh," + }, + { + "startTime": 203.8, + "startTimeFormatted": "00:03:23.800", + "endTime": 205, + "endTimeFormatted": "00:03:25.000", + "speaker": "Travis", + "body": "so why did you feel like now is" + }, + { + "startTime": 205.001, + "startTimeFormatted": "00:03:25.001", + "endTime": 207.37, + "endTimeFormatted": "00:03:27.370", + "speaker": "Travis", + "body": "a really good time to, to bring" + }, + { + "startTime": 207.371, + "startTimeFormatted": "00:03:27.371", + "endTime": 208.63, + "endTimeFormatted": "00:03:28.630", + "speaker": "Travis", + "body": "this book out into the world and" + }, + { + "startTime": 208.631, + "startTimeFormatted": "00:03:28.631", + "endTime": 209.74, + "endTimeFormatted": "00:03:29.740", + "speaker": "Travis", + "body": "step into, uh, promote it?" + }, + { + "startTime": 210.63, + "startTimeFormatted": "00:03:30.630", + "endTime": 211.86, + "endTimeFormatted": "00:03:31.860", + "speaker": "Eric", + "body": "That's a really good question" + }, + { + "startTime": 211.89, + "startTimeFormatted": "00:03:31.890", + "endTime": 213.21, + "endTimeFormatted": "00:03:33.210", + "speaker": "Eric", + "body": "because I think there's two" + }, + { + "startTime": 213.211, + "startTimeFormatted": "00:03:33.211", + "endTime": 214.89, + "endTimeFormatted": "00:03:34.890", + "speaker": "Eric", + "body": "factors. One, I think we are now" + }, + { + "startTime": 214.891, + "startTimeFormatted": "00:03:34.891", + "endTime": 216.48, + "endTimeFormatted": "00:03:36.480", + "speaker": "Eric", + "body": "at the point where there's such" + }, + { + "startTime": 216.51, + "startTimeFormatted": "00:03:36.510", + "endTime": 217.89, + "endTimeFormatted": "00:03:37.890", + "speaker": "Eric", + "body": "a groundswell of interest in" + }, + { + "startTime": 217.891, + "startTimeFormatted": "00:03:37.891", + "endTime": 220.02, + "endTimeFormatted": "00:03:40.020", + "speaker": "Eric", + "body": "podcasting that, that having a" + }, + { + "startTime": 220.021, + "startTimeFormatted": "00:03:40.021", + "endTime": 222.24, + "endTimeFormatted": "00:03:42.240", + "speaker": "Eric", + "body": "book about podcast creation," + }, + { + "startTime": 222.241, + "startTimeFormatted": "00:03:42.241", + "endTime": 223.92, + "endTimeFormatted": "00:03:43.920", + "speaker": "Eric", + "body": "that isn't like tips for" + }, + { + "startTime": 223.921, + "startTimeFormatted": "00:03:43.921", + "endTime": 225.51, + "endTimeFormatted": "00:03:45.510", + "speaker": "Eric", + "body": "equipment to buy or how to make" + }, + { + "startTime": 225.511, + "startTimeFormatted": "00:03:45.511", + "endTime": 226.44, + "endTimeFormatted": "00:03:46.440", + "speaker": "Eric", + "body": "money at it, but it's really" + }, + { + "startTime": 226.441, + "startTimeFormatted": "00:03:46.441", + "endTime": 228, + "endTimeFormatted": "00:03:48.000", + "speaker": "Eric", + "body": "focused on how to do something." + }, + { + "startTime": 228.001, + "startTimeFormatted": "00:03:48.001", + "endTime": 230.28, + "endTimeFormatted": "00:03:50.280", + "speaker": "Eric", + "body": "Well, that's a commercially" + }, + { + "startTime": 230.281, + "startTimeFormatted": "00:03:50.281", + "endTime": 232.2, + "endTimeFormatted": "00:03:52.200", + "speaker": "Eric", + "body": "viable product now. And I don't" + }, + { + "startTime": 232.201, + "startTimeFormatted": "00:03:52.201", + "endTime": 233.19, + "endTimeFormatted": "00:03:53.190", + "speaker": "Eric", + "body": "think even a couple of years" + }, + { + "startTime": 233.191, + "startTimeFormatted": "00:03:53.191", + "endTime": 234.96, + "endTimeFormatted": "00:03:54.960", + "speaker": "Eric", + "body": "ago, it was when I had been" + }, + { + "startTime": 234.961, + "startTimeFormatted": "00:03:54.961", + "endTime": 235.92, + "endTimeFormatted": "00:03:55.920", + "speaker": "Eric", + "body": "approached a couple of times" + }, + { + "startTime": 235.921, + "startTimeFormatted": "00:03:55.921", + "endTime": 237.21, + "endTimeFormatted": "00:03:57.210", + "speaker": "Eric", + "body": "about doing this over the years." + }, + { + "startTime": 237.211, + "startTimeFormatted": "00:03:57.211", + "endTime": 238.59, + "endTimeFormatted": "00:03:58.590", + "speaker": "Eric", + "body": "And I'm like, I just don't think" + }, + { + "startTime": 238.68, + "startTimeFormatted": "00:03:58.680", + "endTime": 239.37, + "endTimeFormatted": "00:03:59.370", + "speaker": "Eric", + "body": "it's, I think it's a niche" + }, + { + "startTime": 239.371, + "startTimeFormatted": "00:03:59.371", + "endTime": 240.36, + "endTimeFormatted": "00:04:00.360", + "speaker": "Eric", + "body": "product. I don't think it's" + }, + { + "startTime": 240.87, + "startTimeFormatted": "00:04:00.870", + "endTime": 241.71, + "endTimeFormatted": "00:04:01.710", + "speaker": "Eric", + "body": "going to be worth my time to" + }, + { + "startTime": 241.711, + "startTimeFormatted": "00:04:01.711", + "endTime": 242.88, + "endTimeFormatted": "00:04:02.880", + "speaker": "Eric", + "body": "spend time writing that book." + }, + { + "startTime": 243.36, + "startTimeFormatted": "00:04:03.360", + "endTime": 246.18, + "endTimeFormatted": "00:04:06.180", + "speaker": "Eric", + "body": "And, um, the last time I was" + }, + { + "startTime": 246.181, + "startTimeFormatted": "00:04:06.181", + "endTime": 247.95, + "endTimeFormatted": "00:04:07.950", + "speaker": "Eric", + "body": "asked about it, I said, yes, and" + }, + { + "startTime": 247.951, + "startTimeFormatted": "00:04:07.951", + "endTime": 249.21, + "endTimeFormatted": "00:04:09.210", + "speaker": "Eric", + "body": "was kind of shocked at the" + }, + { + "startTime": 249.211, + "startTimeFormatted": "00:04:09.211", + "endTime": 250.71, + "endTimeFormatted": "00:04:10.710", + "speaker": "Eric", + "body": "reaction. And you know, one of" + }, + { + "startTime": 250.711, + "startTimeFormatted": "00:04:10.711", + "endTime": 251.94, + "endTimeFormatted": "00:04:11.940", + "speaker": "Eric", + "body": "the great things about seeing" + }, + { + "startTime": 251.941, + "startTimeFormatted": "00:04:11.941", + "endTime": 254.85, + "endTimeFormatted": "00:04:14.850", + "speaker": "Eric", + "body": "podcasting evolve is watching at" + }, + { + "startTime": 254.851, + "startTimeFormatted": "00:04:14.851", + "endTime": 258.24, + "endTimeFormatted": "00:04:18.240", + "speaker": "Eric", + "body": "points like this, um, that this" + }, + { + "startTime": 258.241, + "startTimeFormatted": "00:04:18.241", + "endTime": 260.88, + "endTimeFormatted": "00:04:20.880", + "speaker": "Eric", + "body": "is, you know, a profession and a" + }, + { + "startTime": 260.881, + "startTimeFormatted": "00:04:20.881", + "endTime": 263.49, + "endTimeFormatted": "00:04:23.490", + "speaker": "Eric", + "body": "vocation and a hobby, and there" + }, + { + "startTime": 263.491, + "startTimeFormatted": "00:04:23.491", + "endTime": 265.89, + "endTimeFormatted": "00:04:25.890", + "speaker": "Eric", + "body": "are tools for it with a book or" + }, + { + "startTime": 265.891, + "startTimeFormatted": "00:04:25.891", + "endTime": 268.11, + "endTimeFormatted": "00:04:28.110", + "speaker": "Eric", + "body": "microphones or recording units" + }, + { + "startTime": 268.111, + "startTimeFormatted": "00:04:28.111", + "endTime": 269.91, + "endTimeFormatted": "00:04:29.910", + "speaker": "Eric", + "body": "or things that were literally" + }, + { + "startTime": 269.911, + "startTimeFormatted": "00:04:29.911", + "endTime": 271.83, + "endTimeFormatted": "00:04:31.830", + "speaker": "Eric", + "body": "unimaginable four or five years" + }, + { + "startTime": 271.831, + "startTimeFormatted": "00:04:31.831", + "endTime": 274.08, + "endTimeFormatted": "00:04:34.080", + "speaker": "Eric", + "body": "ago. Now I'm a, I'm a big fan of" + }, + { + "startTime": 274.081, + "startTimeFormatted": "00:04:34.081", + "endTime": 275.61, + "endTimeFormatted": "00:04:35.610", + "speaker": "Eric", + "body": "the Roadcaster pro, which is a" + }, + { + "startTime": 275.611, + "startTimeFormatted": "00:04:35.611", + "endTime": 277.08, + "endTimeFormatted": "00:04:37.080", + "speaker": "Eric", + "body": "little desktop unit though. I" + }, + { + "startTime": 277.081, + "startTimeFormatted": "00:04:37.081", + "endTime": 279.15, + "endTimeFormatted": "00:04:39.150", + "speaker": "Eric", + "body": "advocate a lot of podcasters buy" + }, + { + "startTime": 279.151, + "startTimeFormatted": "00:04:39.151", + "endTime": 281.25, + "endTimeFormatted": "00:04:41.250", + "speaker": "Eric", + "body": "because it's$600 containing" + }, + { + "startTime": 281.251, + "startTimeFormatted": "00:04:41.251", + "endTime": 282.54, + "endTimeFormatted": "00:04:42.540", + "speaker": "Eric", + "body": "technology that will cost you" + }, + { + "startTime": 282.541, + "startTimeFormatted": "00:04:42.541", + "endTime": 285.57, + "endTimeFormatted": "00:04:45.570", + "speaker": "Eric", + "body": "10,$15,000 to duplicate four or" + }, + { + "startTime": 285.571, + "startTimeFormatted": "00:04:45.571", + "endTime": 287.04, + "endTimeFormatted": "00:04:47.040", + "speaker": "Eric", + "body": "five years ago. I mean, that to" + }, + { + "startTime": 287.041, + "startTimeFormatted": "00:04:47.041", + "endTime": 288.66, + "endTimeFormatted": "00:04:48.660", + "speaker": "Eric", + "body": "me is exciting and amazing. So" + }, + { + "startTime": 289.08, + "startTimeFormatted": "00:04:49.080", + "endTime": 290.07, + "endTimeFormatted": "00:04:50.070", + "speaker": "Eric", + "body": "first I think we've kind of" + }, + { + "startTime": 290.13, + "startTimeFormatted": "00:04:50.130", + "endTime": 291.96, + "endTimeFormatted": "00:04:51.960", + "speaker": "Eric", + "body": "matured into being an industry" + }, + { + "startTime": 291.961, + "startTimeFormatted": "00:04:51.961", + "endTime": 293.82, + "endTimeFormatted": "00:04:53.820", + "speaker": "Eric", + "body": "now that can support that kind" + }, + { + "startTime": 293.821, + "startTimeFormatted": "00:04:53.821", + "endTime": 296.86, + "endTimeFormatted": "00:04:56.860", + "speaker": "Eric", + "body": "of thinking and a product like," + }, + { + "startTime": 296.94, + "startTimeFormatted": "00:04:56.940", + "endTime": 298.68, + "endTimeFormatted": "00:04:58.680", + "speaker": "Eric", + "body": "like a book. And the second" + }, + { + "startTime": 298.681, + "startTimeFormatted": "00:04:58.681", + "endTime": 302.25, + "endTimeFormatted": "00:05:02.250", + "speaker": "Eric", + "body": "reason is, um, there's so many" + }, + { + "startTime": 302.251, + "startTimeFormatted": "00:05:02.251", + "endTime": 304.95, + "endTimeFormatted": "00:05:04.950", + "speaker": "Eric", + "body": "new podcasts and, and the thing" + }, + { + "startTime": 304.951, + "startTimeFormatted": "00:05:04.951", + "endTime": 307.68, + "endTimeFormatted": "00:05:07.680", + "speaker": "Eric", + "body": "that surprises me is someone who" + }, + { + "startTime": 307.71, + "startTimeFormatted": "00:05:07.710", + "endTime": 309.54, + "endTimeFormatted": "00:05:09.540", + "speaker": "Eric", + "body": "is a consultant for a lot of" + }, + { + "startTime": 309.69, + "startTimeFormatted": "00:05:09.690", + "endTime": 311.78, + "endTimeFormatted": "00:05:11.780", + "speaker": "Eric", + "body": "people, individuals and I, I" + }, + { + "startTime": 311.79, + "startTimeFormatted": "00:05:11.790", + "endTime": 312.84, + "endTimeFormatted": "00:05:12.840", + "speaker": "Eric", + "body": "work with people who are sitting" + }, + { + "startTime": 312.841, + "startTimeFormatted": "00:05:12.841", + "endTime": 313.62, + "endTimeFormatted": "00:05:13.620", + "speaker": "Eric", + "body": "around their kitchen table," + }, + { + "startTime": 313.621, + "startTimeFormatted": "00:05:13.621", + "endTime": 315.27, + "endTimeFormatted": "00:05:15.270", + "speaker": "Eric", + "body": "trying to figure things out up" + }, + { + "startTime": 315.271, + "startTimeFormatted": "00:05:15.271", + "endTime": 316.44, + "endTimeFormatted": "00:05:16.440", + "speaker": "Eric", + "body": "to some of the largest media" + }, + { + "startTime": 316.441, + "startTimeFormatted": "00:05:16.441", + "endTime": 318.51, + "endTimeFormatted": "00:05:18.510", + "speaker": "Eric", + "body": "companies in the world and the" + }, + { + "startTime": 318.511, + "startTimeFormatted": "00:05:18.511", + "endTime": 320.1, + "endTimeFormatted": "00:05:20.100", + "speaker": "Eric", + "body": "conversations they have are" + }, + { + "startTime": 320.101, + "startTimeFormatted": "00:05:20.101", + "endTime": 321.84, + "endTimeFormatted": "00:05:21.840", + "speaker": "Eric", + "body": "almost identical, even though" + }, + { + "startTime": 321.841, + "startTimeFormatted": "00:05:21.841", + "endTime": 324.27, + "endTimeFormatted": "00:05:24.270", + "speaker": "Eric", + "body": "you have many more dollars, much" + }, + { + "startTime": 324.3, + "startTimeFormatted": "00:05:24.300", + "endTime": 327.42, + "endTimeFormatted": "00:05:27.420", + "speaker": "Eric", + "body": "bigger names and, um, uh, you" + }, + { + "startTime": 327.421, + "startTimeFormatted": "00:05:27.421", + "endTime": 329.58, + "endTimeFormatted": "00:05:29.580", + "speaker": "Eric", + "body": "know, uh, resources and crazy" + }, + { + "startTime": 329.581, + "startTimeFormatted": "00:05:29.581", + "endTime": 330.99, + "endTimeFormatted": "00:05:30.990", + "speaker": "Eric", + "body": "resources compared to people who" + }, + { + "startTime": 330.991, + "startTimeFormatted": "00:05:30.991", + "endTime": 331.8, + "endTimeFormatted": "00:05:31.800", + "speaker": "Eric", + "body": "are trying to figure out how to" + }, + { + "startTime": 331.801, + "startTimeFormatted": "00:05:31.801", + "endTime": 333.51, + "endTimeFormatted": "00:05:33.510", + "speaker": "Eric", + "body": "do this with their friend, their" + }, + { + "startTime": 333.54, + "startTimeFormatted": "00:05:33.540", + "endTime": 335.04, + "endTimeFormatted": "00:05:35.040", + "speaker": "Eric", + "body": "obstacles are often the same" + }, + { + "startTime": 335.22, + "startTimeFormatted": "00:05:35.220", + "endTime": 337.29, + "endTimeFormatted": "00:05:37.290", + "speaker": "Eric", + "body": "they're kind of concerns or, or," + }, + { + "startTime": 337.291, + "startTimeFormatted": "00:05:37.291", + "endTime": 339, + "endTimeFormatted": "00:05:39.000", + "speaker": "Eric", + "body": "or, or fears of how to get into" + }, + { + "startTime": 339.001, + "startTimeFormatted": "00:05:39.001", + "endTime": 340.74, + "endTimeFormatted": "00:05:40.740", + "speaker": "Eric", + "body": "this. And they get stuck on the" + }, + { + "startTime": 340.741, + "startTimeFormatted": "00:05:40.741", + "endTime": 343.17, + "endTimeFormatted": "00:05:43.170", + "speaker": "Eric", + "body": "same things too. And so when I" + }, + { + "startTime": 343.171, + "startTimeFormatted": "00:05:43.171", + "endTime": 345.12, + "endTimeFormatted": "00:05:45.120", + "speaker": "Eric", + "body": "started to realize how universal" + }, + { + "startTime": 345.66, + "startTimeFormatted": "00:05:45.660", + "endTime": 347.4, + "endTimeFormatted": "00:05:47.400", + "speaker": "Eric", + "body": "a lot of the problems are that" + }, + { + "startTime": 347.43, + "startTimeFormatted": "00:05:47.430", + "endTime": 348.81, + "endTimeFormatted": "00:05:48.810", + "speaker": "Eric", + "body": "prevent people from being able" + }, + { + "startTime": 348.811, + "startTimeFormatted": "00:05:48.811", + "endTime": 350.01, + "endTimeFormatted": "00:05:50.010", + "speaker": "Eric", + "body": "to achieve what they want to do." + }, + { + "startTime": 350.82, + "startTimeFormatted": "00:05:50.820", + "endTime": 351.99, + "endTimeFormatted": "00:05:51.990", + "speaker": "Eric", + "body": "Um, I like there's, there's" + }, + { + "startTime": 352.05, + "startTimeFormatted": "00:05:52.050", + "endTime": 353.22, + "endTimeFormatted": "00:05:53.220", + "speaker": "Eric", + "body": "solutions to that. I've" + }, + { + "startTime": 353.221, + "startTimeFormatted": "00:05:53.221", + "endTime": 354.15, + "endTimeFormatted": "00:05:54.150", + "speaker": "Eric", + "body": "struggled through this a lot" + }, + { + "startTime": 354.151, + "startTimeFormatted": "00:05:54.151", + "endTime": 357.29, + "endTimeFormatted": "00:05:57.290", + "speaker": "Eric", + "body": "myself. So I just, and I was" + }, + { + "startTime": 357.291, + "startTimeFormatted": "00:05:57.291", + "endTime": 358.4, + "endTimeFormatted": "00:05:58.400", + "speaker": "Eric", + "body": "also worried when, when I was" + }, + { + "startTime": 358.401, + "startTimeFormatted": "00:05:58.401", + "endTime": 359.93, + "endTimeFormatted": "00:05:59.930", + "speaker": "Eric", + "body": "first asked about this book that" + }, + { + "startTime": 359.931, + "startTimeFormatted": "00:05:59.931", + "endTime": 361.31, + "endTimeFormatted": "00:06:01.310", + "speaker": "Eric", + "body": "I could write about a chapter" + }, + { + "startTime": 361.45, + "startTimeFormatted": "00:06:01.450", + "endTime": 362.27, + "endTimeFormatted": "00:06:02.270", + "speaker": "Eric", + "body": "and about that would be about" + }, + { + "startTime": 362.271, + "startTimeFormatted": "00:06:02.271", + "endTime": 365.33, + "endTimeFormatted": "00:06:05.330", + "speaker": "Eric", + "body": "it. And so I had a couple of" + }, + { + "startTime": 365.331, + "startTimeFormatted": "00:06:05.331", + "endTime": 366.62, + "endTimeFormatted": "00:06:06.620", + "speaker": "Eric", + "body": "days off, for some reason, I sat" + }, + { + "startTime": 366.621, + "startTimeFormatted": "00:06:06.621", + "endTime": 367.25, + "endTimeFormatted": "00:06:07.250", + "speaker": "Eric", + "body": "down and said, okay, I'm just" + }, + { + "startTime": 367.251, + "startTimeFormatted": "00:06:07.251", + "endTime": 368.87, + "endTimeFormatted": "00:06:08.870", + "speaker": "Eric", + "body": "going to try. I didn't even say" + }, + { + "startTime": 368.871, + "startTimeFormatted": "00:06:08.871", + "endTime": 369.68, + "endTimeFormatted": "00:06:09.680", + "speaker": "Eric", + "body": "yes to write in the book. I'm" + }, + { + "startTime": 369.681, + "startTimeFormatted": "00:06:09.681", + "endTime": 370.52, + "endTimeFormatted": "00:06:10.520", + "speaker": "Eric", + "body": "just going to try to write a" + }, + { + "startTime": 370.521, + "startTimeFormatted": "00:06:10.521", + "endTime": 372.38, + "endTimeFormatted": "00:06:12.380", + "speaker": "Eric", + "body": "chapter. And I sat down on a" + }, + { + "startTime": 372.381, + "startTimeFormatted": "00:06:12.381", + "endTime": 373.64, + "endTimeFormatted": "00:06:13.640", + "speaker": "Eric", + "body": "thought about what frustrates" + }, + { + "startTime": 373.641, + "startTimeFormatted": "00:06:13.641", + "endTime": 376.13, + "endTimeFormatted": "00:06:16.130", + "speaker": "Eric", + "body": "people and I just started. And" + }, + { + "startTime": 376.131, + "startTimeFormatted": "00:06:16.131", + "endTime": 377.63, + "endTimeFormatted": "00:06:17.630", + "speaker": "Eric", + "body": "it became very clear to me that" + }, + { + "startTime": 377.99, + "startTimeFormatted": "00:06:17.990", + "endTime": 379.16, + "endTimeFormatted": "00:06:19.160", + "speaker": "Eric", + "body": "there was something to be said" + }, + { + "startTime": 379.161, + "startTimeFormatted": "00:06:19.161", + "endTime": 381.02, + "endTimeFormatted": "00:06:21.020", + "speaker": "Eric", + "body": "to an increasingly growing" + }, + { + "startTime": 381.021, + "startTimeFormatted": "00:06:21.021", + "endTime": 381.86, + "endTimeFormatted": "00:06:21.860", + "speaker": "Eric", + "body": "community of people." + }, + { + "startTime": 382.57, + "startTimeFormatted": "00:06:22.570", + "endTime": 383.68, + "endTimeFormatted": "00:06:23.680", + "speaker": "Travis", + "body": "Well, and what I appreciate" + }, + { + "startTime": 383.681, + "startTimeFormatted": "00:06:23.681", + "endTime": 385.69, + "endTimeFormatted": "00:06:25.690", + "speaker": "Travis", + "body": "about the angle that you took" + }, + { + "startTime": 385.691, + "startTimeFormatted": "00:06:25.691", + "endTime": 388.48, + "endTimeFormatted": "00:06:28.480", + "speaker": "Travis", + "body": "with the book is that it's not," + }, + { + "startTime": 388.9, + "startTimeFormatted": "00:06:28.900", + "endTime": 390.88, + "endTimeFormatted": "00:06:30.880", + "speaker": "Travis", + "body": "it isn't, it, isn't a book for" + }, + { + "startTime": 390.881, + "startTimeFormatted": "00:06:30.881", + "endTime": 392.98, + "endTimeFormatted": "00:06:32.980", + "speaker": "Travis", + "body": "beginner podcasters in the sense" + }, + { + "startTime": 392.981, + "startTimeFormatted": "00:06:32.981", + "endTime": 393.7, + "endTimeFormatted": "00:06:33.700", + "speaker": "Travis", + "body": "that if you're just getting" + }, + { + "startTime": 393.701, + "startTimeFormatted": "00:06:33.701", + "endTime": 394.96, + "endTimeFormatted": "00:06:34.960", + "speaker": "Travis", + "body": "started, it's a very valuable" + }, + { + "startTime": 394.961, + "startTimeFormatted": "00:06:34.961", + "endTime": 396.34, + "endTimeFormatted": "00:06:36.340", + "speaker": "Travis", + "body": "resource to help you avoid some" + }, + { + "startTime": 396.341, + "startTimeFormatted": "00:06:36.341", + "endTime": 398.83, + "endTimeFormatted": "00:06:38.830", + "speaker": "Travis", + "body": "of those early mistakes, classic" + }, + { + "startTime": 398.831, + "startTimeFormatted": "00:06:38.831", + "endTime": 399.94, + "endTimeFormatted": "00:06:39.940", + "speaker": "Travis", + "body": "mistakes, rookie mistakes that" + }, + { + "startTime": 399.941, + "startTimeFormatted": "00:06:39.941", + "endTime": 402.07, + "endTimeFormatted": "00:06:42.070", + "speaker": "Travis", + "body": "you see, but it's also extremely" + }, + { + "startTime": 402.071, + "startTimeFormatted": "00:06:42.071", + "endTime": 404.23, + "endTimeFormatted": "00:06:44.230", + "speaker": "Travis", + "body": "challenging. Even for someone" + }, + { + "startTime": 404.231, + "startTimeFormatted": "00:06:44.231", + "endTime": 405.1, + "endTimeFormatted": "00:06:45.100", + "speaker": "Travis", + "body": "like myself, that's been in" + }, + { + "startTime": 405.101, + "startTimeFormatted": "00:06:45.101", + "endTime": 407.53, + "endTimeFormatted": "00:06:47.530", + "speaker": "Travis", + "body": "podcasting for years to like you" + }, + { + "startTime": 407.531, + "startTimeFormatted": "00:06:47.531", + "endTime": 408.55, + "endTimeFormatted": "00:06:48.550", + "speaker": "Travis", + "body": "start reading through this. And" + }, + { + "startTime": 408.551, + "startTimeFormatted": "00:06:48.551", + "endTime": 410.26, + "endTimeFormatted": "00:06:50.260", + "speaker": "Travis", + "body": "you're like, I don't do half the" + }, + { + "startTime": 410.27, + "startTimeFormatted": "00:06:50.270", + "endTime": 412.12, + "endTimeFormatted": "00:06:52.120", + "speaker": "Travis", + "body": "stuff that I even intellectually" + }, + { + "startTime": 412.121, + "startTimeFormatted": "00:06:52.121", + "endTime": 414.73, + "endTimeFormatted": "00:06:54.730", + "speaker": "Travis", + "body": "know I should be doing. Um, and" + }, + { + "startTime": 414.731, + "startTimeFormatted": "00:06:54.731", + "endTime": 416.38, + "endTimeFormatted": "00:06:56.380", + "speaker": "Travis", + "body": "one, one that I, I want to" + }, + { + "startTime": 416.83, + "startTimeFormatted": "00:06:56.830", + "endTime": 417.87, + "endTimeFormatted": "00:06:57.870", + "speaker": "Travis", + "body": "really spend some time with," + }, + { + "startTime": 418, + "startTimeFormatted": "00:06:58.000", + "endTime": 418.63, + "endTimeFormatted": "00:06:58.630", + "speaker": "Travis", + "body": "cause I feel like it would be" + }, + { + "startTime": 418.631, + "startTimeFormatted": "00:06:58.631", + "endTime": 419.83, + "endTimeFormatted": "00:06:59.830", + "speaker": "Travis", + "body": "the most valuable for people" + }, + { + "startTime": 419.831, + "startTimeFormatted": "00:06:59.831", + "endTime": 421.45, + "endTimeFormatted": "00:07:01.450", + "speaker": "Travis", + "body": "listening is the 10 word" + }, + { + "startTime": 421.451, + "startTimeFormatted": "00:07:01.451", + "endTime": 424.54, + "endTimeFormatted": "00:07:04.540", + "speaker": "Travis", + "body": "description, because one of my" + }, + { + "startTime": 425.02, + "startTimeFormatted": "00:07:05.020", + "endTime": 427.09, + "endTimeFormatted": "00:07:07.090", + "speaker": "Travis", + "body": "constant wrestling matches is" + }, + { + "startTime": 427.091, + "startTimeFormatted": "00:07:07.091", + "endTime": 429.73, + "endTimeFormatted": "00:07:09.730", + "speaker": "Travis", + "body": "that I, as a, as a creative" + }, + { + "startTime": 429.731, + "startTimeFormatted": "00:07:09.731", + "endTime": 431.32, + "endTimeFormatted": "00:07:11.320", + "speaker": "Travis", + "body": "outlet, want my podcast to be" + }, + { + "startTime": 431.321, + "startTimeFormatted": "00:07:11.321", + "endTime": 432.82, + "endTimeFormatted": "00:07:12.820", + "speaker": "Travis", + "body": "self-serving in certain ways," + }, + { + "startTime": 433.09, + "startTimeFormatted": "00:07:13.090", + "endTime": 433.87, + "endTimeFormatted": "00:07:13.870", + "speaker": "Travis", + "body": "right? Like I want to wake up" + }, + { + "startTime": 433.871, + "startTimeFormatted": "00:07:13.871", + "endTime": 434.86, + "endTimeFormatted": "00:07:14.860", + "speaker": "Travis", + "body": "excited about making new" + }, + { + "startTime": 434.861, + "startTimeFormatted": "00:07:14.861", + "endTime": 436.3, + "endTimeFormatted": "00:07:16.300", + "speaker": "Travis", + "body": "episodes. I want to, I want to" + }, + { + "startTime": 436.301, + "startTimeFormatted": "00:07:16.301", + "endTime": 437.62, + "endTimeFormatted": "00:07:17.620", + "speaker": "Travis", + "body": "expand my creativity. I want to" + }, + { + "startTime": 437.621, + "startTimeFormatted": "00:07:17.621", + "endTime": 438.79, + "endTimeFormatted": "00:07:18.790", + "speaker": "Travis", + "body": "try new things, experiment with" + }, + { + "startTime": 438.791, + "startTimeFormatted": "00:07:18.791", + "endTime": 441.01, + "endTimeFormatted": "00:07:21.010", + "speaker": "Travis", + "body": "new things. Um, but you do a" + }, + { + "startTime": 441.011, + "startTimeFormatted": "00:07:21.011", + "endTime": 442.6, + "endTimeFormatted": "00:07:22.600", + "speaker": "Travis", + "body": "really good job of kind of" + }, + { + "startTime": 442.601, + "startTimeFormatted": "00:07:22.601", + "endTime": 444.94, + "endTimeFormatted": "00:07:24.940", + "speaker": "Travis", + "body": "helping push against that and in" + }, + { + "startTime": 444.941, + "startTimeFormatted": "00:07:24.941", + "endTime": 446.38, + "endTimeFormatted": "00:07:26.380", + "speaker": "Travis", + "body": "a really good way, and the" + }, + { + "startTime": 446.381, + "startTimeFormatted": "00:07:26.381", + "endTime": 447.91, + "endTimeFormatted": "00:07:27.910", + "speaker": "Travis", + "body": "importance of staying focused" + }, + { + "startTime": 448.36, + "startTimeFormatted": "00:07:28.360", + "endTime": 450.46, + "endTimeFormatted": "00:07:30.460", + "speaker": "Travis", + "body": "and, and really being laser" + }, + { + "startTime": 450.461, + "startTimeFormatted": "00:07:30.461", + "endTime": 452.8, + "endTimeFormatted": "00:07:32.800", + "speaker": "Travis", + "body": "focused on why does your podcast" + }, + { + "startTime": 453.22, + "startTimeFormatted": "00:07:33.220", + "endTime": 454.27, + "endTimeFormatted": "00:07:34.270", + "speaker": "Travis", + "body": "exist for the expectations of" + }, + { + "startTime": 454.271, + "startTimeFormatted": "00:07:34.271", + "endTime": 456.31, + "endTimeFormatted": "00:07:36.310", + "speaker": "Travis", + "body": "your listeners, um, and making" + }, + { + "startTime": 456.311, + "startTimeFormatted": "00:07:36.311", + "endTime": 457.57, + "endTimeFormatted": "00:07:37.570", + "speaker": "Travis", + "body": "sure you over deliver on that." + }, + { + "startTime": 457.571, + "startTimeFormatted": "00:07:37.571", + "endTime": 459.19, + "endTimeFormatted": "00:07:39.190", + "speaker": "Travis", + "body": "So I'd love to just, maybe even" + }, + { + "startTime": 459.191, + "startTimeFormatted": "00:07:39.191", + "endTime": 459.94, + "endTimeFormatted": "00:07:39.940", + "speaker": "Travis", + "body": "if you want to just share the" + }, + { + "startTime": 459.941, + "startTimeFormatted": "00:07:39.941", + "endTime": 461.02, + "endTimeFormatted": "00:07:41.020", + "speaker": "Travis", + "body": "anecdote that you had about your" + }, + { + "startTime": 461.021, + "startTimeFormatted": "00:07:41.021", + "endTime": 462.82, + "endTimeFormatted": "00:07:42.820", + "speaker": "Travis", + "body": "yoga teacher and kind of going" + }, + { + "startTime": 462.821, + "startTimeFormatted": "00:07:42.821", + "endTime": 463.87, + "endTimeFormatted": "00:07:43.870", + "speaker": "Travis", + "body": "through that exercise. So I" + }, + { + "startTime": 463.871, + "startTimeFormatted": "00:07:43.871", + "endTime": 464.86, + "endTimeFormatted": "00:07:44.860", + "speaker": "Travis", + "body": "thought that was a good story." + }, + { + "startTime": 465.1, + "startTimeFormatted": "00:07:45.100", + "endTime": 466.15, + "endTimeFormatted": "00:07:46.150", + "speaker": "Travis", + "body": "And I think we'll flesh out the" + }, + { + "startTime": 466.151, + "startTimeFormatted": "00:07:46.151", + "endTime": 468.52, + "endTimeFormatted": "00:07:48.520", + "speaker": "Travis", + "body": "importance of having a really" + }, + { + "startTime": 468.521, + "startTimeFormatted": "00:07:48.521", + "endTime": 470.23, + "endTimeFormatted": "00:07:50.230", + "speaker": "Travis", + "body": "clear idea of what your podcast" + }, + { + "startTime": 470.231, + "startTimeFormatted": "00:07:50.231", + "endTime": 470.62, + "endTimeFormatted": "00:07:50.620", + "speaker": "Travis", + "body": "is about." + }, + { + "startTime": 471.13, + "startTimeFormatted": "00:07:51.130", + "endTime": 473.05, + "endTimeFormatted": "00:07:53.050", + "speaker": "Eric", + "body": "Yeah. I think a lot of my work" + }, + { + "startTime": 473.41, + "startTimeFormatted": "00:07:53.410", + "endTime": 475.03, + "endTimeFormatted": "00:07:55.030", + "speaker": "Eric", + "body": "is just in general, a lot of my" + }, + { + "startTime": 475.031, + "startTimeFormatted": "00:07:55.031", + "endTime": 476.62, + "endTimeFormatted": "00:07:56.620", + "speaker": "Eric", + "body": "work, including this book is" + }, + { + "startTime": 476.621, + "startTimeFormatted": "00:07:56.621", + "endTime": 478.38, + "endTimeFormatted": "00:07:58.380", + "speaker": "Eric", + "body": "simply taking people's heads and" + }, + { + "startTime": 478.66, + "startTimeFormatted": "00:07:58.660", + "endTime": 479.26, + "endTimeFormatted": "00:07:59.260", + "speaker": "Eric", + "body": "pointing them in a slightly" + }, + { + "startTime": 479.261, + "startTimeFormatted": "00:07:59.261", + "endTime": 481.21, + "endTimeFormatted": "00:08:01.210", + "speaker": "Eric", + "body": "different direction. Uh, they're" + }, + { + "startTime": 481.211, + "startTimeFormatted": "00:08:01.211", + "endTime": 482.23, + "endTimeFormatted": "00:08:02.230", + "speaker": "Eric", + "body": "worried about what they're going" + }, + { + "startTime": 482.231, + "startTimeFormatted": "00:08:02.231", + "endTime": 483.64, + "endTimeFormatted": "00:08:03.640", + "speaker": "Eric", + "body": "to do whenever someone says they" + }, + { + "startTime": 483.641, + "startTimeFormatted": "00:08:03.641", + "endTime": 484.93, + "endTimeFormatted": "00:08:04.930", + "speaker": "Eric", + "body": "want to do a podcast. And I say," + }, + { + "startTime": 484.931, + "startTimeFormatted": "00:08:04.931", + "endTime": 486.67, + "endTimeFormatted": "00:08:06.670", + "speaker": "Eric", + "body": "what is it? They often describe" + }, + { + "startTime": 486.671, + "startTimeFormatted": "00:08:06.671", + "endTime": 488.05, + "endTimeFormatted": "00:08:08.050", + "speaker": "Eric", + "body": "it from very features based" + }, + { + "startTime": 488.051, + "startTimeFormatted": "00:08:08.051", + "endTime": 489.16, + "endTimeFormatted": "00:08:09.160", + "speaker": "Eric", + "body": "perspective. Oh, I'm going to," + }, + { + "startTime": 489.4, + "startTimeFormatted": "00:08:09.400", + "endTime": 490.84, + "endTimeFormatted": "00:08:10.840", + "speaker": "Eric", + "body": "I'm going to have conversations" + }, + { + "startTime": 490.841, + "startTimeFormatted": "00:08:10.841", + "endTime": 492.46, + "endTimeFormatted": "00:08:12.460", + "speaker": "Eric", + "body": "with women filmmakers about" + }, + { + "startTime": 492.85, + "startTimeFormatted": "00:08:12.850", + "endTime": 495.37, + "endTimeFormatted": "00:08:15.370", + "speaker": "Eric", + "body": "women in film, right? That's a" + }, + { + "startTime": 495.371, + "startTimeFormatted": "00:08:15.371", + "endTime": 496.6, + "endTimeFormatted": "00:08:16.600", + "speaker": "Eric", + "body": "feature, that's not a benefit." + }, + { + "startTime": 496.9, + "startTimeFormatted": "00:08:16.900", + "endTime": 499.66, + "endTimeFormatted": "00:08:19.660", + "speaker": "Eric", + "body": "Right. And I always try to get" + }, + { + "startTime": 499.661, + "startTimeFormatted": "00:08:19.661", + "endTime": 501.16, + "endTimeFormatted": "00:08:21.160", + "speaker": "Eric", + "body": "people in that perspective shift" + }, + { + "startTime": 501.161, + "startTimeFormatted": "00:08:21.161", + "endTime": 502.51, + "endTimeFormatted": "00:08:22.510", + "speaker": "Eric", + "body": "is, and this is where my history" + }, + { + "startTime": 502.6, + "startTimeFormatted": "00:08:22.600", + "endTime": 503.8, + "endTimeFormatted": "00:08:23.800", + "speaker": "Eric", + "body": "is. A broadcaster comes in and" + }, + { + "startTime": 504.1, + "startTimeFormatted": "00:08:24.100", + "endTime": 505.15, + "endTimeFormatted": "00:08:25.150", + "speaker": "Eric", + "body": "let's think about the audience" + }, + { + "startTime": 505.151, + "startTimeFormatted": "00:08:25.151", + "endTime": 507.01, + "endTimeFormatted": "00:08:27.010", + "speaker": "Eric", + "body": "for that. Okay. Let's not think" + }, + { + "startTime": 507.011, + "startTimeFormatted": "00:08:27.011", + "endTime": 509.5, + "endTimeFormatted": "00:08:29.500", + "speaker": "Eric", + "body": "about what you are right at this" + }, + { + "startTime": 509.501, + "startTimeFormatted": "00:08:29.501", + "endTime": 511.09, + "endTimeFormatted": "00:08:31.090", + "speaker": "Eric", + "body": "moment. Let's think let's start" + }, + { + "startTime": 511.091, + "startTimeFormatted": "00:08:31.091", + "endTime": 512.83, + "endTimeFormatted": "00:08:32.830", + "speaker": "Eric", + "body": "with the listener. And so, you" + }, + { + "startTime": 512.831, + "startTimeFormatted": "00:08:32.831", + "endTime": 514.39, + "endTimeFormatted": "00:08:34.390", + "speaker": "Eric", + "body": "know, I, I, um, you know," + }, + { + "startTime": 514.42, + "startTimeFormatted": "00:08:34.420", + "endTime": 515.92, + "endTimeFormatted": "00:08:35.920", + "speaker": "Eric", + "body": "everyone, it used to be part of" + }, + { + "startTime": 515.921, + "startTimeFormatted": "00:08:35.921", + "endTime": 516.91, + "endTimeFormatted": "00:08:36.910", + "speaker": "Eric", + "body": "my kind of standard stump" + }, + { + "startTime": 516.911, + "startTimeFormatted": "00:08:36.911", + "endTime": 518.53, + "endTimeFormatted": "00:08:38.530", + "speaker": "Eric", + "body": "speech. I would say, even the" + }, + { + "startTime": 518.531, + "startTimeFormatted": "00:08:38.531", + "endTime": 520.12, + "endTimeFormatted": "00:08:40.120", + "speaker": "Eric", + "body": "yoga instructor down the street" + }, + { + "startTime": 520.51, + "startTimeFormatted": "00:08:40.510", + "endTime": 523.12, + "endTimeFormatted": "00:08:43.120", + "speaker": "Eric", + "body": "has a podcast. And one day I was" + }, + { + "startTime": 523.121, + "startTimeFormatted": "00:08:43.121", + "endTime": 524.47, + "endTimeFormatted": "00:08:44.470", + "speaker": "Eric", + "body": "in yoga class and my yoga" + }, + { + "startTime": 524.471, + "startTimeFormatted": "00:08:44.471", + "endTime": 526.27, + "endTimeFormatted": "00:08:46.270", + "speaker": "Eric", + "body": "instructor came up to me say," + }, + { + "startTime": 526.28, + "startTimeFormatted": "00:08:46.280", + "endTime": 527.74, + "endTimeFormatted": "00:08:47.740", + "speaker": "Eric", + "body": "can I talk to you after class?" + }, + { + "startTime": 528.16, + "startTimeFormatted": "00:08:48.160", + "endTime": 529.51, + "endTimeFormatted": "00:08:49.510", + "speaker": "Eric", + "body": "My first thought was like, Oh," + }, + { + "startTime": 529.6, + "startTimeFormatted": "00:08:49.600", + "endTime": 532.18, + "endTimeFormatted": "00:08:52.180", + "speaker": "Eric", + "body": "what did I do that required a" + }, + { + "startTime": 532.181, + "startTimeFormatted": "00:08:52.181", + "endTime": 533.83, + "endTimeFormatted": "00:08:53.830", + "speaker": "Eric", + "body": "talking to after class? I'm" + }, + { + "startTime": 533.831, + "startTimeFormatted": "00:08:53.831", + "endTime": 534.73, + "endTimeFormatted": "00:08:54.730", + "speaker": "Eric", + "body": "like, Oh, I didn't want to think" + }, + { + "startTime": 534.731, + "startTimeFormatted": "00:08:54.731", + "endTime": 536.28, + "endTimeFormatted": "00:08:56.280", + "speaker": "Eric", + "body": "about this. And I kind of forgot" + }, + { + "startTime": 536.281, + "startTimeFormatted": "00:08:56.281", + "endTime": 537.24, + "endTimeFormatted": "00:08:57.240", + "speaker": "Eric", + "body": "about it. And then he kind of" + }, + { + "startTime": 537.41, + "startTimeFormatted": "00:08:57.410", + "endTime": 538.35, + "endTimeFormatted": "00:08:58.350", + "speaker": "Eric", + "body": "came, he came up to me like" + }, + { + "startTime": 538.38, + "startTimeFormatted": "00:08:58.380", + "endTime": 539.76, + "endTimeFormatted": "00:08:59.760", + "speaker": "Eric", + "body": "either that day or a day later," + }, + { + "startTime": 540.24, + "startTimeFormatted": "00:09:00.240", + "endTime": 542.19, + "endTimeFormatted": "00:09:02.190", + "speaker": "Eric", + "body": "a next class and said, Hey, you" + }, + { + "startTime": 542.191, + "startTimeFormatted": "00:09:02.191", + "endTime": 543.93, + "endTimeFormatted": "00:09:03.930", + "speaker": "Eric", + "body": "know, I I've, everybody tells me" + }, + { + "startTime": 543.931, + "startTimeFormatted": "00:09:03.931", + "endTime": 546.27, + "endTimeFormatted": "00:09:06.270", + "speaker": "Eric", + "body": "I should have a podcast. And I'm" + }, + { + "startTime": 546.271, + "startTimeFormatted": "00:09:06.271", + "endTime": 547.86, + "endTimeFormatted": "00:09:07.860", + "speaker": "Eric", + "body": "like, Oh, now even my yoga" + }, + { + "startTime": 547.861, + "startTimeFormatted": "00:09:07.861", + "endTime": 549.66, + "endTimeFormatted": "00:09:09.660", + "speaker": "Eric", + "body": "instructor is, has a vodcast or" + }, + { + "startTime": 549.661, + "startTimeFormatted": "00:09:09.661", + "endTime": 551.88, + "endTimeFormatted": "00:09:11.880", + "speaker": "Eric", + "body": "wants to have a podcast. And so" + }, + { + "startTime": 551.91, + "startTimeFormatted": "00:09:11.910", + "endTime": 553.11, + "endTimeFormatted": "00:09:13.110", + "speaker": "Eric", + "body": "I sat down with him and I" + }, + { + "startTime": 553.111, + "startTimeFormatted": "00:09:13.111", + "endTime": 554.94, + "endTimeFormatted": "00:09:14.940", + "speaker": "Eric", + "body": "started talking about some of" + }, + { + "startTime": 554.941, + "startTimeFormatted": "00:09:14.941", + "endTime": 556.23, + "endTimeFormatted": "00:09:16.230", + "speaker": "Eric", + "body": "the concepts that I use with" + }, + { + "startTime": 556.231, + "startTimeFormatted": "00:09:16.231", + "endTime": 558.36, + "endTimeFormatted": "00:09:18.360", + "speaker": "Eric", + "body": "broadcasters or media people and" + }, + { + "startTime": 558.361, + "startTimeFormatted": "00:09:18.361", + "endTime": 559.86, + "endTimeFormatted": "00:09:19.860", + "speaker": "Eric", + "body": "realized they were far too" + }, + { + "startTime": 559.861, + "startTimeFormatted": "00:09:19.861", + "endTime": 561.45, + "endTimeFormatted": "00:09:21.450", + "speaker": "Eric", + "body": "advanced for where he was at. He" + }, + { + "startTime": 561.451, + "startTimeFormatted": "00:09:21.451", + "endTime": 563.37, + "endTimeFormatted": "00:09:23.370", + "speaker": "Eric", + "body": "just had this passion to talk to" + }, + { + "startTime": 563.371, + "startTimeFormatted": "00:09:23.371", + "endTime": 564.96, + "endTimeFormatted": "00:09:24.960", + "speaker": "Eric", + "body": "people and he had something to" + }, + { + "startTime": 564.961, + "startTimeFormatted": "00:09:24.961", + "endTime": 567.06, + "endTimeFormatted": "00:09:27.060", + "speaker": "Eric", + "body": "say, but he had no idea of how" + }, + { + "startTime": 567.061, + "startTimeFormatted": "00:09:27.061", + "endTime": 568.77, + "endTimeFormatted": "00:09:28.770", + "speaker": "Eric", + "body": "to think about it. And so I" + }, + { + "startTime": 568.771, + "startTimeFormatted": "00:09:28.771", + "endTime": 570.81, + "endTimeFormatted": "00:09:30.810", + "speaker": "Eric", + "body": "ended up drawing on a piece of" + }, + { + "startTime": 570.811, + "startTimeFormatted": "00:09:30.811", + "endTime": 572.61, + "endTimeFormatted": "00:09:32.610", + "speaker": "Eric", + "body": "paper, a circle, or what became" + }, + { + "startTime": 572.611, + "startTimeFormatted": "00:09:32.611", + "endTime": 574.47, + "endTimeFormatted": "00:09:34.470", + "speaker": "Eric", + "body": "a circle with a couple of points" + }, + { + "startTime": 574.471, + "startTimeFormatted": "00:09:34.471", + "endTime": 576.12, + "endTimeFormatted": "00:09:36.120", + "speaker": "Eric", + "body": "on it. And it kind of developed" + }, + { + "startTime": 576.121, + "startTimeFormatted": "00:09:36.121", + "endTime": 577.77, + "endTimeFormatted": "00:09:37.770", + "speaker": "Eric", + "body": "an exercise that I still use" + }, + { + "startTime": 578.25, + "startTimeFormatted": "00:09:38.250", + "endTime": 579.81, + "endTimeFormatted": "00:09:39.810", + "speaker": "Eric", + "body": "with people all the time," + }, + { + "startTime": 579.811, + "startTimeFormatted": "00:09:39.811", + "endTime": 580.8, + "endTimeFormatted": "00:09:40.800", + "speaker": "Eric", + "body": "whether I'm doing it in a bar" + }, + { + "startTime": 580.801, + "startTimeFormatted": "00:09:40.801", + "endTime": 582.2, + "endTimeFormatted": "00:09:42.200", + "speaker": "Eric", + "body": "napkin or on a dry erase board" + }, + { + "startTime": 582.27, + "startTimeFormatted": "00:09:42.270", + "endTime": 583.95, + "endTimeFormatted": "00:09:43.950", + "speaker": "Eric", + "body": "in a conference room where we" + }, + { + "startTime": 583.951, + "startTimeFormatted": "00:09:43.951", + "endTime": 586.08, + "endTimeFormatted": "00:09:46.080", + "speaker": "Eric", + "body": "talk about who is the audience" + }, + { + "startTime": 586.081, + "startTimeFormatted": "00:09:46.081", + "endTime": 587.43, + "endTimeFormatted": "00:09:47.430", + "speaker": "Eric", + "body": "for this, get incredibly" + }, + { + "startTime": 587.431, + "startTimeFormatted": "00:09:47.431", + "endTime": 589.44, + "endTimeFormatted": "00:09:49.440", + "speaker": "Eric", + "body": "specific about who they are and" + }, + { + "startTime": 589.441, + "startTimeFormatted": "00:09:49.441", + "endTime": 590.58, + "endTimeFormatted": "00:09:50.580", + "speaker": "Eric", + "body": "what journey are you putting" + }, + { + "startTime": 590.581, + "startTimeFormatted": "00:09:50.581", + "endTime": 592.44, + "endTimeFormatted": "00:09:52.440", + "speaker": "Eric", + "body": "them on? You know? Uh, and" + }, + { + "startTime": 592.441, + "startTimeFormatted": "00:09:52.441", + "endTime": 593.49, + "endTimeFormatted": "00:09:53.490", + "speaker": "Eric", + "body": "that's why it becomes a circle" + }, + { + "startTime": 593.491, + "startTimeFormatted": "00:09:53.491", + "endTime": 594.66, + "endTimeFormatted": "00:09:54.660", + "speaker": "Eric", + "body": "because all these things filled" + }, + { + "startTime": 594.661, + "startTimeFormatted": "00:09:54.661", + "endTime": 596.7, + "endTimeFormatted": "00:09:56.700", + "speaker": "Eric", + "body": "into a kind of flow into each" + }, + { + "startTime": 596.701, + "startTimeFormatted": "00:09:56.701", + "endTime": 598.59, + "endTimeFormatted": "00:09:58.590", + "speaker": "Eric", + "body": "other of asking yourself, what" + }, + { + "startTime": 598.591, + "startTimeFormatted": "00:09:58.591", + "endTime": 599.79, + "endTimeFormatted": "00:09:59.790", + "speaker": "Eric", + "body": "do you have to say to that" + }, + { + "startTime": 599.791, + "startTimeFormatted": "00:09:59.791", + "endTime": 601.65, + "endTimeFormatted": "00:10:01.650", + "speaker": "Eric", + "body": "person? Once you define them and" + }, + { + "startTime": 601.651, + "startTimeFormatted": "00:10:01.651", + "endTime": 602.79, + "endTimeFormatted": "00:10:02.790", + "speaker": "Eric", + "body": "you get very specific, I make" + }, + { + "startTime": 602.791, + "startTimeFormatted": "00:10:02.791", + "endTime": 604.23, + "endTimeFormatted": "00:10:04.230", + "speaker": "Eric", + "body": "people look up pictures and" + }, + { + "startTime": 604.231, + "startTimeFormatted": "00:10:04.231", + "endTime": 605.28, + "endTimeFormatted": "00:10:05.280", + "speaker": "Eric", + "body": "print them out. We put them up" + }, + { + "startTime": 605.37, + "startTimeFormatted": "00:10:05.370", + "endTime": 606.93, + "endTimeFormatted": "00:10:06.930", + "speaker": "Eric", + "body": "on the wall, we give them names" + }, + { + "startTime": 606.931, + "startTimeFormatted": "00:10:06.931", + "endTime": 608.97, + "endTimeFormatted": "00:10:08.970", + "speaker": "Eric", + "body": "and fake bios. And then we" + }, + { + "startTime": 608.971, + "startTimeFormatted": "00:10:08.971", + "endTime": 610.32, + "endTimeFormatted": "00:10:10.320", + "speaker": "Eric", + "body": "consolidate them all into like" + }, + { + "startTime": 610.321, + "startTimeFormatted": "00:10:10.321", + "endTime": 612.54, + "endTimeFormatted": "00:10:12.540", + "speaker": "Eric", + "body": "what we think the person is. And" + }, + { + "startTime": 612.66, + "startTimeFormatted": "00:10:12.660", + "endTime": 613.56, + "endTimeFormatted": "00:10:13.560", + "speaker": "Eric", + "body": "we know, what do you have to say" + }, + { + "startTime": 613.561, + "startTimeFormatted": "00:10:13.561", + "endTime": 615.03, + "endTimeFormatted": "00:10:15.030", + "speaker": "Eric", + "body": "to them? Who are you, what" + }, + { + "startTime": 615.031, + "startTimeFormatted": "00:10:15.031", + "endTime": 616.35, + "endTimeFormatted": "00:10:16.350", + "speaker": "Eric", + "body": "version of yourself, or what is" + }, + { + "startTime": 616.351, + "startTimeFormatted": "00:10:16.351", + "endTime": 617.7, + "endTimeFormatted": "00:10:17.700", + "speaker": "Eric", + "body": "your voice in this? What is your" + }, + { + "startTime": 617.701, + "startTimeFormatted": "00:10:17.701", + "endTime": 619.23, + "endTimeFormatted": "00:10:19.230", + "speaker": "Eric", + "body": "perspective, your personality," + }, + { + "startTime": 620.21, + "startTimeFormatted": "00:10:20.210", + "endTime": 621.39, + "endTimeFormatted": "00:10:21.390", + "speaker": "Eric", + "body": "and then what is the outcome," + }, + { + "startTime": 621.48, + "startTimeFormatted": "00:10:21.480", + "endTime": 623.96, + "endTimeFormatted": "00:10:23.960", + "speaker": "Eric", + "body": "the desired outcome. and then we" + }, + { + "startTime": 623.961, + "startTimeFormatted": "00:10:23.961", + "endTime": 625.34, + "endTimeFormatted": "00:10:25.340", + "speaker": "Eric", + "body": "get into this Exercise that I" + }, + { + "startTime": 625.341, + "startTimeFormatted": "00:10:25.341", + "endTime": 626.69, + "endTimeFormatted": "00:10:26.690", + "speaker": "Eric", + "body": "kind of force people into. And" + }, + { + "startTime": 627.05, + "startTimeFormatted": "00:10:27.050", + "endTime": 628.34, + "endTimeFormatted": "00:10:28.340", + "speaker": "Eric", + "body": "the way I usually do it now," + }, + { + "startTime": 628.341, + "startTimeFormatted": "00:10:28.341", + "endTime": 630.41, + "endTimeFormatted": "00:10:30.410", + "speaker": "Eric", + "body": "since I, I always evolving this" + }, + { + "startTime": 630.411, + "startTimeFormatted": "00:10:30.411", + "endTime": 632.24, + "endTimeFormatted": "00:10:32.240", + "speaker": "Eric", + "body": "exercise is I make people write" + }, + { + "startTime": 632.241, + "startTimeFormatted": "00:10:32.241", + "endTime": 633.35, + "endTimeFormatted": "00:10:33.350", + "speaker": "Eric", + "body": "it. And then they, then they" + }, + { + "startTime": 633.351, + "startTimeFormatted": "00:10:33.351", + "endTime": 634.64, + "endTimeFormatted": "00:10:34.640", + "speaker": "Eric", + "body": "kind of hide it from everyone." + }, + { + "startTime": 634.91, + "startTimeFormatted": "00:10:34.910", + "endTime": 635.93, + "endTimeFormatted": "00:10:35.930", + "speaker": "Eric", + "body": "And during the rest of the" + }, + { + "startTime": 635.931, + "startTimeFormatted": "00:10:35.931", + "endTime": 637.28, + "endTimeFormatted": "00:10:37.280", + "speaker": "Eric", + "body": "workshop, they can edit it. And" + }, + { + "startTime": 637.281, + "startTimeFormatted": "00:10:37.281", + "endTime": 638.12, + "endTimeFormatted": "00:10:38.120", + "speaker": "Eric", + "body": "at the end of the workshop," + }, + { + "startTime": 638.15, + "startTimeFormatted": "00:10:38.150", + "endTime": 639.8, + "endTimeFormatted": "00:10:39.800", + "speaker": "Eric", + "body": "everyone reads their versions of" + }, + { + "startTime": 639.801, + "startTimeFormatted": "00:10:39.801", + "endTime": 641.78, + "endTimeFormatted": "00:10:41.780", + "speaker": "Eric", + "body": "these 10 word descriptions that" + }, + { + "startTime": 641.781, + "startTimeFormatted": "00:10:41.781", + "endTime": 643.67, + "endTimeFormatted": "00:10:43.670", + "speaker": "Eric", + "body": "describe your project and" + }, + { + "startTime": 643.671, + "startTimeFormatted": "00:10:43.671", + "endTime": 645.86, + "endTimeFormatted": "00:10:45.860", + "speaker": "Eric", + "body": "nothing else in the world, no" + }, + { + "startTime": 645.861, + "startTimeFormatted": "00:10:45.861", + "endTime": 646.67, + "endTimeFormatted": "00:10:46.670", + "speaker": "Eric", + "body": "one in the room should be able" + }, + { + "startTime": 646.671, + "startTimeFormatted": "00:10:46.671", + "endTime": 647.81, + "endTimeFormatted": "00:10:47.810", + "speaker": "Eric", + "body": "to say, yeah, there's also" + }, + { + "startTime": 647.811, + "startTimeFormatted": "00:10:47.811", + "endTime": 651.32, + "endTimeFormatted": "00:10:51.320", + "speaker": "Eric", + "body": "another, uh, podcast, a women" + }, + { + "startTime": 651.77, + "startTimeFormatted": "00:10:51.770", + "endTime": 652.88, + "endTimeFormatted": "00:10:52.880", + "speaker": "Eric", + "body": "talking to women filmmakers" + }, + { + "startTime": 652.881, + "startTimeFormatted": "00:10:52.881", + "endTime": 653.72, + "endTimeFormatted": "00:10:53.720", + "speaker": "Eric", + "body": "about women's film. You know," + }, + { + "startTime": 653.721, + "startTimeFormatted": "00:10:53.721", + "endTime": 655.22, + "endTimeFormatted": "00:10:55.220", + "speaker": "Eric", + "body": "there's, there are others. So" + }, + { + "startTime": 655.221, + "startTimeFormatted": "00:10:55.221", + "endTime": 657.2, + "endTimeFormatted": "00:10:57.200", + "speaker": "Eric", + "body": "what makes yours distinct? Are" + }, + { + "startTime": 657.201, + "startTimeFormatted": "00:10:57.201", + "endTime": 660.29, + "endTimeFormatted": "00:11:00.290", + "speaker": "Eric", + "body": "you focusing on, uh, filmmakers" + }, + { + "startTime": 660.32, + "startTimeFormatted": "00:11:00.320", + "endTime": 662.9, + "endTimeFormatted": "00:11:02.900", + "speaker": "Eric", + "body": "in the Minneapolis st. Paul" + }, + { + "startTime": 662.901, + "startTimeFormatted": "00:11:02.901", + "endTime": 664.55, + "endTimeFormatted": "00:11:04.550", + "speaker": "Eric", + "body": "area? Are you talking about a" + }, + { + "startTime": 664.551, + "startTimeFormatted": "00:11:04.551", + "endTime": 667.28, + "endTimeFormatted": "00:11:07.280", + "speaker": "Eric", + "body": "specific age or a specific genre" + }, + { + "startTime": 667.281, + "startTimeFormatted": "00:11:07.281", + "endTime": 669.2, + "endTimeFormatted": "00:11:09.200", + "speaker": "Eric", + "body": "film, or a specific time period" + }, + { + "startTime": 669.201, + "startTimeFormatted": "00:11:09.201", + "endTime": 671.06, + "endTimeFormatted": "00:11:11.060", + "speaker": "Eric", + "body": "in which films were made, um," + }, + { + "startTime": 671.36, + "startTimeFormatted": "00:11:11.360", + "endTime": 672.77, + "endTimeFormatted": "00:11:12.770", + "speaker": "Eric", + "body": "that include that in your" + }, + { + "startTime": 672.771, + "startTimeFormatted": "00:11:12.771", + "endTime": 674.09, + "endTimeFormatted": "00:11:14.090", + "speaker": "Eric", + "body": "description? So you're literally" + }, + { + "startTime": 674.091, + "startTimeFormatted": "00:11:14.091", + "endTime": 675.65, + "endTimeFormatted": "00:11:15.650", + "speaker": "Eric", + "body": "describing one podcast in a" + }, + { + "startTime": 675.651, + "startTimeFormatted": "00:11:15.651", + "endTime": 676.61, + "endTimeFormatted": "00:11:16.610", + "speaker": "Eric", + "body": "world of almost a million" + }, + { + "startTime": 676.611, + "startTimeFormatted": "00:11:16.611", + "endTime": 679.43, + "endTimeFormatted": "00:11:19.430", + "speaker": "Eric", + "body": "others, right. And that provides" + }, + { + "startTime": 679.431, + "startTimeFormatted": "00:11:19.431", + "endTime": 681.56, + "endTimeFormatted": "00:11:21.560", + "speaker": "Eric", + "body": "you with an editorial lens that" + }, + { + "startTime": 681.561, + "startTimeFormatted": "00:11:21.561", + "endTime": 683.54, + "endTimeFormatted": "00:11:23.540", + "speaker": "Eric", + "body": "you can then use to make all" + }, + { + "startTime": 683.541, + "startTimeFormatted": "00:11:23.541", + "endTime": 684.92, + "endTimeFormatted": "00:11:24.920", + "speaker": "Eric", + "body": "kinds of decisions about what's" + }, + { + "startTime": 684.921, + "startTimeFormatted": "00:11:24.921", + "endTime": 687.08, + "endTimeFormatted": "00:11:27.080", + "speaker": "Eric", + "body": "right for your podcast, from its" + }, + { + "startTime": 687.081, + "startTimeFormatted": "00:11:27.081", + "endTime": 688.43, + "endTimeFormatted": "00:11:28.430", + "speaker": "Eric", + "body": "title, how it describes itself," + }, + { + "startTime": 688.58, + "startTimeFormatted": "00:11:28.580", + "endTime": 689.81, + "endTimeFormatted": "00:11:29.810", + "speaker": "Eric", + "body": "its artwork, the type of guests," + }, + { + "startTime": 689.811, + "startTimeFormatted": "00:11:29.811", + "endTime": 690.56, + "endTimeFormatted": "00:11:30.560", + "speaker": "Eric", + "body": "you have, the kind of" + }, + { + "startTime": 690.561, + "startTimeFormatted": "00:11:30.561", + "endTime": 692.33, + "endTimeFormatted": "00:11:32.330", + "speaker": "Eric", + "body": "conversations you have the" + }, + { + "startTime": 692.331, + "startTimeFormatted": "00:11:32.331", + "endTime": 693.83, + "endTimeFormatted": "00:11:33.830", + "speaker": "Eric", + "body": "answer to those five questions," + }, + { + "startTime": 694.22, + "startTimeFormatted": "00:11:34.220", + "endTime": 695.36, + "endTimeFormatted": "00:11:35.360", + "speaker": "Eric", + "body": "the basic things that go around" + }, + { + "startTime": 695.361, + "startTimeFormatted": "00:11:35.361", + "endTime": 697.58, + "endTimeFormatted": "00:11:37.580", + "speaker": "Eric", + "body": "the circle and the 10 word as" + }, + { + "startTime": 697.581, + "startTimeFormatted": "00:11:37.581", + "endTime": 699.2, + "endTimeFormatted": "00:11:39.200", + "speaker": "Eric", + "body": "you have that you have a huge" + }, + { + "startTime": 699.201, + "startTimeFormatted": "00:11:39.201", + "endTime": 701.39, + "endTimeFormatted": "00:11:41.390", + "speaker": "Eric", + "body": "amount of clarity that you never" + }, + { + "startTime": 701.6, + "startTimeFormatted": "00:11:41.600", + "endTime": 702.8, + "endTimeFormatted": "00:11:42.800", + "speaker": "Eric", + "body": "would've had before, or spent" + }, + { + "startTime": 702.92, + "startTimeFormatted": "00:11:42.920", + "endTime": 705.35, + "endTimeFormatted": "00:11:45.350", + "speaker": "Eric", + "body": "years kind of figuring out one" + }, + { + "startTime": 705.351, + "startTimeFormatted": "00:11:45.351", + "endTime": 707.39, + "endTimeFormatted": "00:11:47.390", + "speaker": "Eric", + "body": "episode at a time. And many" + }, + { + "startTime": 707.391, + "startTimeFormatted": "00:11:47.391", + "endTime": 708.71, + "endTimeFormatted": "00:11:48.710", + "speaker": "Eric", + "body": "people don't have years to" + }, + { + "startTime": 708.711, + "startTimeFormatted": "00:11:48.711", + "endTime": 709.16, + "endTimeFormatted": "00:11:49.160", + "speaker": "Eric", + "body": "figure it out." + }, + { + "startTime": 709.91, + "startTimeFormatted": "00:11:49.910", + "endTime": 710.6, + "endTimeFormatted": "00:11:50.600", + "speaker": "Travis", + "body": "Sure. Yeah. Most" + } + ] +} \ No newline at end of file diff --git a/test/test_files/how_to_start_a_podcast_json_combine_speaker_parsed.json b/test/test_files/how_to_start_a_podcast_json_combine_speaker_parsed.json new file mode 100644 index 0000000..6755951 --- /dev/null +++ b/test/test_files/how_to_start_a_podcast_json_combine_speaker_parsed.json @@ -0,0 +1,60 @@ +{ + "segments": [ + { + "startTime": 0.3, + "startTimeFormatted": "00:00:00.300", + "endTime": 61.62, + "endTimeFormatted": "00:01:01.620", + "speaker": "Travis", + "body": "Hey, Travis Albritain here. Uh, so I hope the, these episodes have been super helpful for you getting your show off the ground and having the confidence that you need to really launch a podcast, which is such an incredible thing. Now, I recently had the opportunity to sit down for a conversation with Eric Nuzum, who is been an executive producer on some of the biggest podcasts in the world, many of NPRs podcast, Ted's podcasts, um, and just brings a lot of insight and depth of wisdom to podcasting. And so I wanted to share this with you as kind of like a podcasting 201. This interview is what to do once you have your show going and you really want to see what's the next step. What's the next level that I can get to with my podcast. Uh, he just wrote a brand new book on podcasting called Make Noise. I will leave a link to the book in the episode description. It's a fantastic book. So I hope that this conversation is helpful for you and that you get a lot out of it. And without further ado, here's my conversation with Eric Nuzum." + }, + { + "startTime": 65.52, + "startTimeFormatted": "00:01:05.520", + "endTime": 166.07, + "endTimeFormatted": "00:02:46.070", + "speaker": "Eric", + "body": "So my name is Eric Nuzum and, uh, I, um, spent most of the early part of my career in broadcast and eventually worked my way up to working at NPR. And I started there in 2004 and listening less than a year later, I was in the, um, the cafeteria line at NPR and the guy who was our COO at the time was behind me trying to make some kind of awkward chit-chat. He says, well, what's interesting that you've seen lately. And I said, well, there's this podcasting thing. And I started explaining to him in the lunch line, just gotta make conversation. He's like, Oh, come by and give me a little spiel on it. And so I came, I made an appointment, went and gave a spiel a couple of weeks later, he shows back up at my door and says, you have a team of eight and you have 12 weeks. And at the end of that 12 weeks, we want there to be NPR podcasts. I'm like, okay. And we actually delivered it a month. We got an extra month. Uh, we delivered it. It was 32 podcasts. And then for the following decade, I kind of remained kind of the editorial lead on NPR podcasts, both figuring out how to take in pair programming and have it thrive in the podcast world, sound authentic there and also making new things that were intended originally to be in that space and did that for a decade. And then a couple of years ago, probably four and a half years or so ago, I left NPR and went to Ottawa, which is part of the Amazon. Uh, you, you extended universe and, um, uh, created original the original content team there. Uh, and then about a year or so ago, uh, one of my friends and I left and started magnificent noise, which is a, uh, um, which is a podcast production and consultation company, uh, based in New York. And," + }, + { + "startTime": 166.25, + "startTimeFormatted": "00:02:46.250", + "endTime": 209.74, + "endTimeFormatted": "00:03:29.740", + "speaker": "Travis", + "body": "And so now you have, uh, your first podcast related book, um, make noise. Yeah. And I love as I was going through and reading it. And, and specifically one of the things that you harp on, uh, which we'll dive into about the 10 word description, I was like, let me go back to the front cover and see if he followed his own rules. He did even got an extra word, despair, a creative guide to podcasting and great audio storytelling. Um, so why did you feel like now was the time to publish this book that you've been in podcasting basically since the beginning longer than just about anyone listening to this episode? Uh, so why did you feel like now is a really good time to, to bring this book out into the world and step into, uh, promote it?" + }, + { + "startTime": 210.63, + "startTimeFormatted": "00:03:30.630", + "endTime": 381.86, + "endTimeFormatted": "00:06:21.860", + "speaker": "Eric", + "body": "That's a really good question because I think there's two factors. One, I think we are now at the point where there's such a groundswell of interest in podcasting that, that having a book about podcast creation, that isn't like tips for equipment to buy or how to make money at it, but it's really focused on how to do something. Well, that's a commercially viable product now. And I don't think even a couple of years ago, it was when I had been approached a couple of times about doing this over the years. And I'm like, I just don't think it's, I think it's a niche product. I don't think it's going to be worth my time to spend time writing that book. And, um, the last time I was asked about it, I said, yes, and was kind of shocked at the reaction. And you know, one of the great things about seeing podcasting evolve is watching at points like this, um, that this is, you know, a profession and a vocation and a hobby, and there are tools for it with a book or microphones or recording units or things that were literally unimaginable four or five years ago. Now I'm a, I'm a big fan of the Roadcaster pro, which is a little desktop unit though. I advocate a lot of podcasters buy because it's$600 containing technology that will cost you 10,$15,000 to duplicate four or five years ago. I mean, that to me is exciting and amazing. So first I think we've kind of matured into being an industry now that can support that kind of thinking and a product like, like a book. And the second reason is, um, there's so many new podcasts and, and the thing that surprises me is someone who is a consultant for a lot of people, individuals and I, I work with people who are sitting around their kitchen table, trying to figure things out up to some of the largest media companies in the world and the conversations they have are almost identical, even though you have many more dollars, much bigger names and, um, uh, you know, uh, resources and crazy resources compared to people who are trying to figure out how to do this with their friend, their obstacles are often the same they're kind of concerns or, or, or, or fears of how to get into this. And they get stuck on the same things too. And so when I started to realize how universal a lot of the problems are that prevent people from being able to achieve what they want to do. Um, I like there's, there's solutions to that. I've struggled through this a lot myself. So I just, and I was also worried when, when I was first asked about this book that I could write about a chapter and about that would be about it. And so I had a couple of days off, for some reason, I sat down and said, okay, I'm just going to try. I didn't even say yes to write in the book. I'm just going to try to write a chapter. And I sat down on a thought about what frustrates people and I just started. And it became very clear to me that there was something to be said to an increasingly growing community of people." + }, + { + "startTime": 382.57, + "startTimeFormatted": "00:06:22.570", + "endTime": 470.62, + "endTimeFormatted": "00:07:50.620", + "speaker": "Travis", + "body": "Well, and what I appreciate about the angle that you took with the book is that it's not, it isn't, it, isn't a book for beginner podcasters in the sense that if you're just getting started, it's a very valuable resource to help you avoid some of those early mistakes, classic mistakes, rookie mistakes that you see, but it's also extremely challenging. Even for someone like myself, that's been in podcasting for years to like you start reading through this. And you're like, I don't do half the stuff that I even intellectually know I should be doing. Um, and one, one that I, I want to really spend some time with, cause I feel like it would be the most valuable for people listening is the 10 word description, because one of my constant wrestling matches is that I, as a, as a creative outlet, want my podcast to be self-serving in certain ways, right? Like I want to wake up excited about making new episodes. I want to, I want to expand my creativity. I want to try new things, experiment with new things. Um, but you do a really good job of kind of helping push against that and in a really good way, and the importance of staying focused and, and really being laser focused on why does your podcast exist for the expectations of your listeners, um, and making sure you over deliver on that. So I'd love to just, maybe even if you want to just share the anecdote that you had about your yoga teacher and kind of going through that exercise. So I thought that was a good story. And I think we'll flesh out the importance of having a really clear idea of what your podcast is about." + }, + { + "startTime": 471.13, + "startTimeFormatted": "00:07:51.130", + "endTime": 709.16, + "endTimeFormatted": "00:11:49.160", + "speaker": "Eric", + "body": "Yeah. I think a lot of my work is just in general, a lot of my work, including this book is simply taking people's heads and pointing them in a slightly different direction. Uh, they're worried about what they're going to do whenever someone says they want to do a podcast. And I say, what is it? They often describe it from very features based perspective. Oh, I'm going to, I'm going to have conversations with women filmmakers about women in film, right? That's a feature, that's not a benefit. Right. And I always try to get people in that perspective shift is, and this is where my history is. A broadcaster comes in and let's think about the audience for that. Okay. Let's not think about what you are right at this moment. Let's think let's start with the listener. And so, you know, I, I, um, you know, everyone, it used to be part of my kind of standard stump speech. I would say, even the yoga instructor down the street has a podcast. And one day I was in yoga class and my yoga instructor came up to me say, can I talk to you after class? My first thought was like, Oh, what did I do that required a talking to after class? I'm like, Oh, I didn't want to think about this. And I kind of forgot about it. And then he kind of came, he came up to me like either that day or a day later, a next class and said, Hey, you know, I I've, everybody tells me I should have a podcast. And I'm like, Oh, now even my yoga instructor is, has a vodcast or wants to have a podcast. And so I sat down with him and I started talking about some of the concepts that I use with broadcasters or media people and realized they were far too advanced for where he was at. He just had this passion to talk to people and he had something to say, but he had no idea of how to think about it. And so I ended up drawing on a piece of paper, a circle, or what became a circle with a couple of points on it. And it kind of developed an exercise that I still use with people all the time, whether I'm doing it in a bar napkin or on a dry erase board in a conference room where we talk about who is the audience for this, get incredibly specific about who they are and what journey are you putting them on? You know? Uh, and that's why it becomes a circle because all these things filled into a kind of flow into each other of asking yourself, what do you have to say to that person? Once you define them and you get very specific, I make people look up pictures and print them out. We put them up on the wall, we give them names and fake bios. And then we consolidate them all into like what we think the person is. And we know, what do you have to say to them? Who are you, what version of yourself, or what is your voice in this? What is your perspective, your personality, and then what is the outcome, the desired outcome. and then we get into this Exercise that I kind of force people into. And the way I usually do it now, since I, I always evolving this exercise is I make people write it. And then they, then they kind of hide it from everyone. And during the rest of the workshop, they can edit it. And at the end of the workshop, everyone reads their versions of these 10 word descriptions that describe your project and nothing else in the world, no one in the room should be able to say, yeah, there's also another, uh, podcast, a women talking to women filmmakers about women's film. You know, there's, there are others. So what makes yours distinct? Are you focusing on, uh, filmmakers in the Minneapolis st. Paul area? Are you talking about a specific age or a specific genre film, or a specific time period in which films were made, um, that include that in your description? So you're literally describing one podcast in a world of almost a million others, right. And that provides you with an editorial lens that you can then use to make all kinds of decisions about what's right for your podcast, from its title, how it describes itself, its artwork, the type of guests, you have, the kind of conversations you have the answer to those five questions, the basic things that go around the circle and the 10 word as you have that you have a huge amount of clarity that you never would've had before, or spent years kind of figuring out one episode at a time. And many people don't have years to figure it out." + }, + { + "startTime": 709.91, + "startTimeFormatted": "00:11:49.910", + "endTime": 710.6, + "endTimeFormatted": "00:11:50.600", + "speaker": "Travis", + "body": "Sure. Yeah. Most" + } + ] +} \ No newline at end of file diff --git a/test/test_files/how_to_start_a_podcast_json_speaker_changed_parsed.json b/test/test_files/how_to_start_a_podcast_json_speaker_changed_parsed.json new file mode 100644 index 0000000..0098a5f --- /dev/null +++ b/test/test_files/how_to_start_a_podcast_json_speaker_changed_parsed.json @@ -0,0 +1,2881 @@ +{ + "segments": [ + { + "startTime": 0.3, + "startTimeFormatted": "00:00:00.300", + "endTime": 2.16, + "endTimeFormatted": "00:00:02.160", + "speaker": "Travis", + "body": "Hey, Travis Albritain here. Uh," + }, + { + "startTime": 2.19, + "startTimeFormatted": "00:00:02.190", + "endTime": 4.14, + "endTimeFormatted": "00:00:04.140", + "body": "so I hope the, these episodes" + }, + { + "startTime": 4.141, + "startTimeFormatted": "00:00:04.141", + "endTime": 5.22, + "endTimeFormatted": "00:00:05.220", + "body": "have been super helpful for you" + }, + { + "startTime": 5.52, + "startTimeFormatted": "00:00:05.520", + "endTime": 6.75, + "endTimeFormatted": "00:00:06.750", + "body": "getting your show off the ground" + }, + { + "startTime": 6.751, + "startTimeFormatted": "00:00:06.751", + "endTime": 7.89, + "endTimeFormatted": "00:00:07.890", + "body": "and having the confidence that" + }, + { + "startTime": 7.891, + "startTimeFormatted": "00:00:07.891", + "endTime": 9.72, + "endTimeFormatted": "00:00:09.720", + "body": "you need to really launch a" + }, + { + "startTime": 9.721, + "startTimeFormatted": "00:00:09.721", + "endTime": 10.86, + "endTimeFormatted": "00:00:10.860", + "body": "podcast, which is such an" + }, + { + "startTime": 10.861, + "startTimeFormatted": "00:00:10.861", + "endTime": 12.48, + "endTimeFormatted": "00:00:12.480", + "body": "incredible thing. Now, I" + }, + { + "startTime": 12.481, + "startTimeFormatted": "00:00:12.481", + "endTime": 14.64, + "endTimeFormatted": "00:00:14.640", + "body": "recently had the opportunity to" + }, + { + "startTime": 14.91, + "startTimeFormatted": "00:00:14.910", + "endTime": 16.2, + "endTimeFormatted": "00:00:16.200", + "body": "sit down for a conversation with" + }, + { + "startTime": 16.23, + "startTimeFormatted": "00:00:16.230", + "endTime": 18.12, + "endTimeFormatted": "00:00:18.120", + "body": "Eric Nuzum, who is been an" + }, + { + "startTime": 18.121, + "startTimeFormatted": "00:00:18.121", + "endTime": 19.29, + "endTimeFormatted": "00:00:19.290", + "body": "executive producer on some of" + }, + { + "startTime": 19.291, + "startTimeFormatted": "00:00:19.291", + "endTime": 21.24, + "endTimeFormatted": "00:00:21.240", + "body": "the biggest podcasts in the" + }, + { + "startTime": 21.241, + "startTimeFormatted": "00:00:21.241", + "endTime": 23.25, + "endTimeFormatted": "00:00:23.250", + "body": "world, many of NPRs podcast," + }, + { + "startTime": 23.31, + "startTimeFormatted": "00:00:23.310", + "endTime": 26.31, + "endTimeFormatted": "00:00:26.310", + "body": "Ted's podcasts, um, and just" + }, + { + "startTime": 26.311, + "startTimeFormatted": "00:00:26.311", + "endTime": 28.44, + "endTimeFormatted": "00:00:28.440", + "body": "brings a lot of insight and" + }, + { + "startTime": 28.47, + "startTimeFormatted": "00:00:28.470", + "endTime": 30.9, + "endTimeFormatted": "00:00:30.900", + "body": "depth of wisdom to podcasting." + }, + { + "startTime": 30.901, + "startTimeFormatted": "00:00:30.901", + "endTime": 31.8, + "endTimeFormatted": "00:00:31.800", + "body": "And so I wanted to share this" + }, + { + "startTime": 31.801, + "startTimeFormatted": "00:00:31.801", + "endTime": 33.35, + "endTimeFormatted": "00:00:33.350", + "body": "with you as kind of like a" + }, + { + "startTime": 34.08, + "startTimeFormatted": "00:00:34.080", + "endTime": 36.6, + "endTimeFormatted": "00:00:36.600", + "body": "podcasting 201. This interview" + }, + { + "startTime": 36.84, + "startTimeFormatted": "00:00:36.840", + "endTime": 38.49, + "endTimeFormatted": "00:00:38.490", + "body": "is what to do once you have your" + }, + { + "startTime": 38.491, + "startTimeFormatted": "00:00:38.491", + "endTime": 40.11, + "endTimeFormatted": "00:00:40.110", + "body": "show going and you really want" + }, + { + "startTime": 40.111, + "startTimeFormatted": "00:00:40.111", + "endTime": 41.28, + "endTimeFormatted": "00:00:41.280", + "body": "to see what's the next step." + }, + { + "startTime": 41.31, + "startTimeFormatted": "00:00:41.310", + "endTime": 43.14, + "endTimeFormatted": "00:00:43.140", + "body": "What's the next level that I can" + }, + { + "startTime": 43.141, + "startTimeFormatted": "00:00:43.141", + "endTime": 46.32, + "endTimeFormatted": "00:00:46.320", + "body": "get to with my podcast. Uh, he" + }, + { + "startTime": 46.321, + "startTimeFormatted": "00:00:46.321", + "endTime": 48.27, + "endTimeFormatted": "00:00:48.270", + "body": "just wrote a brand new book on" + }, + { + "startTime": 48.271, + "startTimeFormatted": "00:00:48.271", + "endTime": 50.28, + "endTimeFormatted": "00:00:50.280", + "body": "podcasting called Make Noise. I" + }, + { + "startTime": 50.281, + "startTimeFormatted": "00:00:50.281", + "endTime": 51.69, + "endTimeFormatted": "00:00:51.690", + "body": "will leave a link to the book in" + }, + { + "startTime": 51.691, + "startTimeFormatted": "00:00:51.691", + "endTime": 52.95, + "endTimeFormatted": "00:00:52.950", + "body": "the episode description. It's a" + }, + { + "startTime": 52.951, + "startTimeFormatted": "00:00:52.951", + "endTime": 54.63, + "endTimeFormatted": "00:00:54.630", + "body": "fantastic book. So I hope that" + }, + { + "startTime": 54.631, + "startTimeFormatted": "00:00:54.631", + "endTime": 56.4, + "endTimeFormatted": "00:00:56.400", + "body": "this conversation is helpful for" + }, + { + "startTime": 56.401, + "startTimeFormatted": "00:00:56.401", + "endTime": 57.96, + "endTimeFormatted": "00:00:57.960", + "body": "you and that you get a lot out" + }, + { + "startTime": 57.961, + "startTimeFormatted": "00:00:57.961", + "endTime": 59.58, + "endTimeFormatted": "00:00:59.580", + "body": "of it. And without further ado," + }, + { + "startTime": 59.64, + "startTimeFormatted": "00:00:59.640", + "endTime": 61.29, + "endTimeFormatted": "00:01:01.290", + "body": "here's my conversation with Eric" + }, + { + "startTime": 61.291, + "startTimeFormatted": "00:01:01.291", + "endTime": 61.62, + "endTimeFormatted": "00:01:01.620", + "body": "Nuzum." + }, + { + "startTime": 65.52, + "startTimeFormatted": "00:01:05.520", + "endTime": 67.73, + "endTimeFormatted": "00:01:07.730", + "speaker": "Eric", + "body": "So my name is Eric Nuzum and," + }, + { + "startTime": 68.09, + "startTimeFormatted": "00:01:08.090", + "endTime": 70.73, + "endTimeFormatted": "00:01:10.730", + "body": "uh, I, um, spent most of the" + }, + { + "startTime": 70.731, + "startTimeFormatted": "00:01:10.731", + "endTime": 71.69, + "endTimeFormatted": "00:01:11.690", + "body": "early part of my career in" + }, + { + "startTime": 71.691, + "startTimeFormatted": "00:01:11.691", + "endTime": 73.43, + "endTimeFormatted": "00:01:13.430", + "body": "broadcast and eventually worked" + }, + { + "startTime": 73.431, + "startTimeFormatted": "00:01:13.431", + "endTime": 75.68, + "endTimeFormatted": "00:01:15.680", + "body": "my way up to working at NPR. And" + }, + { + "startTime": 75.681, + "startTimeFormatted": "00:01:15.681", + "endTime": 77.57, + "endTimeFormatted": "00:01:17.570", + "body": "I started there in 2004 and" + }, + { + "startTime": 77.99, + "startTimeFormatted": "00:01:17.990", + "endTime": 78.95, + "endTimeFormatted": "00:01:18.950", + "body": "listening less than a year" + }, + { + "startTime": 78.951, + "startTimeFormatted": "00:01:18.951", + "endTime": 82.13, + "endTimeFormatted": "00:01:22.130", + "body": "later, I was in the, um, the" + }, + { + "startTime": 82.131, + "startTimeFormatted": "00:01:22.131", + "endTime": 83.75, + "endTimeFormatted": "00:01:23.750", + "body": "cafeteria line at NPR and the" + }, + { + "startTime": 83.751, + "startTimeFormatted": "00:01:23.751", + "endTime": 85.46, + "endTimeFormatted": "00:01:25.460", + "body": "guy who was our COO at the time" + }, + { + "startTime": 85.85, + "startTimeFormatted": "00:01:25.850", + "endTime": 87.14, + "endTimeFormatted": "00:01:27.140", + "body": "was behind me trying to make" + }, + { + "startTime": 87.141, + "startTimeFormatted": "00:01:27.141", + "endTime": 88.85, + "endTimeFormatted": "00:01:28.850", + "body": "some kind of awkward chit-chat." + }, + { + "startTime": 89.45, + "startTimeFormatted": "00:01:29.450", + "endTime": 90.08, + "endTimeFormatted": "00:01:30.080", + "body": "He says, well, what's" + }, + { + "startTime": 90.081, + "startTimeFormatted": "00:01:30.081", + "endTime": 90.98, + "endTimeFormatted": "00:01:30.980", + "body": "interesting that you've seen" + }, + { + "startTime": 90.981, + "startTimeFormatted": "00:01:30.981", + "endTime": 91.88, + "endTimeFormatted": "00:01:31.880", + "body": "lately. And I said, well," + }, + { + "startTime": 91.881, + "startTimeFormatted": "00:01:31.881", + "endTime": 93.32, + "endTimeFormatted": "00:01:33.320", + "body": "there's this podcasting thing." + }, + { + "startTime": 93.321, + "startTimeFormatted": "00:01:33.321", + "endTime": 94.64, + "endTimeFormatted": "00:01:34.640", + "body": "And I started explaining to him" + }, + { + "startTime": 94.641, + "startTimeFormatted": "00:01:34.641", + "endTime": 95.9, + "endTimeFormatted": "00:01:35.900", + "body": "in the lunch line, just gotta" + }, + { + "startTime": 95.901, + "startTimeFormatted": "00:01:35.901", + "endTime": 97.88, + "endTimeFormatted": "00:01:37.880", + "body": "make conversation. He's like," + }, + { + "startTime": 97.91, + "startTimeFormatted": "00:01:37.910", + "endTime": 100.34, + "endTimeFormatted": "00:01:40.340", + "body": "Oh, come by and give me a little" + }, + { + "startTime": 100.341, + "startTimeFormatted": "00:01:40.341", + "endTime": 102.14, + "endTimeFormatted": "00:01:42.140", + "body": "spiel on it. And so I came, I" + }, + { + "startTime": 102.141, + "startTimeFormatted": "00:01:42.141", + "endTime": 103.16, + "endTimeFormatted": "00:01:43.160", + "body": "made an appointment, went and" + }, + { + "startTime": 103.161, + "startTimeFormatted": "00:01:43.161", + "endTime": 105.83, + "endTimeFormatted": "00:01:45.830", + "body": "gave a spiel a couple of weeks" + }, + { + "startTime": 105.831, + "startTimeFormatted": "00:01:45.831", + "endTime": 107.09, + "endTimeFormatted": "00:01:47.090", + "body": "later, he shows back up at my" + }, + { + "startTime": 107.091, + "startTimeFormatted": "00:01:47.091", + "endTime": 109.04, + "endTimeFormatted": "00:01:49.040", + "body": "door and says, you have a team" + }, + { + "startTime": 109.041, + "startTimeFormatted": "00:01:49.041", + "endTime": 111.08, + "endTimeFormatted": "00:01:51.080", + "body": "of eight and you have 12 weeks." + }, + { + "startTime": 111.53, + "startTimeFormatted": "00:01:51.530", + "endTime": 112.76, + "endTimeFormatted": "00:01:52.760", + "body": "And at the end of that 12 weeks," + }, + { + "startTime": 112.761, + "startTimeFormatted": "00:01:52.761", + "endTime": 113.63, + "endTimeFormatted": "00:01:53.630", + "body": "we want there to be NPR" + }, + { + "startTime": 113.631, + "startTimeFormatted": "00:01:53.631", + "endTime": 116.18, + "endTimeFormatted": "00:01:56.180", + "body": "podcasts. I'm like, okay. And we" + }, + { + "startTime": 116.37, + "startTimeFormatted": "00:01:56.370", + "endTime": 117.26, + "endTimeFormatted": "00:01:57.260", + "body": "actually delivered it a month." + }, + { + "startTime": 117.29, + "startTimeFormatted": "00:01:57.290", + "endTime": 119, + "endTimeFormatted": "00:01:59.000", + "body": "We got an extra month. Uh, we" + }, + { + "startTime": 119.001, + "startTimeFormatted": "00:01:59.001", + "endTime": 120.2, + "endTimeFormatted": "00:02:00.200", + "body": "delivered it. It was 32" + }, + { + "startTime": 120.201, + "startTimeFormatted": "00:02:00.201", + "endTime": 122.06, + "endTimeFormatted": "00:02:02.060", + "body": "podcasts. And then for the" + }, + { + "startTime": 122.061, + "startTimeFormatted": "00:02:02.061", + "endTime": 123.2, + "endTimeFormatted": "00:02:03.200", + "body": "following decade, I kind of" + }, + { + "startTime": 123.201, + "startTimeFormatted": "00:02:03.201", + "endTime": 124.7, + "endTimeFormatted": "00:02:04.700", + "body": "remained kind of the editorial" + }, + { + "startTime": 124.701, + "startTimeFormatted": "00:02:04.701", + "endTime": 126.62, + "endTimeFormatted": "00:02:06.620", + "body": "lead on NPR podcasts, both" + }, + { + "startTime": 127.07, + "startTimeFormatted": "00:02:07.070", + "endTime": 128.33, + "endTimeFormatted": "00:02:08.330", + "body": "figuring out how to take in pair" + }, + { + "startTime": 128.331, + "startTimeFormatted": "00:02:08.331", + "endTime": 129.62, + "endTimeFormatted": "00:02:09.620", + "body": "programming and have it thrive" + }, + { + "startTime": 129.621, + "startTimeFormatted": "00:02:09.621", + "endTime": 130.94, + "endTimeFormatted": "00:02:10.940", + "body": "in the podcast world, sound" + }, + { + "startTime": 131.21, + "startTimeFormatted": "00:02:11.210", + "endTime": 133.79, + "endTimeFormatted": "00:02:13.790", + "body": "authentic there and also making" + }, + { + "startTime": 133.791, + "startTimeFormatted": "00:02:13.791", + "endTime": 134.96, + "endTimeFormatted": "00:02:14.960", + "body": "new things that were intended" + }, + { + "startTime": 135.2, + "startTimeFormatted": "00:02:15.200", + "endTime": 136.55, + "endTimeFormatted": "00:02:16.550", + "body": "originally to be in that space" + }, + { + "startTime": 136.97, + "startTimeFormatted": "00:02:16.970", + "endTime": 139, + "endTimeFormatted": "00:02:19.000", + "body": "and did that for a decade. And" + }, + { + "startTime": 139.001, + "startTimeFormatted": "00:02:19.001", + "endTime": 140.75, + "endTimeFormatted": "00:02:20.750", + "body": "then a couple of years ago," + }, + { + "startTime": 140.78, + "startTimeFormatted": "00:02:20.780", + "endTime": 141.8, + "endTimeFormatted": "00:02:21.800", + "body": "probably four and a half years" + }, + { + "startTime": 141.801, + "startTimeFormatted": "00:02:21.801", + "endTime": 143.57, + "endTimeFormatted": "00:02:23.570", + "body": "or so ago, I left NPR and went" + }, + { + "startTime": 143.571, + "startTimeFormatted": "00:02:23.571", + "endTime": 144.83, + "endTimeFormatted": "00:02:24.830", + "body": "to Ottawa, which is part of the" + }, + { + "startTime": 144.831, + "startTimeFormatted": "00:02:24.831", + "endTime": 147.68, + "endTimeFormatted": "00:02:27.680", + "body": "Amazon. Uh, you, you extended" + }, + { + "startTime": 147.681, + "startTimeFormatted": "00:02:27.681", + "endTime": 150.38, + "endTimeFormatted": "00:02:30.380", + "body": "universe and, um, uh, created" + }, + { + "startTime": 150.381, + "startTimeFormatted": "00:02:30.381", + "endTime": 151.67, + "endTimeFormatted": "00:02:31.670", + "body": "original the original content" + }, + { + "startTime": 151.671, + "startTimeFormatted": "00:02:31.671", + "endTime": 154.82, + "endTimeFormatted": "00:02:34.820", + "body": "team there. Uh, and then about a" + }, + { + "startTime": 154.821, + "startTimeFormatted": "00:02:34.821", + "endTime": 156.56, + "endTimeFormatted": "00:02:36.560", + "body": "year or so ago, uh, one of my" + }, + { + "startTime": 156.561, + "startTimeFormatted": "00:02:36.561", + "endTime": 158.87, + "endTimeFormatted": "00:02:38.870", + "body": "friends and I left and started" + }, + { + "startTime": 158.871, + "startTimeFormatted": "00:02:38.871", + "endTime": 160.52, + "endTimeFormatted": "00:02:40.520", + "body": "magnificent noise, which is a," + }, + { + "startTime": 160.79, + "startTimeFormatted": "00:02:40.790", + "endTime": 163.04, + "endTimeFormatted": "00:02:43.040", + "body": "uh, um, which is a podcast" + }, + { + "startTime": 163.041, + "startTimeFormatted": "00:02:43.041", + "endTime": 164.06, + "endTimeFormatted": "00:02:44.060", + "body": "production and consultation" + }, + { + "startTime": 164.061, + "startTimeFormatted": "00:02:44.061", + "endTime": 165.47, + "endTimeFormatted": "00:02:45.470", + "body": "company, uh, based in New York." + }, + { + "startTime": 166.07, + "startTimeFormatted": "00:02:46.070", + "endTime": 166.07, + "endTimeFormatted": "00:02:46.070", + "body": "And," + }, + { + "startTime": 166.25, + "startTimeFormatted": "00:02:46.250", + "endTime": 167.81, + "endTimeFormatted": "00:02:47.810", + "speaker": "Travis", + "body": "And so now you have, uh, your" + }, + { + "startTime": 167.811, + "startTimeFormatted": "00:02:47.811", + "endTime": 170.51, + "endTimeFormatted": "00:02:50.510", + "body": "first podcast related book, um," + }, + { + "startTime": 170.53, + "startTimeFormatted": "00:02:50.530", + "endTime": 172.88, + "endTimeFormatted": "00:02:52.880", + "body": "make noise. Yeah. And I love as" + }, + { + "startTime": 172.881, + "startTimeFormatted": "00:02:52.881", + "endTime": 174.56, + "endTimeFormatted": "00:02:54.560", + "body": "I was going through and reading" + }, + { + "startTime": 174.561, + "startTimeFormatted": "00:02:54.561", + "endTime": 176.63, + "endTimeFormatted": "00:02:56.630", + "body": "it. And, and specifically one of" + }, + { + "startTime": 176.631, + "startTimeFormatted": "00:02:56.631", + "endTime": 178.25, + "endTimeFormatted": "00:02:58.250", + "body": "the things that you harp on, uh," + }, + { + "startTime": 178.251, + "startTimeFormatted": "00:02:58.251", + "endTime": 179.38, + "endTimeFormatted": "00:02:59.380", + "body": "which we'll dive into about the" + }, + { + "startTime": 179.381, + "startTimeFormatted": "00:02:59.381", + "endTime": 181.24, + "endTimeFormatted": "00:03:01.240", + "body": "10 word description, I was like," + }, + { + "startTime": 181.241, + "startTimeFormatted": "00:03:01.241", + "endTime": 182.29, + "endTimeFormatted": "00:03:02.290", + "body": "let me go back to the front" + }, + { + "startTime": 182.291, + "startTimeFormatted": "00:03:02.291", + "endTime": 184.63, + "endTimeFormatted": "00:03:04.630", + "body": "cover and see if he followed his" + }, + { + "startTime": 184.631, + "startTimeFormatted": "00:03:04.631", + "endTime": 186.82, + "endTimeFormatted": "00:03:06.820", + "body": "own rules. He did even got an" + }, + { + "startTime": 186.821, + "startTimeFormatted": "00:03:06.821", + "endTime": 188.53, + "endTimeFormatted": "00:03:08.530", + "body": "extra word, despair, a creative" + }, + { + "startTime": 188.59, + "startTimeFormatted": "00:03:08.590", + "endTime": 189.79, + "endTimeFormatted": "00:03:09.790", + "body": "guide to podcasting and great" + }, + { + "startTime": 189.791, + "startTimeFormatted": "00:03:09.791", + "endTime": 192.13, + "endTimeFormatted": "00:03:12.130", + "body": "audio storytelling. Um, so why" + }, + { + "startTime": 192.131, + "startTimeFormatted": "00:03:12.131", + "endTime": 194.74, + "endTimeFormatted": "00:03:14.740", + "body": "did you feel like now was the" + }, + { + "startTime": 194.741, + "startTimeFormatted": "00:03:14.741", + "endTime": 197.08, + "endTimeFormatted": "00:03:17.080", + "body": "time to publish this book that" + }, + { + "startTime": 197.35, + "startTimeFormatted": "00:03:17.350", + "endTime": 198.55, + "endTimeFormatted": "00:03:18.550", + "body": "you've been in podcasting" + }, + { + "startTime": 198.551, + "startTimeFormatted": "00:03:18.551", + "endTime": 200.56, + "endTimeFormatted": "00:03:20.560", + "body": "basically since the beginning" + }, + { + "startTime": 200.77, + "startTimeFormatted": "00:03:20.770", + "endTime": 201.91, + "endTimeFormatted": "00:03:21.910", + "body": "longer than just about anyone" + }, + { + "startTime": 201.911, + "startTimeFormatted": "00:03:21.911", + "endTime": 203.74, + "endTimeFormatted": "00:03:23.740", + "body": "listening to this episode? Uh," + }, + { + "startTime": 203.8, + "startTimeFormatted": "00:03:23.800", + "endTime": 205, + "endTimeFormatted": "00:03:25.000", + "body": "so why did you feel like now is" + }, + { + "startTime": 205.001, + "startTimeFormatted": "00:03:25.001", + "endTime": 207.37, + "endTimeFormatted": "00:03:27.370", + "body": "a really good time to, to bring" + }, + { + "startTime": 207.371, + "startTimeFormatted": "00:03:27.371", + "endTime": 208.63, + "endTimeFormatted": "00:03:28.630", + "body": "this book out into the world and" + }, + { + "startTime": 208.631, + "startTimeFormatted": "00:03:28.631", + "endTime": 209.74, + "endTimeFormatted": "00:03:29.740", + "body": "step into, uh, promote it?" + }, + { + "startTime": 210.63, + "startTimeFormatted": "00:03:30.630", + "endTime": 211.86, + "endTimeFormatted": "00:03:31.860", + "speaker": "Eric", + "body": "That's a really good question" + }, + { + "startTime": 211.89, + "startTimeFormatted": "00:03:31.890", + "endTime": 213.21, + "endTimeFormatted": "00:03:33.210", + "body": "because I think there's two" + }, + { + "startTime": 213.211, + "startTimeFormatted": "00:03:33.211", + "endTime": 214.89, + "endTimeFormatted": "00:03:34.890", + "body": "factors. One, I think we are now" + }, + { + "startTime": 214.891, + "startTimeFormatted": "00:03:34.891", + "endTime": 216.48, + "endTimeFormatted": "00:03:36.480", + "body": "at the point where there's such" + }, + { + "startTime": 216.51, + "startTimeFormatted": "00:03:36.510", + "endTime": 217.89, + "endTimeFormatted": "00:03:37.890", + "body": "a groundswell of interest in" + }, + { + "startTime": 217.891, + "startTimeFormatted": "00:03:37.891", + "endTime": 220.02, + "endTimeFormatted": "00:03:40.020", + "body": "podcasting that, that having a" + }, + { + "startTime": 220.021, + "startTimeFormatted": "00:03:40.021", + "endTime": 222.24, + "endTimeFormatted": "00:03:42.240", + "body": "book about podcast creation," + }, + { + "startTime": 222.241, + "startTimeFormatted": "00:03:42.241", + "endTime": 223.92, + "endTimeFormatted": "00:03:43.920", + "body": "that isn't like tips for" + }, + { + "startTime": 223.921, + "startTimeFormatted": "00:03:43.921", + "endTime": 225.51, + "endTimeFormatted": "00:03:45.510", + "body": "equipment to buy or how to make" + }, + { + "startTime": 225.511, + "startTimeFormatted": "00:03:45.511", + "endTime": 226.44, + "endTimeFormatted": "00:03:46.440", + "body": "money at it, but it's really" + }, + { + "startTime": 226.441, + "startTimeFormatted": "00:03:46.441", + "endTime": 228, + "endTimeFormatted": "00:03:48.000", + "body": "focused on how to do something." + }, + { + "startTime": 228.001, + "startTimeFormatted": "00:03:48.001", + "endTime": 230.28, + "endTimeFormatted": "00:03:50.280", + "body": "Well, that's a commercially" + }, + { + "startTime": 230.281, + "startTimeFormatted": "00:03:50.281", + "endTime": 232.2, + "endTimeFormatted": "00:03:52.200", + "body": "viable product now. And I don't" + }, + { + "startTime": 232.201, + "startTimeFormatted": "00:03:52.201", + "endTime": 233.19, + "endTimeFormatted": "00:03:53.190", + "body": "think even a couple of years" + }, + { + "startTime": 233.191, + "startTimeFormatted": "00:03:53.191", + "endTime": 234.96, + "endTimeFormatted": "00:03:54.960", + "body": "ago, it was when I had been" + }, + { + "startTime": 234.961, + "startTimeFormatted": "00:03:54.961", + "endTime": 235.92, + "endTimeFormatted": "00:03:55.920", + "body": "approached a couple of times" + }, + { + "startTime": 235.921, + "startTimeFormatted": "00:03:55.921", + "endTime": 237.21, + "endTimeFormatted": "00:03:57.210", + "body": "about doing this over the years." + }, + { + "startTime": 237.211, + "startTimeFormatted": "00:03:57.211", + "endTime": 238.59, + "endTimeFormatted": "00:03:58.590", + "body": "And I'm like, I just don't think" + }, + { + "startTime": 238.68, + "startTimeFormatted": "00:03:58.680", + "endTime": 239.37, + "endTimeFormatted": "00:03:59.370", + "body": "it's, I think it's a niche" + }, + { + "startTime": 239.371, + "startTimeFormatted": "00:03:59.371", + "endTime": 240.36, + "endTimeFormatted": "00:04:00.360", + "body": "product. I don't think it's" + }, + { + "startTime": 240.87, + "startTimeFormatted": "00:04:00.870", + "endTime": 241.71, + "endTimeFormatted": "00:04:01.710", + "body": "going to be worth my time to" + }, + { + "startTime": 241.711, + "startTimeFormatted": "00:04:01.711", + "endTime": 242.88, + "endTimeFormatted": "00:04:02.880", + "body": "spend time writing that book." + }, + { + "startTime": 243.36, + "startTimeFormatted": "00:04:03.360", + "endTime": 246.18, + "endTimeFormatted": "00:04:06.180", + "body": "And, um, the last time I was" + }, + { + "startTime": 246.181, + "startTimeFormatted": "00:04:06.181", + "endTime": 247.95, + "endTimeFormatted": "00:04:07.950", + "body": "asked about it, I said, yes, and" + }, + { + "startTime": 247.951, + "startTimeFormatted": "00:04:07.951", + "endTime": 249.21, + "endTimeFormatted": "00:04:09.210", + "body": "was kind of shocked at the" + }, + { + "startTime": 249.211, + "startTimeFormatted": "00:04:09.211", + "endTime": 250.71, + "endTimeFormatted": "00:04:10.710", + "body": "reaction. And you know, one of" + }, + { + "startTime": 250.711, + "startTimeFormatted": "00:04:10.711", + "endTime": 251.94, + "endTimeFormatted": "00:04:11.940", + "body": "the great things about seeing" + }, + { + "startTime": 251.941, + "startTimeFormatted": "00:04:11.941", + "endTime": 254.85, + "endTimeFormatted": "00:04:14.850", + "body": "podcasting evolve is watching at" + }, + { + "startTime": 254.851, + "startTimeFormatted": "00:04:14.851", + "endTime": 258.24, + "endTimeFormatted": "00:04:18.240", + "body": "points like this, um, that this" + }, + { + "startTime": 258.241, + "startTimeFormatted": "00:04:18.241", + "endTime": 260.88, + "endTimeFormatted": "00:04:20.880", + "body": "is, you know, a profession and a" + }, + { + "startTime": 260.881, + "startTimeFormatted": "00:04:20.881", + "endTime": 263.49, + "endTimeFormatted": "00:04:23.490", + "body": "vocation and a hobby, and there" + }, + { + "startTime": 263.491, + "startTimeFormatted": "00:04:23.491", + "endTime": 265.89, + "endTimeFormatted": "00:04:25.890", + "body": "are tools for it with a book or" + }, + { + "startTime": 265.891, + "startTimeFormatted": "00:04:25.891", + "endTime": 268.11, + "endTimeFormatted": "00:04:28.110", + "body": "microphones or recording units" + }, + { + "startTime": 268.111, + "startTimeFormatted": "00:04:28.111", + "endTime": 269.91, + "endTimeFormatted": "00:04:29.910", + "body": "or things that were literally" + }, + { + "startTime": 269.911, + "startTimeFormatted": "00:04:29.911", + "endTime": 271.83, + "endTimeFormatted": "00:04:31.830", + "body": "unimaginable four or five years" + }, + { + "startTime": 271.831, + "startTimeFormatted": "00:04:31.831", + "endTime": 274.08, + "endTimeFormatted": "00:04:34.080", + "body": "ago. Now I'm a, I'm a big fan of" + }, + { + "startTime": 274.081, + "startTimeFormatted": "00:04:34.081", + "endTime": 275.61, + "endTimeFormatted": "00:04:35.610", + "body": "the Roadcaster pro, which is a" + }, + { + "startTime": 275.611, + "startTimeFormatted": "00:04:35.611", + "endTime": 277.08, + "endTimeFormatted": "00:04:37.080", + "body": "little desktop unit though. I" + }, + { + "startTime": 277.081, + "startTimeFormatted": "00:04:37.081", + "endTime": 279.15, + "endTimeFormatted": "00:04:39.150", + "body": "advocate a lot of podcasters buy" + }, + { + "startTime": 279.151, + "startTimeFormatted": "00:04:39.151", + "endTime": 281.25, + "endTimeFormatted": "00:04:41.250", + "body": "because it's$600 containing" + }, + { + "startTime": 281.251, + "startTimeFormatted": "00:04:41.251", + "endTime": 282.54, + "endTimeFormatted": "00:04:42.540", + "body": "technology that will cost you" + }, + { + "startTime": 282.541, + "startTimeFormatted": "00:04:42.541", + "endTime": 285.57, + "endTimeFormatted": "00:04:45.570", + "body": "10,$15,000 to duplicate four or" + }, + { + "startTime": 285.571, + "startTimeFormatted": "00:04:45.571", + "endTime": 287.04, + "endTimeFormatted": "00:04:47.040", + "body": "five years ago. I mean, that to" + }, + { + "startTime": 287.041, + "startTimeFormatted": "00:04:47.041", + "endTime": 288.66, + "endTimeFormatted": "00:04:48.660", + "body": "me is exciting and amazing. So" + }, + { + "startTime": 289.08, + "startTimeFormatted": "00:04:49.080", + "endTime": 290.07, + "endTimeFormatted": "00:04:50.070", + "body": "first I think we've kind of" + }, + { + "startTime": 290.13, + "startTimeFormatted": "00:04:50.130", + "endTime": 291.96, + "endTimeFormatted": "00:04:51.960", + "body": "matured into being an industry" + }, + { + "startTime": 291.961, + "startTimeFormatted": "00:04:51.961", + "endTime": 293.82, + "endTimeFormatted": "00:04:53.820", + "body": "now that can support that kind" + }, + { + "startTime": 293.821, + "startTimeFormatted": "00:04:53.821", + "endTime": 296.86, + "endTimeFormatted": "00:04:56.860", + "body": "of thinking and a product like," + }, + { + "startTime": 296.94, + "startTimeFormatted": "00:04:56.940", + "endTime": 298.68, + "endTimeFormatted": "00:04:58.680", + "body": "like a book. And the second" + }, + { + "startTime": 298.681, + "startTimeFormatted": "00:04:58.681", + "endTime": 302.25, + "endTimeFormatted": "00:05:02.250", + "body": "reason is, um, there's so many" + }, + { + "startTime": 302.251, + "startTimeFormatted": "00:05:02.251", + "endTime": 304.95, + "endTimeFormatted": "00:05:04.950", + "body": "new podcasts and, and the thing" + }, + { + "startTime": 304.951, + "startTimeFormatted": "00:05:04.951", + "endTime": 307.68, + "endTimeFormatted": "00:05:07.680", + "body": "that surprises me is someone who" + }, + { + "startTime": 307.71, + "startTimeFormatted": "00:05:07.710", + "endTime": 309.54, + "endTimeFormatted": "00:05:09.540", + "body": "is a consultant for a lot of" + }, + { + "startTime": 309.69, + "startTimeFormatted": "00:05:09.690", + "endTime": 311.78, + "endTimeFormatted": "00:05:11.780", + "body": "people, individuals and I, I" + }, + { + "startTime": 311.79, + "startTimeFormatted": "00:05:11.790", + "endTime": 312.84, + "endTimeFormatted": "00:05:12.840", + "body": "work with people who are sitting" + }, + { + "startTime": 312.841, + "startTimeFormatted": "00:05:12.841", + "endTime": 313.62, + "endTimeFormatted": "00:05:13.620", + "body": "around their kitchen table," + }, + { + "startTime": 313.621, + "startTimeFormatted": "00:05:13.621", + "endTime": 315.27, + "endTimeFormatted": "00:05:15.270", + "body": "trying to figure things out up" + }, + { + "startTime": 315.271, + "startTimeFormatted": "00:05:15.271", + "endTime": 316.44, + "endTimeFormatted": "00:05:16.440", + "body": "to some of the largest media" + }, + { + "startTime": 316.441, + "startTimeFormatted": "00:05:16.441", + "endTime": 318.51, + "endTimeFormatted": "00:05:18.510", + "body": "companies in the world and the" + }, + { + "startTime": 318.511, + "startTimeFormatted": "00:05:18.511", + "endTime": 320.1, + "endTimeFormatted": "00:05:20.100", + "body": "conversations they have are" + }, + { + "startTime": 320.101, + "startTimeFormatted": "00:05:20.101", + "endTime": 321.84, + "endTimeFormatted": "00:05:21.840", + "body": "almost identical, even though" + }, + { + "startTime": 321.841, + "startTimeFormatted": "00:05:21.841", + "endTime": 324.27, + "endTimeFormatted": "00:05:24.270", + "body": "you have many more dollars, much" + }, + { + "startTime": 324.3, + "startTimeFormatted": "00:05:24.300", + "endTime": 327.42, + "endTimeFormatted": "00:05:27.420", + "body": "bigger names and, um, uh, you" + }, + { + "startTime": 327.421, + "startTimeFormatted": "00:05:27.421", + "endTime": 329.58, + "endTimeFormatted": "00:05:29.580", + "body": "know, uh, resources and crazy" + }, + { + "startTime": 329.581, + "startTimeFormatted": "00:05:29.581", + "endTime": 330.99, + "endTimeFormatted": "00:05:30.990", + "body": "resources compared to people who" + }, + { + "startTime": 330.991, + "startTimeFormatted": "00:05:30.991", + "endTime": 331.8, + "endTimeFormatted": "00:05:31.800", + "body": "are trying to figure out how to" + }, + { + "startTime": 331.801, + "startTimeFormatted": "00:05:31.801", + "endTime": 333.51, + "endTimeFormatted": "00:05:33.510", + "body": "do this with their friend, their" + }, + { + "startTime": 333.54, + "startTimeFormatted": "00:05:33.540", + "endTime": 335.04, + "endTimeFormatted": "00:05:35.040", + "body": "obstacles are often the same" + }, + { + "startTime": 335.22, + "startTimeFormatted": "00:05:35.220", + "endTime": 337.29, + "endTimeFormatted": "00:05:37.290", + "body": "they're kind of concerns or, or," + }, + { + "startTime": 337.291, + "startTimeFormatted": "00:05:37.291", + "endTime": 339, + "endTimeFormatted": "00:05:39.000", + "body": "or, or fears of how to get into" + }, + { + "startTime": 339.001, + "startTimeFormatted": "00:05:39.001", + "endTime": 340.74, + "endTimeFormatted": "00:05:40.740", + "body": "this. And they get stuck on the" + }, + { + "startTime": 340.741, + "startTimeFormatted": "00:05:40.741", + "endTime": 343.17, + "endTimeFormatted": "00:05:43.170", + "body": "same things too. And so when I" + }, + { + "startTime": 343.171, + "startTimeFormatted": "00:05:43.171", + "endTime": 345.12, + "endTimeFormatted": "00:05:45.120", + "body": "started to realize how universal" + }, + { + "startTime": 345.66, + "startTimeFormatted": "00:05:45.660", + "endTime": 347.4, + "endTimeFormatted": "00:05:47.400", + "body": "a lot of the problems are that" + }, + { + "startTime": 347.43, + "startTimeFormatted": "00:05:47.430", + "endTime": 348.81, + "endTimeFormatted": "00:05:48.810", + "body": "prevent people from being able" + }, + { + "startTime": 348.811, + "startTimeFormatted": "00:05:48.811", + "endTime": 350.01, + "endTimeFormatted": "00:05:50.010", + "body": "to achieve what they want to do." + }, + { + "startTime": 350.82, + "startTimeFormatted": "00:05:50.820", + "endTime": 351.99, + "endTimeFormatted": "00:05:51.990", + "body": "Um, I like there's, there's" + }, + { + "startTime": 352.05, + "startTimeFormatted": "00:05:52.050", + "endTime": 353.22, + "endTimeFormatted": "00:05:53.220", + "body": "solutions to that. I've" + }, + { + "startTime": 353.221, + "startTimeFormatted": "00:05:53.221", + "endTime": 354.15, + "endTimeFormatted": "00:05:54.150", + "body": "struggled through this a lot" + }, + { + "startTime": 354.151, + "startTimeFormatted": "00:05:54.151", + "endTime": 357.29, + "endTimeFormatted": "00:05:57.290", + "body": "myself. So I just, and I was" + }, + { + "startTime": 357.291, + "startTimeFormatted": "00:05:57.291", + "endTime": 358.4, + "endTimeFormatted": "00:05:58.400", + "body": "also worried when, when I was" + }, + { + "startTime": 358.401, + "startTimeFormatted": "00:05:58.401", + "endTime": 359.93, + "endTimeFormatted": "00:05:59.930", + "body": "first asked about this book that" + }, + { + "startTime": 359.931, + "startTimeFormatted": "00:05:59.931", + "endTime": 361.31, + "endTimeFormatted": "00:06:01.310", + "body": "I could write about a chapter" + }, + { + "startTime": 361.45, + "startTimeFormatted": "00:06:01.450", + "endTime": 362.27, + "endTimeFormatted": "00:06:02.270", + "body": "and about that would be about" + }, + { + "startTime": 362.271, + "startTimeFormatted": "00:06:02.271", + "endTime": 365.33, + "endTimeFormatted": "00:06:05.330", + "body": "it. And so I had a couple of" + }, + { + "startTime": 365.331, + "startTimeFormatted": "00:06:05.331", + "endTime": 366.62, + "endTimeFormatted": "00:06:06.620", + "body": "days off, for some reason, I sat" + }, + { + "startTime": 366.621, + "startTimeFormatted": "00:06:06.621", + "endTime": 367.25, + "endTimeFormatted": "00:06:07.250", + "body": "down and said, okay, I'm just" + }, + { + "startTime": 367.251, + "startTimeFormatted": "00:06:07.251", + "endTime": 368.87, + "endTimeFormatted": "00:06:08.870", + "body": "going to try. I didn't even say" + }, + { + "startTime": 368.871, + "startTimeFormatted": "00:06:08.871", + "endTime": 369.68, + "endTimeFormatted": "00:06:09.680", + "body": "yes to write in the book. I'm" + }, + { + "startTime": 369.681, + "startTimeFormatted": "00:06:09.681", + "endTime": 370.52, + "endTimeFormatted": "00:06:10.520", + "body": "just going to try to write a" + }, + { + "startTime": 370.521, + "startTimeFormatted": "00:06:10.521", + "endTime": 372.38, + "endTimeFormatted": "00:06:12.380", + "body": "chapter. And I sat down on a" + }, + { + "startTime": 372.381, + "startTimeFormatted": "00:06:12.381", + "endTime": 373.64, + "endTimeFormatted": "00:06:13.640", + "body": "thought about what frustrates" + }, + { + "startTime": 373.641, + "startTimeFormatted": "00:06:13.641", + "endTime": 376.13, + "endTimeFormatted": "00:06:16.130", + "body": "people and I just started. And" + }, + { + "startTime": 376.131, + "startTimeFormatted": "00:06:16.131", + "endTime": 377.63, + "endTimeFormatted": "00:06:17.630", + "body": "it became very clear to me that" + }, + { + "startTime": 377.99, + "startTimeFormatted": "00:06:17.990", + "endTime": 379.16, + "endTimeFormatted": "00:06:19.160", + "body": "there was something to be said" + }, + { + "startTime": 379.161, + "startTimeFormatted": "00:06:19.161", + "endTime": 381.02, + "endTimeFormatted": "00:06:21.020", + "body": "to an increasingly growing" + }, + { + "startTime": 381.021, + "startTimeFormatted": "00:06:21.021", + "endTime": 381.86, + "endTimeFormatted": "00:06:21.860", + "body": "community of people." + }, + { + "startTime": 382.57, + "startTimeFormatted": "00:06:22.570", + "endTime": 383.68, + "endTimeFormatted": "00:06:23.680", + "speaker": "Travis", + "body": "Well, and what I appreciate" + }, + { + "startTime": 383.681, + "startTimeFormatted": "00:06:23.681", + "endTime": 385.69, + "endTimeFormatted": "00:06:25.690", + "body": "about the angle that you took" + }, + { + "startTime": 385.691, + "startTimeFormatted": "00:06:25.691", + "endTime": 388.48, + "endTimeFormatted": "00:06:28.480", + "body": "with the book is that it's not," + }, + { + "startTime": 388.9, + "startTimeFormatted": "00:06:28.900", + "endTime": 390.88, + "endTimeFormatted": "00:06:30.880", + "body": "it isn't, it, isn't a book for" + }, + { + "startTime": 390.881, + "startTimeFormatted": "00:06:30.881", + "endTime": 392.98, + "endTimeFormatted": "00:06:32.980", + "body": "beginner podcasters in the sense" + }, + { + "startTime": 392.981, + "startTimeFormatted": "00:06:32.981", + "endTime": 393.7, + "endTimeFormatted": "00:06:33.700", + "body": "that if you're just getting" + }, + { + "startTime": 393.701, + "startTimeFormatted": "00:06:33.701", + "endTime": 394.96, + "endTimeFormatted": "00:06:34.960", + "body": "started, it's a very valuable" + }, + { + "startTime": 394.961, + "startTimeFormatted": "00:06:34.961", + "endTime": 396.34, + "endTimeFormatted": "00:06:36.340", + "body": "resource to help you avoid some" + }, + { + "startTime": 396.341, + "startTimeFormatted": "00:06:36.341", + "endTime": 398.83, + "endTimeFormatted": "00:06:38.830", + "body": "of those early mistakes, classic" + }, + { + "startTime": 398.831, + "startTimeFormatted": "00:06:38.831", + "endTime": 399.94, + "endTimeFormatted": "00:06:39.940", + "body": "mistakes, rookie mistakes that" + }, + { + "startTime": 399.941, + "startTimeFormatted": "00:06:39.941", + "endTime": 402.07, + "endTimeFormatted": "00:06:42.070", + "body": "you see, but it's also extremely" + }, + { + "startTime": 402.071, + "startTimeFormatted": "00:06:42.071", + "endTime": 404.23, + "endTimeFormatted": "00:06:44.230", + "body": "challenging. Even for someone" + }, + { + "startTime": 404.231, + "startTimeFormatted": "00:06:44.231", + "endTime": 405.1, + "endTimeFormatted": "00:06:45.100", + "body": "like myself, that's been in" + }, + { + "startTime": 405.101, + "startTimeFormatted": "00:06:45.101", + "endTime": 407.53, + "endTimeFormatted": "00:06:47.530", + "body": "podcasting for years to like you" + }, + { + "startTime": 407.531, + "startTimeFormatted": "00:06:47.531", + "endTime": 408.55, + "endTimeFormatted": "00:06:48.550", + "body": "start reading through this. And" + }, + { + "startTime": 408.551, + "startTimeFormatted": "00:06:48.551", + "endTime": 410.26, + "endTimeFormatted": "00:06:50.260", + "body": "you're like, I don't do half the" + }, + { + "startTime": 410.27, + "startTimeFormatted": "00:06:50.270", + "endTime": 412.12, + "endTimeFormatted": "00:06:52.120", + "body": "stuff that I even intellectually" + }, + { + "startTime": 412.121, + "startTimeFormatted": "00:06:52.121", + "endTime": 414.73, + "endTimeFormatted": "00:06:54.730", + "body": "know I should be doing. Um, and" + }, + { + "startTime": 414.731, + "startTimeFormatted": "00:06:54.731", + "endTime": 416.38, + "endTimeFormatted": "00:06:56.380", + "body": "one, one that I, I want to" + }, + { + "startTime": 416.83, + "startTimeFormatted": "00:06:56.830", + "endTime": 417.87, + "endTimeFormatted": "00:06:57.870", + "body": "really spend some time with," + }, + { + "startTime": 418, + "startTimeFormatted": "00:06:58.000", + "endTime": 418.63, + "endTimeFormatted": "00:06:58.630", + "body": "cause I feel like it would be" + }, + { + "startTime": 418.631, + "startTimeFormatted": "00:06:58.631", + "endTime": 419.83, + "endTimeFormatted": "00:06:59.830", + "body": "the most valuable for people" + }, + { + "startTime": 419.831, + "startTimeFormatted": "00:06:59.831", + "endTime": 421.45, + "endTimeFormatted": "00:07:01.450", + "body": "listening is the 10 word" + }, + { + "startTime": 421.451, + "startTimeFormatted": "00:07:01.451", + "endTime": 424.54, + "endTimeFormatted": "00:07:04.540", + "body": "description, because one of my" + }, + { + "startTime": 425.02, + "startTimeFormatted": "00:07:05.020", + "endTime": 427.09, + "endTimeFormatted": "00:07:07.090", + "body": "constant wrestling matches is" + }, + { + "startTime": 427.091, + "startTimeFormatted": "00:07:07.091", + "endTime": 429.73, + "endTimeFormatted": "00:07:09.730", + "body": "that I, as a, as a creative" + }, + { + "startTime": 429.731, + "startTimeFormatted": "00:07:09.731", + "endTime": 431.32, + "endTimeFormatted": "00:07:11.320", + "body": "outlet, want my podcast to be" + }, + { + "startTime": 431.321, + "startTimeFormatted": "00:07:11.321", + "endTime": 432.82, + "endTimeFormatted": "00:07:12.820", + "body": "self-serving in certain ways," + }, + { + "startTime": 433.09, + "startTimeFormatted": "00:07:13.090", + "endTime": 433.87, + "endTimeFormatted": "00:07:13.870", + "body": "right? Like I want to wake up" + }, + { + "startTime": 433.871, + "startTimeFormatted": "00:07:13.871", + "endTime": 434.86, + "endTimeFormatted": "00:07:14.860", + "body": "excited about making new" + }, + { + "startTime": 434.861, + "startTimeFormatted": "00:07:14.861", + "endTime": 436.3, + "endTimeFormatted": "00:07:16.300", + "body": "episodes. I want to, I want to" + }, + { + "startTime": 436.301, + "startTimeFormatted": "00:07:16.301", + "endTime": 437.62, + "endTimeFormatted": "00:07:17.620", + "body": "expand my creativity. I want to" + }, + { + "startTime": 437.621, + "startTimeFormatted": "00:07:17.621", + "endTime": 438.79, + "endTimeFormatted": "00:07:18.790", + "body": "try new things, experiment with" + }, + { + "startTime": 438.791, + "startTimeFormatted": "00:07:18.791", + "endTime": 441.01, + "endTimeFormatted": "00:07:21.010", + "body": "new things. Um, but you do a" + }, + { + "startTime": 441.011, + "startTimeFormatted": "00:07:21.011", + "endTime": 442.6, + "endTimeFormatted": "00:07:22.600", + "body": "really good job of kind of" + }, + { + "startTime": 442.601, + "startTimeFormatted": "00:07:22.601", + "endTime": 444.94, + "endTimeFormatted": "00:07:24.940", + "body": "helping push against that and in" + }, + { + "startTime": 444.941, + "startTimeFormatted": "00:07:24.941", + "endTime": 446.38, + "endTimeFormatted": "00:07:26.380", + "body": "a really good way, and the" + }, + { + "startTime": 446.381, + "startTimeFormatted": "00:07:26.381", + "endTime": 447.91, + "endTimeFormatted": "00:07:27.910", + "body": "importance of staying focused" + }, + { + "startTime": 448.36, + "startTimeFormatted": "00:07:28.360", + "endTime": 450.46, + "endTimeFormatted": "00:07:30.460", + "body": "and, and really being laser" + }, + { + "startTime": 450.461, + "startTimeFormatted": "00:07:30.461", + "endTime": 452.8, + "endTimeFormatted": "00:07:32.800", + "body": "focused on why does your podcast" + }, + { + "startTime": 453.22, + "startTimeFormatted": "00:07:33.220", + "endTime": 454.27, + "endTimeFormatted": "00:07:34.270", + "body": "exist for the expectations of" + }, + { + "startTime": 454.271, + "startTimeFormatted": "00:07:34.271", + "endTime": 456.31, + "endTimeFormatted": "00:07:36.310", + "body": "your listeners, um, and making" + }, + { + "startTime": 456.311, + "startTimeFormatted": "00:07:36.311", + "endTime": 457.57, + "endTimeFormatted": "00:07:37.570", + "body": "sure you over deliver on that." + }, + { + "startTime": 457.571, + "startTimeFormatted": "00:07:37.571", + "endTime": 459.19, + "endTimeFormatted": "00:07:39.190", + "body": "So I'd love to just, maybe even" + }, + { + "startTime": 459.191, + "startTimeFormatted": "00:07:39.191", + "endTime": 459.94, + "endTimeFormatted": "00:07:39.940", + "body": "if you want to just share the" + }, + { + "startTime": 459.941, + "startTimeFormatted": "00:07:39.941", + "endTime": 461.02, + "endTimeFormatted": "00:07:41.020", + "body": "anecdote that you had about your" + }, + { + "startTime": 461.021, + "startTimeFormatted": "00:07:41.021", + "endTime": 462.82, + "endTimeFormatted": "00:07:42.820", + "body": "yoga teacher and kind of going" + }, + { + "startTime": 462.821, + "startTimeFormatted": "00:07:42.821", + "endTime": 463.87, + "endTimeFormatted": "00:07:43.870", + "body": "through that exercise. So I" + }, + { + "startTime": 463.871, + "startTimeFormatted": "00:07:43.871", + "endTime": 464.86, + "endTimeFormatted": "00:07:44.860", + "body": "thought that was a good story." + }, + { + "startTime": 465.1, + "startTimeFormatted": "00:07:45.100", + "endTime": 466.15, + "endTimeFormatted": "00:07:46.150", + "body": "And I think we'll flesh out the" + }, + { + "startTime": 466.151, + "startTimeFormatted": "00:07:46.151", + "endTime": 468.52, + "endTimeFormatted": "00:07:48.520", + "body": "importance of having a really" + }, + { + "startTime": 468.521, + "startTimeFormatted": "00:07:48.521", + "endTime": 470.23, + "endTimeFormatted": "00:07:50.230", + "body": "clear idea of what your podcast" + }, + { + "startTime": 470.231, + "startTimeFormatted": "00:07:50.231", + "endTime": 470.62, + "endTimeFormatted": "00:07:50.620", + "body": "is about." + }, + { + "startTime": 471.13, + "startTimeFormatted": "00:07:51.130", + "endTime": 473.05, + "endTimeFormatted": "00:07:53.050", + "speaker": "Eric", + "body": "Yeah. I think a lot of my work" + }, + { + "startTime": 473.41, + "startTimeFormatted": "00:07:53.410", + "endTime": 475.03, + "endTimeFormatted": "00:07:55.030", + "body": "is just in general, a lot of my" + }, + { + "startTime": 475.031, + "startTimeFormatted": "00:07:55.031", + "endTime": 476.62, + "endTimeFormatted": "00:07:56.620", + "body": "work, including this book is" + }, + { + "startTime": 476.621, + "startTimeFormatted": "00:07:56.621", + "endTime": 478.38, + "endTimeFormatted": "00:07:58.380", + "body": "simply taking people's heads and" + }, + { + "startTime": 478.66, + "startTimeFormatted": "00:07:58.660", + "endTime": 479.26, + "endTimeFormatted": "00:07:59.260", + "body": "pointing them in a slightly" + }, + { + "startTime": 479.261, + "startTimeFormatted": "00:07:59.261", + "endTime": 481.21, + "endTimeFormatted": "00:08:01.210", + "body": "different direction. Uh, they're" + }, + { + "startTime": 481.211, + "startTimeFormatted": "00:08:01.211", + "endTime": 482.23, + "endTimeFormatted": "00:08:02.230", + "body": "worried about what they're going" + }, + { + "startTime": 482.231, + "startTimeFormatted": "00:08:02.231", + "endTime": 483.64, + "endTimeFormatted": "00:08:03.640", + "body": "to do whenever someone says they" + }, + { + "startTime": 483.641, + "startTimeFormatted": "00:08:03.641", + "endTime": 484.93, + "endTimeFormatted": "00:08:04.930", + "body": "want to do a podcast. And I say," + }, + { + "startTime": 484.931, + "startTimeFormatted": "00:08:04.931", + "endTime": 486.67, + "endTimeFormatted": "00:08:06.670", + "body": "what is it? They often describe" + }, + { + "startTime": 486.671, + "startTimeFormatted": "00:08:06.671", + "endTime": 488.05, + "endTimeFormatted": "00:08:08.050", + "body": "it from very features based" + }, + { + "startTime": 488.051, + "startTimeFormatted": "00:08:08.051", + "endTime": 489.16, + "endTimeFormatted": "00:08:09.160", + "body": "perspective. Oh, I'm going to," + }, + { + "startTime": 489.4, + "startTimeFormatted": "00:08:09.400", + "endTime": 490.84, + "endTimeFormatted": "00:08:10.840", + "body": "I'm going to have conversations" + }, + { + "startTime": 490.841, + "startTimeFormatted": "00:08:10.841", + "endTime": 492.46, + "endTimeFormatted": "00:08:12.460", + "body": "with women filmmakers about" + }, + { + "startTime": 492.85, + "startTimeFormatted": "00:08:12.850", + "endTime": 495.37, + "endTimeFormatted": "00:08:15.370", + "body": "women in film, right? That's a" + }, + { + "startTime": 495.371, + "startTimeFormatted": "00:08:15.371", + "endTime": 496.6, + "endTimeFormatted": "00:08:16.600", + "body": "feature, that's not a benefit." + }, + { + "startTime": 496.9, + "startTimeFormatted": "00:08:16.900", + "endTime": 499.66, + "endTimeFormatted": "00:08:19.660", + "body": "Right. And I always try to get" + }, + { + "startTime": 499.661, + "startTimeFormatted": "00:08:19.661", + "endTime": 501.16, + "endTimeFormatted": "00:08:21.160", + "body": "people in that perspective shift" + }, + { + "startTime": 501.161, + "startTimeFormatted": "00:08:21.161", + "endTime": 502.51, + "endTimeFormatted": "00:08:22.510", + "body": "is, and this is where my history" + }, + { + "startTime": 502.6, + "startTimeFormatted": "00:08:22.600", + "endTime": 503.8, + "endTimeFormatted": "00:08:23.800", + "body": "is. A broadcaster comes in and" + }, + { + "startTime": 504.1, + "startTimeFormatted": "00:08:24.100", + "endTime": 505.15, + "endTimeFormatted": "00:08:25.150", + "body": "let's think about the audience" + }, + { + "startTime": 505.151, + "startTimeFormatted": "00:08:25.151", + "endTime": 507.01, + "endTimeFormatted": "00:08:27.010", + "body": "for that. Okay. Let's not think" + }, + { + "startTime": 507.011, + "startTimeFormatted": "00:08:27.011", + "endTime": 509.5, + "endTimeFormatted": "00:08:29.500", + "body": "about what you are right at this" + }, + { + "startTime": 509.501, + "startTimeFormatted": "00:08:29.501", + "endTime": 511.09, + "endTimeFormatted": "00:08:31.090", + "body": "moment. Let's think let's start" + }, + { + "startTime": 511.091, + "startTimeFormatted": "00:08:31.091", + "endTime": 512.83, + "endTimeFormatted": "00:08:32.830", + "body": "with the listener. And so, you" + }, + { + "startTime": 512.831, + "startTimeFormatted": "00:08:32.831", + "endTime": 514.39, + "endTimeFormatted": "00:08:34.390", + "body": "know, I, I, um, you know," + }, + { + "startTime": 514.42, + "startTimeFormatted": "00:08:34.420", + "endTime": 515.92, + "endTimeFormatted": "00:08:35.920", + "body": "everyone, it used to be part of" + }, + { + "startTime": 515.921, + "startTimeFormatted": "00:08:35.921", + "endTime": 516.91, + "endTimeFormatted": "00:08:36.910", + "body": "my kind of standard stump" + }, + { + "startTime": 516.911, + "startTimeFormatted": "00:08:36.911", + "endTime": 518.53, + "endTimeFormatted": "00:08:38.530", + "body": "speech. I would say, even the" + }, + { + "startTime": 518.531, + "startTimeFormatted": "00:08:38.531", + "endTime": 520.12, + "endTimeFormatted": "00:08:40.120", + "body": "yoga instructor down the street" + }, + { + "startTime": 520.51, + "startTimeFormatted": "00:08:40.510", + "endTime": 523.12, + "endTimeFormatted": "00:08:43.120", + "body": "has a podcast. And one day I was" + }, + { + "startTime": 523.121, + "startTimeFormatted": "00:08:43.121", + "endTime": 524.47, + "endTimeFormatted": "00:08:44.470", + "body": "in yoga class and my yoga" + }, + { + "startTime": 524.471, + "startTimeFormatted": "00:08:44.471", + "endTime": 526.27, + "endTimeFormatted": "00:08:46.270", + "body": "instructor came up to me say," + }, + { + "startTime": 526.28, + "startTimeFormatted": "00:08:46.280", + "endTime": 527.74, + "endTimeFormatted": "00:08:47.740", + "body": "can I talk to you after class?" + }, + { + "startTime": 528.16, + "startTimeFormatted": "00:08:48.160", + "endTime": 529.51, + "endTimeFormatted": "00:08:49.510", + "body": "My first thought was like, Oh," + }, + { + "startTime": 529.6, + "startTimeFormatted": "00:08:49.600", + "endTime": 532.18, + "endTimeFormatted": "00:08:52.180", + "body": "what did I do that required a" + }, + { + "startTime": 532.181, + "startTimeFormatted": "00:08:52.181", + "endTime": 533.83, + "endTimeFormatted": "00:08:53.830", + "body": "talking to after class? I'm" + }, + { + "startTime": 533.831, + "startTimeFormatted": "00:08:53.831", + "endTime": 534.73, + "endTimeFormatted": "00:08:54.730", + "body": "like, Oh, I didn't want to think" + }, + { + "startTime": 534.731, + "startTimeFormatted": "00:08:54.731", + "endTime": 536.28, + "endTimeFormatted": "00:08:56.280", + "body": "about this. And I kind of forgot" + }, + { + "startTime": 536.281, + "startTimeFormatted": "00:08:56.281", + "endTime": 537.24, + "endTimeFormatted": "00:08:57.240", + "body": "about it. And then he kind of" + }, + { + "startTime": 537.41, + "startTimeFormatted": "00:08:57.410", + "endTime": 538.35, + "endTimeFormatted": "00:08:58.350", + "body": "came, he came up to me like" + }, + { + "startTime": 538.38, + "startTimeFormatted": "00:08:58.380", + "endTime": 539.76, + "endTimeFormatted": "00:08:59.760", + "body": "either that day or a day later," + }, + { + "startTime": 540.24, + "startTimeFormatted": "00:09:00.240", + "endTime": 542.19, + "endTimeFormatted": "00:09:02.190", + "body": "a next class and said, Hey, you" + }, + { + "startTime": 542.191, + "startTimeFormatted": "00:09:02.191", + "endTime": 543.93, + "endTimeFormatted": "00:09:03.930", + "body": "know, I I've, everybody tells me" + }, + { + "startTime": 543.931, + "startTimeFormatted": "00:09:03.931", + "endTime": 546.27, + "endTimeFormatted": "00:09:06.270", + "body": "I should have a podcast. And I'm" + }, + { + "startTime": 546.271, + "startTimeFormatted": "00:09:06.271", + "endTime": 547.86, + "endTimeFormatted": "00:09:07.860", + "body": "like, Oh, now even my yoga" + }, + { + "startTime": 547.861, + "startTimeFormatted": "00:09:07.861", + "endTime": 549.66, + "endTimeFormatted": "00:09:09.660", + "body": "instructor is, has a vodcast or" + }, + { + "startTime": 549.661, + "startTimeFormatted": "00:09:09.661", + "endTime": 551.88, + "endTimeFormatted": "00:09:11.880", + "body": "wants to have a podcast. And so" + }, + { + "startTime": 551.91, + "startTimeFormatted": "00:09:11.910", + "endTime": 553.11, + "endTimeFormatted": "00:09:13.110", + "body": "I sat down with him and I" + }, + { + "startTime": 553.111, + "startTimeFormatted": "00:09:13.111", + "endTime": 554.94, + "endTimeFormatted": "00:09:14.940", + "body": "started talking about some of" + }, + { + "startTime": 554.941, + "startTimeFormatted": "00:09:14.941", + "endTime": 556.23, + "endTimeFormatted": "00:09:16.230", + "body": "the concepts that I use with" + }, + { + "startTime": 556.231, + "startTimeFormatted": "00:09:16.231", + "endTime": 558.36, + "endTimeFormatted": "00:09:18.360", + "body": "broadcasters or media people and" + }, + { + "startTime": 558.361, + "startTimeFormatted": "00:09:18.361", + "endTime": 559.86, + "endTimeFormatted": "00:09:19.860", + "body": "realized they were far too" + }, + { + "startTime": 559.861, + "startTimeFormatted": "00:09:19.861", + "endTime": 561.45, + "endTimeFormatted": "00:09:21.450", + "body": "advanced for where he was at. He" + }, + { + "startTime": 561.451, + "startTimeFormatted": "00:09:21.451", + "endTime": 563.37, + "endTimeFormatted": "00:09:23.370", + "body": "just had this passion to talk to" + }, + { + "startTime": 563.371, + "startTimeFormatted": "00:09:23.371", + "endTime": 564.96, + "endTimeFormatted": "00:09:24.960", + "body": "people and he had something to" + }, + { + "startTime": 564.961, + "startTimeFormatted": "00:09:24.961", + "endTime": 567.06, + "endTimeFormatted": "00:09:27.060", + "body": "say, but he had no idea of how" + }, + { + "startTime": 567.061, + "startTimeFormatted": "00:09:27.061", + "endTime": 568.77, + "endTimeFormatted": "00:09:28.770", + "body": "to think about it. And so I" + }, + { + "startTime": 568.771, + "startTimeFormatted": "00:09:28.771", + "endTime": 570.81, + "endTimeFormatted": "00:09:30.810", + "body": "ended up drawing on a piece of" + }, + { + "startTime": 570.811, + "startTimeFormatted": "00:09:30.811", + "endTime": 572.61, + "endTimeFormatted": "00:09:32.610", + "body": "paper, a circle, or what became" + }, + { + "startTime": 572.611, + "startTimeFormatted": "00:09:32.611", + "endTime": 574.47, + "endTimeFormatted": "00:09:34.470", + "body": "a circle with a couple of points" + }, + { + "startTime": 574.471, + "startTimeFormatted": "00:09:34.471", + "endTime": 576.12, + "endTimeFormatted": "00:09:36.120", + "body": "on it. And it kind of developed" + }, + { + "startTime": 576.121, + "startTimeFormatted": "00:09:36.121", + "endTime": 577.77, + "endTimeFormatted": "00:09:37.770", + "body": "an exercise that I still use" + }, + { + "startTime": 578.25, + "startTimeFormatted": "00:09:38.250", + "endTime": 579.81, + "endTimeFormatted": "00:09:39.810", + "body": "with people all the time," + }, + { + "startTime": 579.811, + "startTimeFormatted": "00:09:39.811", + "endTime": 580.8, + "endTimeFormatted": "00:09:40.800", + "body": "whether I'm doing it in a bar" + }, + { + "startTime": 580.801, + "startTimeFormatted": "00:09:40.801", + "endTime": 582.2, + "endTimeFormatted": "00:09:42.200", + "body": "napkin or on a dry erase board" + }, + { + "startTime": 582.27, + "startTimeFormatted": "00:09:42.270", + "endTime": 583.95, + "endTimeFormatted": "00:09:43.950", + "body": "in a conference room where we" + }, + { + "startTime": 583.951, + "startTimeFormatted": "00:09:43.951", + "endTime": 586.08, + "endTimeFormatted": "00:09:46.080", + "body": "talk about who is the audience" + }, + { + "startTime": 586.081, + "startTimeFormatted": "00:09:46.081", + "endTime": 587.43, + "endTimeFormatted": "00:09:47.430", + "body": "for this, get incredibly" + }, + { + "startTime": 587.431, + "startTimeFormatted": "00:09:47.431", + "endTime": 589.44, + "endTimeFormatted": "00:09:49.440", + "body": "specific about who they are and" + }, + { + "startTime": 589.441, + "startTimeFormatted": "00:09:49.441", + "endTime": 590.58, + "endTimeFormatted": "00:09:50.580", + "body": "what journey are you putting" + }, + { + "startTime": 590.581, + "startTimeFormatted": "00:09:50.581", + "endTime": 592.44, + "endTimeFormatted": "00:09:52.440", + "body": "them on? You know? Uh, and" + }, + { + "startTime": 592.441, + "startTimeFormatted": "00:09:52.441", + "endTime": 593.49, + "endTimeFormatted": "00:09:53.490", + "body": "that's why it becomes a circle" + }, + { + "startTime": 593.491, + "startTimeFormatted": "00:09:53.491", + "endTime": 594.66, + "endTimeFormatted": "00:09:54.660", + "body": "because all these things filled" + }, + { + "startTime": 594.661, + "startTimeFormatted": "00:09:54.661", + "endTime": 596.7, + "endTimeFormatted": "00:09:56.700", + "body": "into a kind of flow into each" + }, + { + "startTime": 596.701, + "startTimeFormatted": "00:09:56.701", + "endTime": 598.59, + "endTimeFormatted": "00:09:58.590", + "body": "other of asking yourself, what" + }, + { + "startTime": 598.591, + "startTimeFormatted": "00:09:58.591", + "endTime": 599.79, + "endTimeFormatted": "00:09:59.790", + "body": "do you have to say to that" + }, + { + "startTime": 599.791, + "startTimeFormatted": "00:09:59.791", + "endTime": 601.65, + "endTimeFormatted": "00:10:01.650", + "body": "person? Once you define them and" + }, + { + "startTime": 601.651, + "startTimeFormatted": "00:10:01.651", + "endTime": 602.79, + "endTimeFormatted": "00:10:02.790", + "body": "you get very specific, I make" + }, + { + "startTime": 602.791, + "startTimeFormatted": "00:10:02.791", + "endTime": 604.23, + "endTimeFormatted": "00:10:04.230", + "body": "people look up pictures and" + }, + { + "startTime": 604.231, + "startTimeFormatted": "00:10:04.231", + "endTime": 605.28, + "endTimeFormatted": "00:10:05.280", + "body": "print them out. We put them up" + }, + { + "startTime": 605.37, + "startTimeFormatted": "00:10:05.370", + "endTime": 606.93, + "endTimeFormatted": "00:10:06.930", + "body": "on the wall, we give them names" + }, + { + "startTime": 606.931, + "startTimeFormatted": "00:10:06.931", + "endTime": 608.97, + "endTimeFormatted": "00:10:08.970", + "body": "and fake bios. And then we" + }, + { + "startTime": 608.971, + "startTimeFormatted": "00:10:08.971", + "endTime": 610.32, + "endTimeFormatted": "00:10:10.320", + "body": "consolidate them all into like" + }, + { + "startTime": 610.321, + "startTimeFormatted": "00:10:10.321", + "endTime": 612.54, + "endTimeFormatted": "00:10:12.540", + "body": "what we think the person is. And" + }, + { + "startTime": 612.66, + "startTimeFormatted": "00:10:12.660", + "endTime": 613.56, + "endTimeFormatted": "00:10:13.560", + "body": "we know, what do you have to say" + }, + { + "startTime": 613.561, + "startTimeFormatted": "00:10:13.561", + "endTime": 615.03, + "endTimeFormatted": "00:10:15.030", + "body": "to them? Who are you, what" + }, + { + "startTime": 615.031, + "startTimeFormatted": "00:10:15.031", + "endTime": 616.35, + "endTimeFormatted": "00:10:16.350", + "body": "version of yourself, or what is" + }, + { + "startTime": 616.351, + "startTimeFormatted": "00:10:16.351", + "endTime": 617.7, + "endTimeFormatted": "00:10:17.700", + "body": "your voice in this? What is your" + }, + { + "startTime": 617.701, + "startTimeFormatted": "00:10:17.701", + "endTime": 619.23, + "endTimeFormatted": "00:10:19.230", + "body": "perspective, your personality," + }, + { + "startTime": 620.21, + "startTimeFormatted": "00:10:20.210", + "endTime": 621.39, + "endTimeFormatted": "00:10:21.390", + "body": "and then what is the outcome," + }, + { + "startTime": 621.48, + "startTimeFormatted": "00:10:21.480", + "endTime": 623.96, + "endTimeFormatted": "00:10:23.960", + "body": "the desired outcome. and then we" + }, + { + "startTime": 623.961, + "startTimeFormatted": "00:10:23.961", + "endTime": 625.34, + "endTimeFormatted": "00:10:25.340", + "body": "get into this Exercise that I" + }, + { + "startTime": 625.341, + "startTimeFormatted": "00:10:25.341", + "endTime": 626.69, + "endTimeFormatted": "00:10:26.690", + "body": "kind of force people into. And" + }, + { + "startTime": 627.05, + "startTimeFormatted": "00:10:27.050", + "endTime": 628.34, + "endTimeFormatted": "00:10:28.340", + "body": "the way I usually do it now," + }, + { + "startTime": 628.341, + "startTimeFormatted": "00:10:28.341", + "endTime": 630.41, + "endTimeFormatted": "00:10:30.410", + "body": "since I, I always evolving this" + }, + { + "startTime": 630.411, + "startTimeFormatted": "00:10:30.411", + "endTime": 632.24, + "endTimeFormatted": "00:10:32.240", + "body": "exercise is I make people write" + }, + { + "startTime": 632.241, + "startTimeFormatted": "00:10:32.241", + "endTime": 633.35, + "endTimeFormatted": "00:10:33.350", + "body": "it. And then they, then they" + }, + { + "startTime": 633.351, + "startTimeFormatted": "00:10:33.351", + "endTime": 634.64, + "endTimeFormatted": "00:10:34.640", + "body": "kind of hide it from everyone." + }, + { + "startTime": 634.91, + "startTimeFormatted": "00:10:34.910", + "endTime": 635.93, + "endTimeFormatted": "00:10:35.930", + "body": "And during the rest of the" + }, + { + "startTime": 635.931, + "startTimeFormatted": "00:10:35.931", + "endTime": 637.28, + "endTimeFormatted": "00:10:37.280", + "body": "workshop, they can edit it. And" + }, + { + "startTime": 637.281, + "startTimeFormatted": "00:10:37.281", + "endTime": 638.12, + "endTimeFormatted": "00:10:38.120", + "body": "at the end of the workshop," + }, + { + "startTime": 638.15, + "startTimeFormatted": "00:10:38.150", + "endTime": 639.8, + "endTimeFormatted": "00:10:39.800", + "body": "everyone reads their versions of" + }, + { + "startTime": 639.801, + "startTimeFormatted": "00:10:39.801", + "endTime": 641.78, + "endTimeFormatted": "00:10:41.780", + "body": "these 10 word descriptions that" + }, + { + "startTime": 641.781, + "startTimeFormatted": "00:10:41.781", + "endTime": 643.67, + "endTimeFormatted": "00:10:43.670", + "body": "describe your project and" + }, + { + "startTime": 643.671, + "startTimeFormatted": "00:10:43.671", + "endTime": 645.86, + "endTimeFormatted": "00:10:45.860", + "body": "nothing else in the world, no" + }, + { + "startTime": 645.861, + "startTimeFormatted": "00:10:45.861", + "endTime": 646.67, + "endTimeFormatted": "00:10:46.670", + "body": "one in the room should be able" + }, + { + "startTime": 646.671, + "startTimeFormatted": "00:10:46.671", + "endTime": 647.81, + "endTimeFormatted": "00:10:47.810", + "body": "to say, yeah, there's also" + }, + { + "startTime": 647.811, + "startTimeFormatted": "00:10:47.811", + "endTime": 651.32, + "endTimeFormatted": "00:10:51.320", + "body": "another, uh, podcast, a women" + }, + { + "startTime": 651.77, + "startTimeFormatted": "00:10:51.770", + "endTime": 652.88, + "endTimeFormatted": "00:10:52.880", + "body": "talking to women filmmakers" + }, + { + "startTime": 652.881, + "startTimeFormatted": "00:10:52.881", + "endTime": 653.72, + "endTimeFormatted": "00:10:53.720", + "body": "about women's film. You know," + }, + { + "startTime": 653.721, + "startTimeFormatted": "00:10:53.721", + "endTime": 655.22, + "endTimeFormatted": "00:10:55.220", + "body": "there's, there are others. So" + }, + { + "startTime": 655.221, + "startTimeFormatted": "00:10:55.221", + "endTime": 657.2, + "endTimeFormatted": "00:10:57.200", + "body": "what makes yours distinct? Are" + }, + { + "startTime": 657.201, + "startTimeFormatted": "00:10:57.201", + "endTime": 660.29, + "endTimeFormatted": "00:11:00.290", + "body": "you focusing on, uh, filmmakers" + }, + { + "startTime": 660.32, + "startTimeFormatted": "00:11:00.320", + "endTime": 662.9, + "endTimeFormatted": "00:11:02.900", + "body": "in the Minneapolis st. Paul" + }, + { + "startTime": 662.901, + "startTimeFormatted": "00:11:02.901", + "endTime": 664.55, + "endTimeFormatted": "00:11:04.550", + "body": "area? Are you talking about a" + }, + { + "startTime": 664.551, + "startTimeFormatted": "00:11:04.551", + "endTime": 667.28, + "endTimeFormatted": "00:11:07.280", + "body": "specific age or a specific genre" + }, + { + "startTime": 667.281, + "startTimeFormatted": "00:11:07.281", + "endTime": 669.2, + "endTimeFormatted": "00:11:09.200", + "body": "film, or a specific time period" + }, + { + "startTime": 669.201, + "startTimeFormatted": "00:11:09.201", + "endTime": 671.06, + "endTimeFormatted": "00:11:11.060", + "body": "in which films were made, um," + }, + { + "startTime": 671.36, + "startTimeFormatted": "00:11:11.360", + "endTime": 672.77, + "endTimeFormatted": "00:11:12.770", + "body": "that include that in your" + }, + { + "startTime": 672.771, + "startTimeFormatted": "00:11:12.771", + "endTime": 674.09, + "endTimeFormatted": "00:11:14.090", + "body": "description? So you're literally" + }, + { + "startTime": 674.091, + "startTimeFormatted": "00:11:14.091", + "endTime": 675.65, + "endTimeFormatted": "00:11:15.650", + "body": "describing one podcast in a" + }, + { + "startTime": 675.651, + "startTimeFormatted": "00:11:15.651", + "endTime": 676.61, + "endTimeFormatted": "00:11:16.610", + "body": "world of almost a million" + }, + { + "startTime": 676.611, + "startTimeFormatted": "00:11:16.611", + "endTime": 679.43, + "endTimeFormatted": "00:11:19.430", + "body": "others, right. And that provides" + }, + { + "startTime": 679.431, + "startTimeFormatted": "00:11:19.431", + "endTime": 681.56, + "endTimeFormatted": "00:11:21.560", + "body": "you with an editorial lens that" + }, + { + "startTime": 681.561, + "startTimeFormatted": "00:11:21.561", + "endTime": 683.54, + "endTimeFormatted": "00:11:23.540", + "body": "you can then use to make all" + }, + { + "startTime": 683.541, + "startTimeFormatted": "00:11:23.541", + "endTime": 684.92, + "endTimeFormatted": "00:11:24.920", + "body": "kinds of decisions about what's" + }, + { + "startTime": 684.921, + "startTimeFormatted": "00:11:24.921", + "endTime": 687.08, + "endTimeFormatted": "00:11:27.080", + "body": "right for your podcast, from its" + }, + { + "startTime": 687.081, + "startTimeFormatted": "00:11:27.081", + "endTime": 688.43, + "endTimeFormatted": "00:11:28.430", + "body": "title, how it describes itself," + }, + { + "startTime": 688.58, + "startTimeFormatted": "00:11:28.580", + "endTime": 689.81, + "endTimeFormatted": "00:11:29.810", + "body": "its artwork, the type of guests," + }, + { + "startTime": 689.811, + "startTimeFormatted": "00:11:29.811", + "endTime": 690.56, + "endTimeFormatted": "00:11:30.560", + "body": "you have, the kind of" + }, + { + "startTime": 690.561, + "startTimeFormatted": "00:11:30.561", + "endTime": 692.33, + "endTimeFormatted": "00:11:32.330", + "body": "conversations you have the" + }, + { + "startTime": 692.331, + "startTimeFormatted": "00:11:32.331", + "endTime": 693.83, + "endTimeFormatted": "00:11:33.830", + "body": "answer to those five questions," + }, + { + "startTime": 694.22, + "startTimeFormatted": "00:11:34.220", + "endTime": 695.36, + "endTimeFormatted": "00:11:35.360", + "body": "the basic things that go around" + }, + { + "startTime": 695.361, + "startTimeFormatted": "00:11:35.361", + "endTime": 697.58, + "endTimeFormatted": "00:11:37.580", + "body": "the circle and the 10 word as" + }, + { + "startTime": 697.581, + "startTimeFormatted": "00:11:37.581", + "endTime": 699.2, + "endTimeFormatted": "00:11:39.200", + "body": "you have that you have a huge" + }, + { + "startTime": 699.201, + "startTimeFormatted": "00:11:39.201", + "endTime": 701.39, + "endTimeFormatted": "00:11:41.390", + "body": "amount of clarity that you never" + }, + { + "startTime": 701.6, + "startTimeFormatted": "00:11:41.600", + "endTime": 702.8, + "endTimeFormatted": "00:11:42.800", + "body": "would've had before, or spent" + }, + { + "startTime": 702.92, + "startTimeFormatted": "00:11:42.920", + "endTime": 705.35, + "endTimeFormatted": "00:11:45.350", + "body": "years kind of figuring out one" + }, + { + "startTime": 705.351, + "startTimeFormatted": "00:11:45.351", + "endTime": 707.39, + "endTimeFormatted": "00:11:47.390", + "body": "episode at a time. And many" + }, + { + "startTime": 707.391, + "startTimeFormatted": "00:11:47.391", + "endTime": 708.71, + "endTimeFormatted": "00:11:48.710", + "body": "people don't have years to" + }, + { + "startTime": 708.711, + "startTimeFormatted": "00:11:48.711", + "endTime": 709.16, + "endTimeFormatted": "00:11:49.160", + "body": "figure it out." + }, + { + "startTime": 709.91, + "startTimeFormatted": "00:11:49.910", + "endTime": 710.6, + "endTimeFormatted": "00:11:50.600", + "speaker": "Travis", + "body": "Sure. Yeah. Most" + } + ] +} diff --git a/test/test_files/one_word_segments.json b/test/test_files/one_word_segments.json index fd296df..4b4434b 100644 --- a/test/test_files/one_word_segments.json +++ b/test/test_files/one_word_segments.json @@ -1,2354 +1,2357 @@ -[ - { - "speaker": "Travis", - "startTime": 0.3, - "endTime": 0.6, - "body": "Hey," - }, - { - "speaker": "Travis", - "startTime": 0.601, - "endTime": 0.93, - "body": "Travis" - }, - { - "speaker": "Travis", - "startTime": 0.931, - "endTime": 1.08, - "body": "Albritain" - }, - { - "speaker": "Travis", - "startTime": 1.321, - "endTime": 1.65, - "body": "here." - }, - { - "speaker": "Travis", - "startTime": 2.16, - "endTime": 2.16, - "body": "Uh," - }, - { - "speaker": "Travis", - "startTime": 2.19, - "endTime": 2.73, - "body": "so" - }, - { - "speaker": "Travis", - "startTime": 2.79, - "endTime": 2.85, - "body": "I" - }, - { - "speaker": "Travis", - "startTime": 2.851, - "endTime": 3.09, - "body": "hope" - }, - { - "speaker": "Travis", - "startTime": 3.1, - "endTime": 3.39, - "body": "the," - }, - { - "speaker": "Travis", - "startTime": 3.391, - "endTime": 3.66, - "body": "these" - }, - { - "speaker": "Travis", - "startTime": 3.661, - "endTime": 4.14, - "body": "episodes" - }, - { - "speaker": "Travis", - "startTime": 4.141, - "endTime": 4.2, - "body": "have" - }, - { - "speaker": "Travis", - "startTime": 4.201, - "endTime": 4.29, - "body": "been" - }, - { - "speaker": "Travis", - "startTime": 4.291, - "endTime": 4.56, - "body": "super" - }, - { - "speaker": "Travis", - "startTime": 4.561, - "endTime": 4.83, - "body": "helpful" - }, - { - "speaker": "Travis", - "startTime": 4.831, - "endTime": 4.98, - "body": "for" - }, - { - "speaker": "Travis", - "startTime": 4.981, - "endTime": 5.22, - "body": "you" - }, - { - "speaker": "Travis", - "startTime": 5.52, - "endTime": 5.82, - "body": "getting" - }, - { - "speaker": "Travis", - "startTime": 5.821, - "endTime": 5.94, - "body": "your" - }, - { - "speaker": "Travis", - "startTime": 5.941, - "endTime": 6.09, - "body": "show" - }, - { - "speaker": "Travis", - "startTime": 6.091, - "endTime": 6.24, - "body": "off" - }, - { - "speaker": "Travis", - "startTime": 6.241, - "endTime": 6.33, - "body": "the" - }, - { - "speaker": "Travis", - "startTime": 6.331, - "endTime": 6.75, - "body": "ground" - }, - { - "speaker": "Travis", - "startTime": 6.751, - "endTime": 6.93, - "body": "and" - }, - { - "speaker": "Travis", - "startTime": 6.931, - "endTime": 7.2, - "body": "having" - }, - { - "speaker": "Travis", - "startTime": 7.201, - "endTime": 7.26, - "body": "the" - }, - { - "speaker": "Travis", - "startTime": 7.261, - "endTime": 7.77, - "body": "confidence" - }, - { - "speaker": "Travis", - "startTime": 7.771, - "endTime": 7.89, - "body": "that" - }, - { - "speaker": "Travis", - "startTime": 7.891, - "endTime": 7.95, - "body": "you" - }, - { - "speaker": "Travis", - "startTime": 7.951, - "endTime": 8.25, - "body": "need" - }, - { - "speaker": "Travis", - "startTime": 8.55, - "endTime": 8.7, - "body": "to" - }, - { - "speaker": "Travis", - "startTime": 8.701, - "endTime": 9.15, - "body": "really" - }, - { - "speaker": "Travis", - "startTime": 9.27, - "endTime": 9.63, - "body": "launch" - }, - { - "speaker": "Travis", - "startTime": 9.631, - "endTime": 9.72, - "body": "a" - }, - { - "speaker": "Travis", - "startTime": 9.721, - "endTime": 10.32, - "body": "podcast," - }, - { - "speaker": "Travis", - "startTime": 10.321, - "endTime": 10.44, - "body": "which" - }, - { - "speaker": "Travis", - "startTime": 10.441, - "endTime": 10.56, - "body": "is" - }, - { - "speaker": "Travis", - "startTime": 10.561, - "endTime": 10.77, - "body": "such" - }, - { - "speaker": "Travis", - "startTime": 10.771, - "endTime": 10.86, - "body": "an" - }, - { - "speaker": "Travis", - "startTime": 10.861, - "endTime": 11.25, - "body": "incredible" - }, - { - "speaker": "Travis", - "startTime": 11.251, - "endTime": 11.58, - "body": "thing." - }, - { - "speaker": "Travis", - "startTime": 11.82, - "endTime": 12.27, - "body": "Now," - }, - { - "speaker": "Travis", - "startTime": 12.3, - "endTime": 12.48, - "body": "I" - }, - { - "speaker": "Travis", - "startTime": 12.481, - "endTime": 12.9, - "body": "recently" - }, - { - "speaker": "Travis", - "startTime": 12.901, - "endTime": 13.14, - "body": "had" - }, - { - "speaker": "Travis", - "startTime": 13.141, - "endTime": 13.23, - "body": "the" - }, - { - "speaker": "Travis", - "startTime": 13.231, - "endTime": 14.07, - "body": "opportunity" - }, - { - "speaker": "Travis", - "startTime": 14.071, - "endTime": 14.64, - "body": "to" - }, - { - "speaker": "Travis", - "startTime": 14.91, - "endTime": 15.15, - "body": "sit" - }, - { - "speaker": "Travis", - "startTime": 15.151, - "endTime": 15.3, - "body": "down" - }, - { - "speaker": "Travis", - "startTime": 15.301, - "endTime": 15.42, - "body": "for" - }, - { - "speaker": "Travis", - "startTime": 15.421, - "endTime": 15.45, - "body": "a" - }, - { - "speaker": "Travis", - "startTime": 15.451, - "endTime": 16.02, - "body": "conversation" - }, - { - "speaker": "Travis", - "startTime": 16.021, - "endTime": 16.2, - "body": "with" - }, - { - "speaker": "Travis", - "startTime": 16.23, - "endTime": 16.56, - "body": "Eric" - }, - { - "speaker": "Travis", - "startTime": 16.561, - "endTime": 17.01, - "body": "Nuzum," - }, - { - "speaker": "Travis", - "startTime": 17.25, - "endTime": 17.55, - "body": "who" - }, - { - "speaker": "Travis", - "startTime": 17.84, - "endTime": 17.84, - "body": "is" - }, - { - "speaker": "Travis", - "startTime": 17.85, - "endTime": 18.03, - "body": "been" - }, - { - "speaker": "Travis", - "startTime": 18.031, - "endTime": 18.12, - "body": "an" - }, - { - "speaker": "Travis", - "startTime": 18.121, - "endTime": 18.63, - "body": "executive" - }, - { - "speaker": "Travis", - "startTime": 18.631, - "endTime": 19.02, - "body": "producer" - }, - { - "speaker": "Travis", - "startTime": 19.021, - "endTime": 19.08, - "body": "on" - }, - { - "speaker": "Travis", - "startTime": 19.081, - "endTime": 19.2, - "body": "some" - }, - { - "speaker": "Travis", - "startTime": 19.201, - "endTime": 19.29, - "body": "of" - }, - { - "speaker": "Travis", - "startTime": 19.291, - "endTime": 19.38, - "body": "the" - }, - { - "speaker": "Travis", - "startTime": 19.381, - "endTime": 19.74, - "body": "biggest" - }, - { - "speaker": "Travis", - "startTime": 19.741, - "endTime": 20.52, - "body": "podcasts" - }, - { - "speaker": "Travis", - "startTime": 20.94, - "endTime": 21.15, - "body": "in" - }, - { - "speaker": "Travis", - "startTime": 21.151, - "endTime": 21.24, - "body": "the" - }, - { - "speaker": "Travis", - "startTime": 21.241, - "endTime": 21.66, - "body": "world," - }, - { - "speaker": "Travis", - "startTime": 21.661, - "endTime": 21.87, - "body": "many" - }, - { - "speaker": "Travis", - "startTime": 21.871, - "endTime": 21.95, - "body": "of" - }, - { - "speaker": "Travis", - "startTime": 21.97, - "endTime": 22.47, - "body": "NPRs" - }, - { - "speaker": "Travis", - "startTime": 22.471, - "endTime": 23.25, - "body": "podcast," - }, - { - "speaker": "Travis", - "startTime": 23.31, - "endTime": 23.67, - "body": "Ted's" - }, - { - "speaker": "Travis", - "startTime": 23.671, - "endTime": 24.51, - "body": "podcasts" - }, - { - "speaker": "Travis", - "startTime": 24.51, - "endTime": 24.51, - "body": "," - }, - { - "speaker": "Travis", - "startTime": 25.2, - "endTime": 25.2, - "body": "um," - }, - { - "speaker": "Travis", - "startTime": 25.32, - "endTime": 25.95, - "body": "and" - }, - { - "speaker": "Travis", - "startTime": 25.98, - "endTime": 26.31, - "body": "just" - }, - { - "speaker": "Travis", - "startTime": 26.311, - "endTime": 26.64, - "body": "brings" - }, - { - "speaker": "Travis", - "startTime": 26.85, - "endTime": 26.97, - "body": "a" - }, - { - "speaker": "Travis", - "startTime": 26.971, - "endTime": 27.27, - "body": "lot" - }, - { - "speaker": "Travis", - "startTime": 27.271, - "endTime": 27.36, - "body": "of" - }, - { - "speaker": "Travis", - "startTime": 27.361, - "endTime": 27.93, - "body": "insight" - }, - { - "speaker": "Travis", - "startTime": 27.96, - "endTime": 28.44, - "body": "and" - }, - { - "speaker": "Travis", - "startTime": 28.47, - "endTime": 28.74, - "body": "depth" - }, - { - "speaker": "Travis", - "startTime": 28.741, - "endTime": 28.89, - "body": "of" - }, - { - "speaker": "Travis", - "startTime": 28.891, - "endTime": 29.46, - "body": "wisdom" - }, - { - "speaker": "Travis", - "startTime": 29.85, - "endTime": 30.12, - "body": "to" - }, - { - "speaker": "Travis", - "startTime": 30.121, - "endTime": 30.9, - "body": "podcasting." - }, - { - "speaker": "Travis", - "startTime": 30.901, - "endTime": 31.02, - "body": "And" - }, - { - "speaker": "Travis", - "startTime": 31.021, - "endTime": 31.11, - "body": "so" - }, - { - "speaker": "Travis", - "startTime": 31.111, - "endTime": 31.14, - "body": "I" - }, - { - "speaker": "Travis", - "startTime": 31.141, - "endTime": 31.38, - "body": "wanted" - }, - { - "speaker": "Travis", - "startTime": 31.381, - "endTime": 31.44, - "body": "to" - }, - { - "speaker": "Travis", - "startTime": 31.441, - "endTime": 31.65, - "body": "share" - }, - { - "speaker": "Travis", - "startTime": 31.651, - "endTime": 31.8, - "body": "this" - }, - { - "speaker": "Travis", - "startTime": 31.801, - "endTime": 31.95, - "body": "with" - }, - { - "speaker": "Travis", - "startTime": 31.951, - "endTime": 32.25, - "body": "you" - }, - { - "speaker": "Travis", - "startTime": 32.46, - "endTime": 32.64, - "body": "as" - }, - { - "speaker": "Travis", - "startTime": 32.641, - "endTime": 32.85, - "body": "kind" - }, - { - "speaker": "Travis", - "startTime": 32.851, - "endTime": 32.94, - "body": "of" - }, - { - "speaker": "Travis", - "startTime": 32.941, - "endTime": 33.12, - "body": "like" - }, - { - "speaker": "Travis", - "startTime": 33.2, - "endTime": 33.35, - "body": "a" - }, - { - "speaker": "Travis", - "startTime": 34.08, - "endTime": 34.8, - "body": "podcasting" - }, - { - "speaker": "Travis", - "startTime": 34.801, - "endTime": 35.1, - "body": "201." - }, - { - "speaker": "Travis", - "startTime": 35.85, - "endTime": 36.06, - "body": "This" - }, - { - "speaker": "Travis", - "startTime": 36.061, - "endTime": 36.6, - "body": "interview" - }, - { - "speaker": "Travis", - "startTime": 36.84, - "endTime": 37.2, - "body": "is" - }, - { - "speaker": "Travis", - "startTime": 37.201, - "endTime": 37.5, - "body": "what" - }, - { - "speaker": "Travis", - "startTime": 37.501, - "endTime": 37.59, - "body": "to" - }, - { - "speaker": "Travis", - "startTime": 37.591, - "endTime": 37.95, - "body": "do" - }, - { - "speaker": "Travis", - "startTime": 37.951, - "endTime": 38.19, - "body": "once" - }, - { - "speaker": "Travis", - "startTime": 38.191, - "endTime": 38.28, - "body": "you" - }, - { - "speaker": "Travis", - "startTime": 38.281, - "endTime": 38.4, - "body": "have" - }, - { - "speaker": "Travis", - "startTime": 38.401, - "endTime": 38.49, - "body": "your" - }, - { - "speaker": "Travis", - "startTime": 38.491, - "endTime": 38.73, - "body": "show" - }, - { - "speaker": "Travis", - "startTime": 38.731, - "endTime": 39.21, - "body": "going" - }, - { - "speaker": "Travis", - "startTime": 39.51, - "endTime": 39.66, - "body": "and" - }, - { - "speaker": "Travis", - "startTime": 39.661, - "endTime": 39.72, - "body": "you" - }, - { - "speaker": "Travis", - "startTime": 39.721, - "endTime": 39.96, - "body": "really" - }, - { - "speaker": "Travis", - "startTime": 39.961, - "endTime": 40.11, - "body": "want" - }, - { - "speaker": "Travis", - "startTime": 40.111, - "endTime": 40.17, - "body": "to" - }, - { - "speaker": "Travis", - "startTime": 40.171, - "endTime": 40.35, - "body": "see" - }, - { - "speaker": "Travis", - "startTime": 40.351, - "endTime": 40.59, - "body": "what's" - }, - { - "speaker": "Travis", - "startTime": 40.591, - "endTime": 40.68, - "body": "the" - }, - { - "speaker": "Travis", - "startTime": 40.681, - "endTime": 40.98, - "body": "next" - }, - { - "speaker": "Travis", - "startTime": 40.981, - "endTime": 41.28, - "body": "step." - }, - { - "speaker": "Travis", - "startTime": 41.31, - "endTime": 41.49, - "body": "What's" - }, - { - "speaker": "Travis", - "startTime": 41.491, - "endTime": 41.61, - "body": "the" - }, - { - "speaker": "Travis", - "startTime": 41.611, - "endTime": 41.94, - "body": "next" - }, - { - "speaker": "Travis", - "startTime": 41.941, - "endTime": 42.45, - "body": "level" - }, - { - "speaker": "Travis", - "startTime": 42.69, - "endTime": 42.87, - "body": "that" - }, - { - "speaker": "Travis", - "startTime": 42.871, - "endTime": 42.93, - "body": "I" - }, - { - "speaker": "Travis", - "startTime": 42.931, - "endTime": 43.14, - "body": "can" - }, - { - "speaker": "Travis", - "startTime": 43.141, - "endTime": 43.41, - "body": "get" - }, - { - "speaker": "Travis", - "startTime": 43.411, - "endTime": 43.77, - "body": "to" - }, - { - "speaker": "Travis", - "startTime": 43.98, - "endTime": 44.4, - "body": "with" - }, - { - "speaker": "Travis", - "startTime": 44.43, - "endTime": 44.94, - "body": "my" - }, - { - "speaker": "Travis", - "startTime": 45, - "endTime": 45.69, - "body": "podcast." - }, - { - "speaker": "Travis", - "startTime": 46.14, - "endTime": 46.14, - "body": "Uh" - }, - { - "speaker": "Travis", - "startTime": 46.14, - "endTime": 46.14, - "body": "," - }, - { - "speaker": "Travis", - "startTime": 46.17, - "endTime": 46.32, - "body": "he" - }, - { - "speaker": "Travis", - "startTime": 46.321, - "endTime": 46.59, - "body": "just" - }, - { - "speaker": "Travis", - "startTime": 46.591, - "endTime": 46.89, - "body": "wrote" - }, - { - "speaker": "Travis", - "startTime": 46.891, - "endTime": 47.31, - "body": "a" - }, - { - "speaker": "Travis", - "startTime": 47.37, - "endTime": 47.7, - "body": "brand" - }, - { - "speaker": "Travis", - "startTime": 47.701, - "endTime": 47.82, - "body": "new" - }, - { - "speaker": "Travis", - "startTime": 47.821, - "endTime": 48.09, - "body": "book" - }, - { - "speaker": "Travis", - "startTime": 48.091, - "endTime": 48.27, - "body": "on" - }, - { - "speaker": "Travis", - "startTime": 48.271, - "endTime": 48.9, - "body": "podcasting" - }, - { - "speaker": "Travis", - "startTime": 48.901, - "endTime": 49.14, - "body": "called" - }, - { - "speaker": "Travis", - "startTime": 49.141, - "endTime": 49.38, - "body": "Make" - }, - { - "speaker": "Travis", - "startTime": 49.381, - "endTime": 49.92, - "body": "Noise." - }, - { - "speaker": "Travis", - "startTime": 50.19, - "endTime": 50.28, - "body": "I" - }, - { - "speaker": "Travis", - "startTime": 50.281, - "endTime": 50.43, - "body": "will" - }, - { - "speaker": "Travis", - "startTime": 50.431, - "endTime": 50.58, - "body": "leave" - }, - { - "speaker": "Travis", - "startTime": 50.581, - "endTime": 50.64, - "body": "a" - }, - { - "speaker": "Travis", - "startTime": 50.641, - "endTime": 50.85, - "body": "link" - }, - { - "speaker": "Travis", - "startTime": 50.851, - "endTime": 51.09, - "body": "to" - }, - { - "speaker": "Travis", - "startTime": 51.091, - "endTime": 51.21, - "body": "the" - }, - { - "speaker": "Travis", - "startTime": 51.211, - "endTime": 51.45, - "body": "book" - }, - { - "speaker": "Travis", - "startTime": 51.451, - "endTime": 51.69, - "body": "in" - }, - { - "speaker": "Travis", - "startTime": 51.691, - "endTime": 51.78, - "body": "the" - }, - { - "speaker": "Travis", - "startTime": 51.781, - "endTime": 52.14, - "body": "episode" - }, - { - "speaker": "Travis", - "startTime": 52.141, - "endTime": 52.68, - "body": "description." - }, - { - "speaker": "Travis", - "startTime": 52.71, - "endTime": 52.89, - "body": "It's" - }, - { - "speaker": "Travis", - "startTime": 52.891, - "endTime": 52.95, - "body": "a" - }, - { - "speaker": "Travis", - "startTime": 52.951, - "endTime": 53.61, - "body": "fantastic" - }, - { - "speaker": "Travis", - "startTime": 53.611, - "endTime": 53.88, - "body": "book." - }, - { - "speaker": "Travis", - "startTime": 54.12, - "endTime": 54.27, - "body": "So" - }, - { - "speaker": "Travis", - "startTime": 54.271, - "endTime": 54.36, - "body": "I" - }, - { - "speaker": "Travis", - "startTime": 54.361, - "endTime": 54.51, - "body": "hope" - }, - { - "speaker": "Travis", - "startTime": 54.511, - "endTime": 54.63, - "body": "that" - }, - { - "speaker": "Travis", - "startTime": 54.631, - "endTime": 54.9, - "body": "this" - }, - { - "speaker": "Travis", - "startTime": 55.14, - "endTime": 55.86, - "body": "conversation" - }, - { - "speaker": "Travis", - "startTime": 55.861, - "endTime": 55.95, - "body": "is" - }, - { - "speaker": "Travis", - "startTime": 55.951, - "endTime": 56.25, - "body": "helpful" - }, - { - "speaker": "Travis", - "startTime": 56.251, - "endTime": 56.4, - "body": "for" - }, - { - "speaker": "Travis", - "startTime": 56.401, - "endTime": 56.64, - "body": "you" - }, - { - "speaker": "Travis", - "startTime": 56.91, - "endTime": 57.18, - "body": "and" - }, - { - "speaker": "Travis", - "startTime": 57.181, - "endTime": 57.27, - "body": "that" - }, - { - "speaker": "Travis", - "startTime": 57.271, - "endTime": 57.36, - "body": "you" - }, - { - "speaker": "Travis", - "startTime": 57.361, - "endTime": 57.51, - "body": "get" - }, - { - "speaker": "Travis", - "startTime": 57.511, - "endTime": 57.57, - "body": "a" - }, - { - "speaker": "Travis", - "startTime": 57.571, - "endTime": 57.75, - "body": "lot" - }, - { - "speaker": "Travis", - "startTime": 57.751, - "endTime": 57.96, - "body": "out" - }, - { - "speaker": "Travis", - "startTime": 57.961, - "endTime": 58.05, - "body": "of" - }, - { - "speaker": "Travis", - "startTime": 58.051, - "endTime": 58.26, - "body": "it." - }, - { - "speaker": "Travis", - "startTime": 58.56, - "endTime": 58.83, - "body": "And" - }, - { - "speaker": "Travis", - "startTime": 58.831, - "endTime": 59.1, - "body": "without" - }, - { - "speaker": "Travis", - "startTime": 59.101, - "endTime": 59.34, - "body": "further" - }, - { - "speaker": "Travis", - "startTime": 59.341, - "endTime": 59.58, - "body": "ado," - }, - { - "speaker": "Travis", - "startTime": 59.64, - "endTime": 59.85, - "body": "here's" - }, - { - "speaker": "Travis", - "startTime": 59.851, - "endTime": 59.97, - "body": "my" - }, - { - "speaker": "Travis", - "startTime": 59.971, - "endTime": 60.63, - "body": "conversation" - }, - { - "speaker": "Travis", - "startTime": 60.81, - "endTime": 61.02, - "body": "with" - }, - { - "speaker": "Travis", - "startTime": 61.05, - "endTime": 61.29, - "body": "Eric" - }, - { - "speaker": "Travis", - "startTime": 61.291, - "endTime": 61.62, - "body": "Nuzum." - }, - { - "speaker": "Eric", - "startTime": 65.52, - "endTime": 65.81, - "body": "So" - }, - { - "speaker": "Eric", - "startTime": 65.811, - "endTime": 65.99, - "body": "my" - }, - { - "speaker": "Eric", - "startTime": 65.991, - "endTime": 66.17, - "body": "name" - }, - { - "speaker": "Eric", - "startTime": 66.171, - "endTime": 66.29, - "body": "is" - }, - { - "speaker": "Eric", - "startTime": 66.291, - "endTime": 66.59, - "body": "Eric" - }, - { - "speaker": "Eric", - "startTime": 66.591, - "endTime": 67.16, - "body": "Nuzum" - }, - { - "speaker": "Eric", - "startTime": 67.22, - "endTime": 67.73, - "body": "and" - }, - { - "speaker": "Eric", - "startTime": 67.73, - "endTime": 67.73, - "body": "," - }, - { - "speaker": "Eric", - "startTime": 68.09, - "endTime": 68.09, - "body": "uh," - }, - { - "speaker": "Eric", - "startTime": 68.12, - "endTime": 68.57, - "body": "I" - }, - { - "speaker": "Eric", - "startTime": 68.57, - "endTime": 68.57, - "body": "," - }, - { - "speaker": "Eric", - "startTime": 69.11, - "endTime": 69.11, - "body": "um," - }, - { - "speaker": "Eric", - "startTime": 69.77, - "endTime": 70.13, - "body": "spent" - }, - { - "speaker": "Eric", - "startTime": 70.131, - "endTime": 70.58, - "body": "most" - }, - { - "speaker": "Eric", - "startTime": 70.581, - "endTime": 70.64, - "body": "of" - }, - { - "speaker": "Eric", - "startTime": 70.641, - "endTime": 70.73, - "body": "the" - }, - { - "speaker": "Eric", - "startTime": 70.731, - "endTime": 70.94, - "body": "early" - }, - { - "speaker": "Eric", - "startTime": 70.941, - "endTime": 71.12, - "body": "part" - }, - { - "speaker": "Eric", - "startTime": 71.121, - "endTime": 71.18, - "body": "of" - }, - { - "speaker": "Eric", - "startTime": 71.181, - "endTime": 71.27, - "body": "my" - }, - { - "speaker": "Eric", - "startTime": 71.271, - "endTime": 71.57, - "body": "career" - }, - { - "speaker": "Eric", - "startTime": 71.571, - "endTime": 71.69, - "body": "in" - }, - { - "speaker": "Eric", - "startTime": 71.691, - "endTime": 72.32, - "body": "broadcast" - }, - { - "speaker": "Eric", - "startTime": 72.44, - "endTime": 72.86, - "body": "and" - }, - { - "speaker": "Eric", - "startTime": 72.89, - "endTime": 73.25, - "body": "eventually" - }, - { - "speaker": "Eric", - "startTime": 73.251, - "endTime": 73.43, - "body": "worked" - }, - { - "speaker": "Eric", - "startTime": 73.431, - "endTime": 73.52, - "body": "my" - }, - { - "speaker": "Eric", - "startTime": 73.521, - "endTime": 73.7, - "body": "way" - }, - { - "speaker": "Eric", - "startTime": 73.701, - "endTime": 73.82, - "body": "up" - }, - { - "speaker": "Eric", - "startTime": 73.821, - "endTime": 73.91, - "body": "to" - }, - { - "speaker": "Eric", - "startTime": 73.911, - "endTime": 74.24, - "body": "working" - }, - { - "speaker": "Eric", - "startTime": 74.33, - "endTime": 74.33, - "body": "at" - }, - { - "speaker": "Eric", - "startTime": 74.331, - "endTime": 74.93, - "body": "NPR." - }, - { - "speaker": "Eric", - "startTime": 75.47, - "endTime": 75.68, - "body": "And" - }, - { - "speaker": "Eric", - "startTime": 75.681, - "endTime": 75.89, - "body": "I" - }, - { - "speaker": "Eric", - "startTime": 75.891, - "endTime": 76.4, - "body": "started" - }, - { - "speaker": "Eric", - "startTime": 76.401, - "endTime": 76.61, - "body": "there" - }, - { - "speaker": "Eric", - "startTime": 76.611, - "endTime": 76.67, - "body": "in" - }, - { - "speaker": "Eric", - "startTime": 76.671, - "endTime": 77.48, - "body": "2004" - }, - { - "speaker": "Eric", - "startTime": 77.481, - "endTime": 77.57, - "body": "and" - }, - { - "speaker": "Eric", - "startTime": 77.99, - "endTime": 77.99, - "body": "listening" - }, - { - "speaker": "Eric", - "startTime": 78.07, - "endTime": 78.62, - "body": "less" - }, - { - "speaker": "Eric", - "startTime": 78.621, - "endTime": 78.71, - "body": "than" - }, - { - "speaker": "Eric", - "startTime": 78.711, - "endTime": 78.74, - "body": "a" - }, - { - "speaker": "Eric", - "startTime": 78.741, - "endTime": 78.95, - "body": "year" - }, - { - "speaker": "Eric", - "startTime": 78.951, - "endTime": 79.49, - "body": "later," - }, - { - "speaker": "Eric", - "startTime": 80.06, - "endTime": 80.24, - "body": "I" - }, - { - "speaker": "Eric", - "startTime": 80.241, - "endTime": 80.54, - "body": "was" - }, - { - "speaker": "Eric", - "startTime": 80.541, - "endTime": 80.72, - "body": "in" - }, - { - "speaker": "Eric", - "startTime": 80.721, - "endTime": 80.99, - "body": "the" - }, - { - "speaker": "Eric", - "startTime": 80.99, - "endTime": 80.99, - "body": "," - }, - { - "speaker": "Eric", - "startTime": 81.32, - "endTime": 81.32, - "body": "um," - }, - { - "speaker": "Eric", - "startTime": 82.01, - "endTime": 82.13, - "body": "the" - }, - { - "speaker": "Eric", - "startTime": 82.131, - "endTime": 82.64, - "body": "cafeteria" - }, - { - "speaker": "Eric", - "startTime": 82.641, - "endTime": 82.94, - "body": "line" - }, - { - "speaker": "Eric", - "startTime": 82.941, - "endTime": 83.06, - "body": "at" - }, - { - "speaker": "Eric", - "startTime": 83.061, - "endTime": 83.54, - "body": "NPR" - }, - { - "speaker": "Eric", - "startTime": 83.541, - "endTime": 83.66, - "body": "and" - }, - { - "speaker": "Eric", - "startTime": 83.661, - "endTime": 83.75, - "body": "the" - }, - { - "speaker": "Eric", - "startTime": 83.751, - "endTime": 83.96, - "body": "guy" - }, - { - "speaker": "Eric", - "startTime": 83.961, - "endTime": 84.08, - "body": "who" - }, - { - "speaker": "Eric", - "startTime": 84.081, - "endTime": 84.2, - "body": "was" - }, - { - "speaker": "Eric", - "startTime": 84.201, - "endTime": 84.32, - "body": "our" - }, - { - "speaker": "Eric", - "startTime": 84.321, - "endTime": 84.92, - "body": "COO" - }, - { - "speaker": "Eric", - "startTime": 84.921, - "endTime": 85.04, - "body": "at" - }, - { - "speaker": "Eric", - "startTime": 85.041, - "endTime": 85.1, - "body": "the" - }, - { - "speaker": "Eric", - "startTime": 85.101, - "endTime": 85.46, - "body": "time" - }, - { - "speaker": "Eric", - "startTime": 85.85, - "endTime": 86.06, - "body": "was" - }, - { - "speaker": "Eric", - "startTime": 86.061, - "endTime": 86.48, - "body": "behind" - }, - { - "speaker": "Eric", - "startTime": 86.481, - "endTime": 86.63, - "body": "me" - }, - { - "speaker": "Eric", - "startTime": 86.631, - "endTime": 86.87, - "body": "trying" - }, - { - "speaker": "Eric", - "startTime": 86.871, - "endTime": 86.93, - "body": "to" - }, - { - "speaker": "Eric", - "startTime": 86.931, - "endTime": 87.14, - "body": "make" - }, - { - "speaker": "Eric", - "startTime": 87.141, - "endTime": 87.47, - "body": "some" - }, - { - "speaker": "Eric", - "startTime": 87.8, - "endTime": 87.8, - "body": "kind" - }, - { - "speaker": "Eric", - "startTime": 87.86, - "endTime": 87.86, - "body": "of" - }, - { - "speaker": "Eric", - "startTime": 87.861, - "endTime": 88.28, - "body": "awkward" - }, - { - "speaker": "Eric", - "startTime": 88.85, - "endTime": 88.85, - "body": "chit-chat" - }, - { - "speaker": "Eric", - "startTime": 88.85, - "endTime": 88.85, - "body": "." - }, - { - "speaker": "Eric", - "startTime": 89.45, - "endTime": 89.45, - "body": "He" - }, - { - "speaker": "Eric", - "startTime": 89.451, - "endTime": 89.66, - "body": "says," - }, - { - "speaker": "Eric", - "startTime": 89.661, - "endTime": 89.84, - "body": "well," - }, - { - "speaker": "Eric", - "startTime": 89.841, - "endTime": 90.08, - "body": "what's" - }, - { - "speaker": "Eric", - "startTime": 90.081, - "endTime": 90.5, - "body": "interesting" - }, - { - "speaker": "Eric", - "startTime": 90.501, - "endTime": 90.62, - "body": "that" - }, - { - "speaker": "Eric", - "startTime": 90.621, - "endTime": 90.74, - "body": "you've" - }, - { - "speaker": "Eric", - "startTime": 90.741, - "endTime": 90.98, - "body": "seen" - }, - { - "speaker": "Eric", - "startTime": 90.981, - "endTime": 91.37, - "body": "lately." - }, - { - "speaker": "Eric", - "startTime": 91.371, - "endTime": 91.49, - "body": "And" - }, - { - "speaker": "Eric", - "startTime": 91.491, - "endTime": 91.55, - "body": "I" - }, - { - "speaker": "Eric", - "startTime": 91.551, - "endTime": 91.73, - "body": "said," - }, - { - "speaker": "Eric", - "startTime": 91.731, - "endTime": 91.88, - "body": "well," - }, - { - "speaker": "Eric", - "startTime": 91.881, - "endTime": 92.06, - "body": "there's" - }, - { - "speaker": "Eric", - "startTime": 92.061, - "endTime": 92.27, - "body": "this" - }, - { - "speaker": "Eric", - "startTime": 92.271, - "endTime": 93.05, - "body": "podcasting" - }, - { - "speaker": "Eric", - "startTime": 93.051, - "endTime": 93.32, - "body": "thing." - }, - { - "speaker": "Eric", - "startTime": 93.321, - "endTime": 93.44, - "body": "And" - }, - { - "speaker": "Eric", - "startTime": 93.441, - "endTime": 93.47, - "body": "I" - }, - { - "speaker": "Eric", - "startTime": 93.471, - "endTime": 93.77, - "body": "started" - }, - { - "speaker": "Eric", - "startTime": 93.771, - "endTime": 94.31, - "body": "explaining" - }, - { - "speaker": "Eric", - "startTime": 94.311, - "endTime": 94.43, - "body": "to" - }, - { - "speaker": "Eric", - "startTime": 94.431, - "endTime": 94.64, - "body": "him" - }, - { - "speaker": "Eric", - "startTime": 94.641, - "endTime": 94.76, - "body": "in" - }, - { - "speaker": "Eric", - "startTime": 94.761, - "endTime": 94.88, - "body": "the" - }, - { - "speaker": "Eric", - "startTime": 94.881, - "endTime": 95.24, - "body": "lunch" - }, - { - "speaker": "Eric", - "startTime": 95.241, - "endTime": 95.51, - "body": "line," - }, - { - "speaker": "Eric", - "startTime": 95.511, - "endTime": 95.69, - "body": "just" - }, - { - "speaker": "Eric", - "startTime": 95.9, - "endTime": 95.9, - "body": "gotta" - }, - { - "speaker": "Eric", - "startTime": 95.901, - "endTime": 96.11, - "body": "make" - }, - { - "speaker": "Eric", - "startTime": 96.111, - "endTime": 96.95, - "body": "conversation." - }, - { - "speaker": "Eric", - "startTime": 97.73, - "endTime": 97.73, - "body": "He's" - }, - { - "speaker": "Eric", - "startTime": 97.731, - "endTime": 97.88, - "body": "like," - }, - { - "speaker": "Eric", - "startTime": 97.91, - "endTime": 98.18, - "body": "Oh," - }, - { - "speaker": "Eric", - "startTime": 98.21, - "endTime": 98.42, - "body": "come" - }, - { - "speaker": "Eric", - "startTime": 98.421, - "endTime": 98.75, - "body": "by" - }, - { - "speaker": "Eric", - "startTime": 98.751, - "endTime": 99.11, - "body": "and" - }, - { - "speaker": "Eric", - "startTime": 99.65, - "endTime": 99.86, - "body": "give" - }, - { - "speaker": "Eric", - "startTime": 99.861, - "endTime": 100.04, - "body": "me" - }, - { - "speaker": "Eric", - "startTime": 100.041, - "endTime": 100.16, - "body": "a" - }, - { - "speaker": "Eric", - "startTime": 100.161, - "endTime": 100.34, - "body": "little" - }, - { - "speaker": "Eric", - "startTime": 100.341, - "endTime": 100.7, - "body": "spiel" - }, - { - "speaker": "Eric", - "startTime": 100.701, - "endTime": 100.88, - "body": "on" - }, - { - "speaker": "Eric", - "startTime": 100.881, - "endTime": 101, - "body": "it." - }, - { - "speaker": "Eric", - "startTime": 101.001, - "endTime": 101.12, - "body": "And" - }, - { - "speaker": "Eric", - "startTime": 101.121, - "endTime": 101.3, - "body": "so" - }, - { - "speaker": "Eric", - "startTime": 101.301, - "endTime": 101.51, - "body": "I" - }, - { - "speaker": "Eric", - "startTime": 101.54, - "endTime": 101.96, - "body": "came," - }, - { - "speaker": "Eric", - "startTime": 102.02, - "endTime": 102.14, - "body": "I" - }, - { - "speaker": "Eric", - "startTime": 102.141, - "endTime": 102.38, - "body": "made" - }, - { - "speaker": "Eric", - "startTime": 102.381, - "endTime": 102.44, - "body": "an" - }, - { - "speaker": "Eric", - "startTime": 102.441, - "endTime": 102.83, - "body": "appointment," - }, - { - "speaker": "Eric", - "startTime": 102.831, - "endTime": 103.04, - "body": "went" - }, - { - "speaker": "Eric", - "startTime": 103.041, - "endTime": 103.16, - "body": "and" - }, - { - "speaker": "Eric", - "startTime": 103.161, - "endTime": 103.4, - "body": "gave" - }, - { - "speaker": "Eric", - "startTime": 103.401, - "endTime": 103.55, - "body": "a" - }, - { - "speaker": "Eric", - "startTime": 103.401, - "endTime": 103.55, - "body": "spiel" - }, - { - "speaker": "Eric", - "startTime": 104.61, - "endTime": 104.85, - "body": "a" - }, - { - "speaker": "Eric", - "startTime": 105.35, - "endTime": 105.59, - "body": "couple" - }, - { - "speaker": "Eric", - "startTime": 105.591, - "endTime": 105.65, - "body": "of" - }, - { - "speaker": "Eric", - "startTime": 105.651, - "endTime": 105.83, - "body": "weeks" - }, - { - "speaker": "Eric", - "startTime": 105.831, - "endTime": 106.07, - "body": "later," - }, - { - "speaker": "Eric", - "startTime": 106.071, - "endTime": 106.19, - "body": "he" - }, - { - "speaker": "Eric", - "startTime": 106.191, - "endTime": 106.46, - "body": "shows" - }, - { - "speaker": "Eric", - "startTime": 106.461, - "endTime": 106.73, - "body": "back" - }, - { - "speaker": "Eric", - "startTime": 106.731, - "endTime": 106.85, - "body": "up" - }, - { - "speaker": "Eric", - "startTime": 106.851, - "endTime": 106.94, - "body": "at" - }, - { - "speaker": "Eric", - "startTime": 106.941, - "endTime": 107.09, - "body": "my" - }, - { - "speaker": "Eric", - "startTime": 107.091, - "endTime": 107.51, - "body": "door" - }, - { - "speaker": "Eric", - "startTime": 107.511, - "endTime": 107.69, - "body": "and" - }, - { - "speaker": "Eric", - "startTime": 107.691, - "endTime": 108.17, - "body": "says," - }, - { - "speaker": "Eric", - "startTime": 108.171, - "endTime": 108.41, - "body": "you" - }, - { - "speaker": "Eric", - "startTime": 108.411, - "endTime": 108.71, - "body": "have" - }, - { - "speaker": "Eric", - "startTime": 108.711, - "endTime": 108.8, - "body": "a" - }, - { - "speaker": "Eric", - "startTime": 108.801, - "endTime": 109.04, - "body": "team" - }, - { - "speaker": "Eric", - "startTime": 109.041, - "endTime": 109.13, - "body": "of" - }, - { - "speaker": "Eric", - "startTime": 109.131, - "endTime": 109.43, - "body": "eight" - }, - { - "speaker": "Eric", - "startTime": 109.52, - "endTime": 110.03, - "body": "and" - }, - { - "speaker": "Eric", - "startTime": 110.18, - "endTime": 110.33, - "body": "you" - }, - { - "speaker": "Eric", - "startTime": 110.331, - "endTime": 110.42, - "body": "have" - }, - { - "speaker": "Eric", - "startTime": 110.421, - "endTime": 110.69, - "body": "12" - }, - { - "speaker": "Eric", - "startTime": 110.691, - "endTime": 111.08, - "body": "weeks." - }, - { - "speaker": "Eric", - "startTime": 111.53, - "endTime": 111.8, - "body": "And" - }, - { - "speaker": "Eric", - "startTime": 111.801, - "endTime": 111.92, - "body": "at" - }, - { - "speaker": "Eric", - "startTime": 111.921, - "endTime": 112.01, - "body": "the" - }, - { - "speaker": "Eric", - "startTime": 112.011, - "endTime": 112.1, - "body": "end" - }, - { - "speaker": "Eric", - "startTime": 112.101, - "endTime": 112.16, - "body": "of" - }, - { - "speaker": "Eric", - "startTime": 112.161, - "endTime": 112.28, - "body": "that" - }, - { - "speaker": "Eric", - "startTime": 112.281, - "endTime": 112.52, - "body": "12" - }, - { - "speaker": "Eric", - "startTime": 112.521, - "endTime": 112.76, - "body": "weeks," - }, - { - "speaker": "Eric", - "startTime": 112.761, - "endTime": 112.88, - "body": "we" - }, - { - "speaker": "Eric", - "startTime": 112.881, - "endTime": 113.03, - "body": "want" - }, - { - "speaker": "Eric", - "startTime": 113.031, - "endTime": 113.12, - "body": "there" - }, - { - "speaker": "Eric", - "startTime": 113.121, - "endTime": 113.21, - "body": "to" - }, - { - "speaker": "Eric", - "startTime": 113.211, - "endTime": 113.3, - "body": "be" - }, - { - "speaker": "Eric", - "startTime": 113.63, - "endTime": 113.63, - "body": "NPR" - }, - { - "speaker": "Eric", - "startTime": 113.631, - "endTime": 114.44, - "body": "podcasts." - }, - { - "speaker": "Eric", - "startTime": 115.06, - "endTime": 115.06, - "body": "I'm" - }, - { - "speaker": "Eric", - "startTime": 115.061, - "endTime": 115.19, - "body": "like," - }, - { - "speaker": "Eric", - "startTime": 115.22, - "endTime": 115.79, - "body": "okay." - }, - { - "speaker": "Eric", - "startTime": 115.791, - "endTime": 115.97, - "body": "And" - }, - { - "speaker": "Eric", - "startTime": 115.971, - "endTime": 116.18, - "body": "we" - }, - { - "speaker": "Eric", - "startTime": 116.37, - "endTime": 116.66, - "body": "actually" - }, - { - "speaker": "Eric", - "startTime": 116.661, - "endTime": 116.99, - "body": "delivered" - }, - { - "speaker": "Eric", - "startTime": 117.05, - "endTime": 117.05, - "body": "it" - }, - { - "speaker": "Eric", - "startTime": 117.051, - "endTime": 117.11, - "body": "a" - }, - { - "speaker": "Eric", - "startTime": 117.26, - "endTime": 117.26, - "body": "month" - }, - { - "speaker": "Eric", - "startTime": 117.26, - "endTime": 117.26, - "body": "." - }, - { - "speaker": "Eric", - "startTime": 117.29, - "endTime": 117.38, - "body": "We" - }, - { - "speaker": "Eric", - "startTime": 117.381, - "endTime": 117.5, - "body": "got" - }, - { - "speaker": "Eric", - "startTime": 117.501, - "endTime": 117.56, - "body": "an" - }, - { - "speaker": "Eric", - "startTime": 117.561, - "endTime": 117.77, - "body": "extra" - } -] +{ + "version": "1.0.0", + "segments": [ + { + "speaker": "Travis", + "startTime": 0.3, + "endTime": 0.6, + "body": "Hey," + }, + { + "speaker": "Travis", + "startTime": 0.601, + "endTime": 0.93, + "body": "Travis" + }, + { + "speaker": "Travis", + "startTime": 0.931, + "endTime": 1.08, + "body": "Albritain" + }, + { + "speaker": "Travis", + "startTime": 1.321, + "endTime": 1.65, + "body": "here." + }, + { + "speaker": "Travis", + "startTime": 2.16, + "endTime": 2.16, + "body": "Uh," + }, + { + "speaker": "Travis", + "startTime": 2.19, + "endTime": 2.73, + "body": "so" + }, + { + "speaker": "Travis", + "startTime": 2.79, + "endTime": 2.85, + "body": "I" + }, + { + "speaker": "Travis", + "startTime": 2.851, + "endTime": 3.09, + "body": "hope" + }, + { + "speaker": "Travis", + "startTime": 3.1, + "endTime": 3.39, + "body": "the," + }, + { + "speaker": "Travis", + "startTime": 3.391, + "endTime": 3.66, + "body": "these" + }, + { + "speaker": "Travis", + "startTime": 3.661, + "endTime": 4.14, + "body": "episodes" + }, + { + "speaker": "Travis", + "startTime": 4.141, + "endTime": 4.2, + "body": "have" + }, + { + "speaker": "Travis", + "startTime": 4.201, + "endTime": 4.29, + "body": "been" + }, + { + "speaker": "Travis", + "startTime": 4.291, + "endTime": 4.56, + "body": "super" + }, + { + "speaker": "Travis", + "startTime": 4.561, + "endTime": 4.83, + "body": "helpful" + }, + { + "speaker": "Travis", + "startTime": 4.831, + "endTime": 4.98, + "body": "for" + }, + { + "speaker": "Travis", + "startTime": 4.981, + "endTime": 5.22, + "body": "you" + }, + { + "speaker": "Travis", + "startTime": 5.52, + "endTime": 5.82, + "body": "getting" + }, + { + "speaker": "Travis", + "startTime": 5.821, + "endTime": 5.94, + "body": "your" + }, + { + "speaker": "Travis", + "startTime": 5.941, + "endTime": 6.09, + "body": "show" + }, + { + "speaker": "Travis", + "startTime": 6.091, + "endTime": 6.24, + "body": "off" + }, + { + "speaker": "Travis", + "startTime": 6.241, + "endTime": 6.33, + "body": "the" + }, + { + "speaker": "Travis", + "startTime": 6.331, + "endTime": 6.75, + "body": "ground" + }, + { + "speaker": "Travis", + "startTime": 6.751, + "endTime": 6.93, + "body": "and" + }, + { + "speaker": "Travis", + "startTime": 6.931, + "endTime": 7.2, + "body": "having" + }, + { + "speaker": "Travis", + "startTime": 7.201, + "endTime": 7.26, + "body": "the" + }, + { + "speaker": "Travis", + "startTime": 7.261, + "endTime": 7.77, + "body": "confidence" + }, + { + "speaker": "Travis", + "startTime": 7.771, + "endTime": 7.89, + "body": "that" + }, + { + "speaker": "Travis", + "startTime": 7.891, + "endTime": 7.95, + "body": "you" + }, + { + "speaker": "Travis", + "startTime": 7.951, + "endTime": 8.25, + "body": "need" + }, + { + "speaker": "Travis", + "startTime": 8.55, + "endTime": 8.7, + "body": "to" + }, + { + "speaker": "Travis", + "startTime": 8.701, + "endTime": 9.15, + "body": "really" + }, + { + "speaker": "Travis", + "startTime": 9.27, + "endTime": 9.63, + "body": "launch" + }, + { + "speaker": "Travis", + "startTime": 9.631, + "endTime": 9.72, + "body": "a" + }, + { + "speaker": "Travis", + "startTime": 9.721, + "endTime": 10.32, + "body": "podcast," + }, + { + "speaker": "Travis", + "startTime": 10.321, + "endTime": 10.44, + "body": "which" + }, + { + "speaker": "Travis", + "startTime": 10.441, + "endTime": 10.56, + "body": "is" + }, + { + "speaker": "Travis", + "startTime": 10.561, + "endTime": 10.77, + "body": "such" + }, + { + "speaker": "Travis", + "startTime": 10.771, + "endTime": 10.86, + "body": "an" + }, + { + "speaker": "Travis", + "startTime": 10.861, + "endTime": 11.25, + "body": "incredible" + }, + { + "speaker": "Travis", + "startTime": 11.251, + "endTime": 11.58, + "body": "thing." + }, + { + "speaker": "Travis", + "startTime": 11.82, + "endTime": 12.27, + "body": "Now," + }, + { + "speaker": "Travis", + "startTime": 12.3, + "endTime": 12.48, + "body": "I" + }, + { + "speaker": "Travis", + "startTime": 12.481, + "endTime": 12.9, + "body": "recently" + }, + { + "speaker": "Travis", + "startTime": 12.901, + "endTime": 13.14, + "body": "had" + }, + { + "speaker": "Travis", + "startTime": 13.141, + "endTime": 13.23, + "body": "the" + }, + { + "speaker": "Travis", + "startTime": 13.231, + "endTime": 14.07, + "body": "opportunity" + }, + { + "speaker": "Travis", + "startTime": 14.071, + "endTime": 14.64, + "body": "to" + }, + { + "speaker": "Travis", + "startTime": 14.91, + "endTime": 15.15, + "body": "sit" + }, + { + "speaker": "Travis", + "startTime": 15.151, + "endTime": 15.3, + "body": "down" + }, + { + "speaker": "Travis", + "startTime": 15.301, + "endTime": 15.42, + "body": "for" + }, + { + "speaker": "Travis", + "startTime": 15.421, + "endTime": 15.45, + "body": "a" + }, + { + "speaker": "Travis", + "startTime": 15.451, + "endTime": 16.02, + "body": "conversation" + }, + { + "speaker": "Travis", + "startTime": 16.021, + "endTime": 16.2, + "body": "with" + }, + { + "speaker": "Travis", + "startTime": 16.23, + "endTime": 16.56, + "body": "Eric" + }, + { + "speaker": "Travis", + "startTime": 16.561, + "endTime": 17.01, + "body": "Nuzum," + }, + { + "speaker": "Travis", + "startTime": 17.25, + "endTime": 17.55, + "body": "who" + }, + { + "speaker": "Travis", + "startTime": 17.84, + "endTime": 17.84, + "body": "is" + }, + { + "speaker": "Travis", + "startTime": 17.85, + "endTime": 18.03, + "body": "been" + }, + { + "speaker": "Travis", + "startTime": 18.031, + "endTime": 18.12, + "body": "an" + }, + { + "speaker": "Travis", + "startTime": 18.121, + "endTime": 18.63, + "body": "executive" + }, + { + "speaker": "Travis", + "startTime": 18.631, + "endTime": 19.02, + "body": "producer" + }, + { + "speaker": "Travis", + "startTime": 19.021, + "endTime": 19.08, + "body": "on" + }, + { + "speaker": "Travis", + "startTime": 19.081, + "endTime": 19.2, + "body": "some" + }, + { + "speaker": "Travis", + "startTime": 19.201, + "endTime": 19.29, + "body": "of" + }, + { + "speaker": "Travis", + "startTime": 19.291, + "endTime": 19.38, + "body": "the" + }, + { + "speaker": "Travis", + "startTime": 19.381, + "endTime": 19.74, + "body": "biggest" + }, + { + "speaker": "Travis", + "startTime": 19.741, + "endTime": 20.52, + "body": "podcasts" + }, + { + "speaker": "Travis", + "startTime": 20.94, + "endTime": 21.15, + "body": "in" + }, + { + "speaker": "Travis", + "startTime": 21.151, + "endTime": 21.24, + "body": "the" + }, + { + "speaker": "Travis", + "startTime": 21.241, + "endTime": 21.66, + "body": "world," + }, + { + "speaker": "Travis", + "startTime": 21.661, + "endTime": 21.87, + "body": "many" + }, + { + "speaker": "Travis", + "startTime": 21.871, + "endTime": 21.95, + "body": "of" + }, + { + "speaker": "Travis", + "startTime": 21.97, + "endTime": 22.47, + "body": "NPRs" + }, + { + "speaker": "Travis", + "startTime": 22.471, + "endTime": 23.25, + "body": "podcast," + }, + { + "speaker": "Travis", + "startTime": 23.31, + "endTime": 23.67, + "body": "Ted's" + }, + { + "speaker": "Travis", + "startTime": 23.671, + "endTime": 24.51, + "body": "podcasts" + }, + { + "speaker": "Travis", + "startTime": 24.51, + "endTime": 24.51, + "body": "," + }, + { + "speaker": "Travis", + "startTime": 25.2, + "endTime": 25.2, + "body": "um," + }, + { + "speaker": "Travis", + "startTime": 25.32, + "endTime": 25.95, + "body": "and" + }, + { + "speaker": "Travis", + "startTime": 25.98, + "endTime": 26.31, + "body": "just" + }, + { + "speaker": "Travis", + "startTime": 26.311, + "endTime": 26.64, + "body": "brings" + }, + { + "speaker": "Travis", + "startTime": 26.85, + "endTime": 26.97, + "body": "a" + }, + { + "speaker": "Travis", + "startTime": 26.971, + "endTime": 27.27, + "body": "lot" + }, + { + "speaker": "Travis", + "startTime": 27.271, + "endTime": 27.36, + "body": "of" + }, + { + "speaker": "Travis", + "startTime": 27.361, + "endTime": 27.93, + "body": "insight" + }, + { + "speaker": "Travis", + "startTime": 27.96, + "endTime": 28.44, + "body": "and" + }, + { + "speaker": "Travis", + "startTime": 28.47, + "endTime": 28.74, + "body": "depth" + }, + { + "speaker": "Travis", + "startTime": 28.741, + "endTime": 28.89, + "body": "of" + }, + { + "speaker": "Travis", + "startTime": 28.891, + "endTime": 29.46, + "body": "wisdom" + }, + { + "speaker": "Travis", + "startTime": 29.85, + "endTime": 30.12, + "body": "to" + }, + { + "speaker": "Travis", + "startTime": 30.121, + "endTime": 30.9, + "body": "podcasting." + }, + { + "speaker": "Travis", + "startTime": 30.901, + "endTime": 31.02, + "body": "And" + }, + { + "speaker": "Travis", + "startTime": 31.021, + "endTime": 31.11, + "body": "so" + }, + { + "speaker": "Travis", + "startTime": 31.111, + "endTime": 31.14, + "body": "I" + }, + { + "speaker": "Travis", + "startTime": 31.141, + "endTime": 31.38, + "body": "wanted" + }, + { + "speaker": "Travis", + "startTime": 31.381, + "endTime": 31.44, + "body": "to" + }, + { + "speaker": "Travis", + "startTime": 31.441, + "endTime": 31.65, + "body": "share" + }, + { + "speaker": "Travis", + "startTime": 31.651, + "endTime": 31.8, + "body": "this" + }, + { + "speaker": "Travis", + "startTime": 31.801, + "endTime": 31.95, + "body": "with" + }, + { + "speaker": "Travis", + "startTime": 31.951, + "endTime": 32.25, + "body": "you" + }, + { + "speaker": "Travis", + "startTime": 32.46, + "endTime": 32.64, + "body": "as" + }, + { + "speaker": "Travis", + "startTime": 32.641, + "endTime": 32.85, + "body": "kind" + }, + { + "speaker": "Travis", + "startTime": 32.851, + "endTime": 32.94, + "body": "of" + }, + { + "speaker": "Travis", + "startTime": 32.941, + "endTime": 33.12, + "body": "like" + }, + { + "speaker": "Travis", + "startTime": 33.2, + "endTime": 33.35, + "body": "a" + }, + { + "speaker": "Travis", + "startTime": 34.08, + "endTime": 34.8, + "body": "podcasting" + }, + { + "speaker": "Travis", + "startTime": 34.801, + "endTime": 35.1, + "body": "201." + }, + { + "speaker": "Travis", + "startTime": 35.85, + "endTime": 36.06, + "body": "This" + }, + { + "speaker": "Travis", + "startTime": 36.061, + "endTime": 36.6, + "body": "interview" + }, + { + "speaker": "Travis", + "startTime": 36.84, + "endTime": 37.2, + "body": "is" + }, + { + "speaker": "Travis", + "startTime": 37.201, + "endTime": 37.5, + "body": "what" + }, + { + "speaker": "Travis", + "startTime": 37.501, + "endTime": 37.59, + "body": "to" + }, + { + "speaker": "Travis", + "startTime": 37.591, + "endTime": 37.95, + "body": "do" + }, + { + "speaker": "Travis", + "startTime": 37.951, + "endTime": 38.19, + "body": "once" + }, + { + "speaker": "Travis", + "startTime": 38.191, + "endTime": 38.28, + "body": "you" + }, + { + "speaker": "Travis", + "startTime": 38.281, + "endTime": 38.4, + "body": "have" + }, + { + "speaker": "Travis", + "startTime": 38.401, + "endTime": 38.49, + "body": "your" + }, + { + "speaker": "Travis", + "startTime": 38.491, + "endTime": 38.73, + "body": "show" + }, + { + "speaker": "Travis", + "startTime": 38.731, + "endTime": 39.21, + "body": "going" + }, + { + "speaker": "Travis", + "startTime": 39.51, + "endTime": 39.66, + "body": "and" + }, + { + "speaker": "Travis", + "startTime": 39.661, + "endTime": 39.72, + "body": "you" + }, + { + "speaker": "Travis", + "startTime": 39.721, + "endTime": 39.96, + "body": "really" + }, + { + "speaker": "Travis", + "startTime": 39.961, + "endTime": 40.11, + "body": "want" + }, + { + "speaker": "Travis", + "startTime": 40.111, + "endTime": 40.17, + "body": "to" + }, + { + "speaker": "Travis", + "startTime": 40.171, + "endTime": 40.35, + "body": "see" + }, + { + "speaker": "Travis", + "startTime": 40.351, + "endTime": 40.59, + "body": "what's" + }, + { + "speaker": "Travis", + "startTime": 40.591, + "endTime": 40.68, + "body": "the" + }, + { + "speaker": "Travis", + "startTime": 40.681, + "endTime": 40.98, + "body": "next" + }, + { + "speaker": "Travis", + "startTime": 40.981, + "endTime": 41.28, + "body": "step." + }, + { + "speaker": "Travis", + "startTime": 41.31, + "endTime": 41.49, + "body": "What's" + }, + { + "speaker": "Travis", + "startTime": 41.491, + "endTime": 41.61, + "body": "the" + }, + { + "speaker": "Travis", + "startTime": 41.611, + "endTime": 41.94, + "body": "next" + }, + { + "speaker": "Travis", + "startTime": 41.941, + "endTime": 42.45, + "body": "level" + }, + { + "speaker": "Travis", + "startTime": 42.69, + "endTime": 42.87, + "body": "that" + }, + { + "speaker": "Travis", + "startTime": 42.871, + "endTime": 42.93, + "body": "I" + }, + { + "speaker": "Travis", + "startTime": 42.931, + "endTime": 43.14, + "body": "can" + }, + { + "speaker": "Travis", + "startTime": 43.141, + "endTime": 43.41, + "body": "get" + }, + { + "speaker": "Travis", + "startTime": 43.411, + "endTime": 43.77, + "body": "to" + }, + { + "speaker": "Travis", + "startTime": 43.98, + "endTime": 44.4, + "body": "with" + }, + { + "speaker": "Travis", + "startTime": 44.43, + "endTime": 44.94, + "body": "my" + }, + { + "speaker": "Travis", + "startTime": 45, + "endTime": 45.69, + "body": "podcast." + }, + { + "speaker": "Travis", + "startTime": 46.14, + "endTime": 46.14, + "body": "Uh" + }, + { + "speaker": "Travis", + "startTime": 46.14, + "endTime": 46.14, + "body": "," + }, + { + "speaker": "Travis", + "startTime": 46.17, + "endTime": 46.32, + "body": "he" + }, + { + "speaker": "Travis", + "startTime": 46.321, + "endTime": 46.59, + "body": "just" + }, + { + "speaker": "Travis", + "startTime": 46.591, + "endTime": 46.89, + "body": "wrote" + }, + { + "speaker": "Travis", + "startTime": 46.891, + "endTime": 47.31, + "body": "a" + }, + { + "speaker": "Travis", + "startTime": 47.37, + "endTime": 47.7, + "body": "brand" + }, + { + "speaker": "Travis", + "startTime": 47.701, + "endTime": 47.82, + "body": "new" + }, + { + "speaker": "Travis", + "startTime": 47.821, + "endTime": 48.09, + "body": "book" + }, + { + "speaker": "Travis", + "startTime": 48.091, + "endTime": 48.27, + "body": "on" + }, + { + "speaker": "Travis", + "startTime": 48.271, + "endTime": 48.9, + "body": "podcasting" + }, + { + "speaker": "Travis", + "startTime": 48.901, + "endTime": 49.14, + "body": "called" + }, + { + "speaker": "Travis", + "startTime": 49.141, + "endTime": 49.38, + "body": "Make" + }, + { + "speaker": "Travis", + "startTime": 49.381, + "endTime": 49.92, + "body": "Noise." + }, + { + "speaker": "Travis", + "startTime": 50.19, + "endTime": 50.28, + "body": "I" + }, + { + "speaker": "Travis", + "startTime": 50.281, + "endTime": 50.43, + "body": "will" + }, + { + "speaker": "Travis", + "startTime": 50.431, + "endTime": 50.58, + "body": "leave" + }, + { + "speaker": "Travis", + "startTime": 50.581, + "endTime": 50.64, + "body": "a" + }, + { + "speaker": "Travis", + "startTime": 50.641, + "endTime": 50.85, + "body": "link" + }, + { + "speaker": "Travis", + "startTime": 50.851, + "endTime": 51.09, + "body": "to" + }, + { + "speaker": "Travis", + "startTime": 51.091, + "endTime": 51.21, + "body": "the" + }, + { + "speaker": "Travis", + "startTime": 51.211, + "endTime": 51.45, + "body": "book" + }, + { + "speaker": "Travis", + "startTime": 51.451, + "endTime": 51.69, + "body": "in" + }, + { + "speaker": "Travis", + "startTime": 51.691, + "endTime": 51.78, + "body": "the" + }, + { + "speaker": "Travis", + "startTime": 51.781, + "endTime": 52.14, + "body": "episode" + }, + { + "speaker": "Travis", + "startTime": 52.141, + "endTime": 52.68, + "body": "description." + }, + { + "speaker": "Travis", + "startTime": 52.71, + "endTime": 52.89, + "body": "It's" + }, + { + "speaker": "Travis", + "startTime": 52.891, + "endTime": 52.95, + "body": "a" + }, + { + "speaker": "Travis", + "startTime": 52.951, + "endTime": 53.61, + "body": "fantastic" + }, + { + "speaker": "Travis", + "startTime": 53.611, + "endTime": 53.88, + "body": "book." + }, + { + "speaker": "Travis", + "startTime": 54.12, + "endTime": 54.27, + "body": "So" + }, + { + "speaker": "Travis", + "startTime": 54.271, + "endTime": 54.36, + "body": "I" + }, + { + "speaker": "Travis", + "startTime": 54.361, + "endTime": 54.51, + "body": "hope" + }, + { + "speaker": "Travis", + "startTime": 54.511, + "endTime": 54.63, + "body": "that" + }, + { + "speaker": "Travis", + "startTime": 54.631, + "endTime": 54.9, + "body": "this" + }, + { + "speaker": "Travis", + "startTime": 55.14, + "endTime": 55.86, + "body": "conversation" + }, + { + "speaker": "Travis", + "startTime": 55.861, + "endTime": 55.95, + "body": "is" + }, + { + "speaker": "Travis", + "startTime": 55.951, + "endTime": 56.25, + "body": "helpful" + }, + { + "speaker": "Travis", + "startTime": 56.251, + "endTime": 56.4, + "body": "for" + }, + { + "speaker": "Travis", + "startTime": 56.401, + "endTime": 56.64, + "body": "you" + }, + { + "speaker": "Travis", + "startTime": 56.91, + "endTime": 57.18, + "body": "and" + }, + { + "speaker": "Travis", + "startTime": 57.181, + "endTime": 57.27, + "body": "that" + }, + { + "speaker": "Travis", + "startTime": 57.271, + "endTime": 57.36, + "body": "you" + }, + { + "speaker": "Travis", + "startTime": 57.361, + "endTime": 57.51, + "body": "get" + }, + { + "speaker": "Travis", + "startTime": 57.511, + "endTime": 57.57, + "body": "a" + }, + { + "speaker": "Travis", + "startTime": 57.571, + "endTime": 57.75, + "body": "lot" + }, + { + "speaker": "Travis", + "startTime": 57.751, + "endTime": 57.96, + "body": "out" + }, + { + "speaker": "Travis", + "startTime": 57.961, + "endTime": 58.05, + "body": "of" + }, + { + "speaker": "Travis", + "startTime": 58.051, + "endTime": 58.26, + "body": "it." + }, + { + "speaker": "Travis", + "startTime": 58.56, + "endTime": 58.83, + "body": "And" + }, + { + "speaker": "Travis", + "startTime": 58.831, + "endTime": 59.1, + "body": "without" + }, + { + "speaker": "Travis", + "startTime": 59.101, + "endTime": 59.34, + "body": "further" + }, + { + "speaker": "Travis", + "startTime": 59.341, + "endTime": 59.58, + "body": "ado," + }, + { + "speaker": "Travis", + "startTime": 59.64, + "endTime": 59.85, + "body": "here's" + }, + { + "speaker": "Travis", + "startTime": 59.851, + "endTime": 59.97, + "body": "my" + }, + { + "speaker": "Travis", + "startTime": 59.971, + "endTime": 60.63, + "body": "conversation" + }, + { + "speaker": "Travis", + "startTime": 60.81, + "endTime": 61.02, + "body": "with" + }, + { + "speaker": "Travis", + "startTime": 61.05, + "endTime": 61.29, + "body": "Eric" + }, + { + "speaker": "Travis", + "startTime": 61.291, + "endTime": 61.62, + "body": "Nuzum." + }, + { + "speaker": "Eric", + "startTime": 65.52, + "endTime": 65.81, + "body": "So" + }, + { + "speaker": "Eric", + "startTime": 65.811, + "endTime": 65.99, + "body": "my" + }, + { + "speaker": "Eric", + "startTime": 65.991, + "endTime": 66.17, + "body": "name" + }, + { + "speaker": "Eric", + "startTime": 66.171, + "endTime": 66.29, + "body": "is" + }, + { + "speaker": "Eric", + "startTime": 66.291, + "endTime": 66.59, + "body": "Eric" + }, + { + "speaker": "Eric", + "startTime": 66.591, + "endTime": 67.16, + "body": "Nuzum" + }, + { + "speaker": "Eric", + "startTime": 67.22, + "endTime": 67.73, + "body": "and" + }, + { + "speaker": "Eric", + "startTime": 67.73, + "endTime": 67.73, + "body": "," + }, + { + "speaker": "Eric", + "startTime": 68.09, + "endTime": 68.09, + "body": "uh," + }, + { + "speaker": "Eric", + "startTime": 68.12, + "endTime": 68.57, + "body": "I" + }, + { + "speaker": "Eric", + "startTime": 68.57, + "endTime": 68.57, + "body": "," + }, + { + "speaker": "Eric", + "startTime": 69.11, + "endTime": 69.11, + "body": "um," + }, + { + "speaker": "Eric", + "startTime": 69.77, + "endTime": 70.13, + "body": "spent" + }, + { + "speaker": "Eric", + "startTime": 70.131, + "endTime": 70.58, + "body": "most" + }, + { + "speaker": "Eric", + "startTime": 70.581, + "endTime": 70.64, + "body": "of" + }, + { + "speaker": "Eric", + "startTime": 70.641, + "endTime": 70.73, + "body": "the" + }, + { + "speaker": "Eric", + "startTime": 70.731, + "endTime": 70.94, + "body": "early" + }, + { + "speaker": "Eric", + "startTime": 70.941, + "endTime": 71.12, + "body": "part" + }, + { + "speaker": "Eric", + "startTime": 71.121, + "endTime": 71.18, + "body": "of" + }, + { + "speaker": "Eric", + "startTime": 71.181, + "endTime": 71.27, + "body": "my" + }, + { + "speaker": "Eric", + "startTime": 71.271, + "endTime": 71.57, + "body": "career" + }, + { + "speaker": "Eric", + "startTime": 71.571, + "endTime": 71.69, + "body": "in" + }, + { + "speaker": "Eric", + "startTime": 71.691, + "endTime": 72.32, + "body": "broadcast" + }, + { + "speaker": "Eric", + "startTime": 72.44, + "endTime": 72.86, + "body": "and" + }, + { + "speaker": "Eric", + "startTime": 72.89, + "endTime": 73.25, + "body": "eventually" + }, + { + "speaker": "Eric", + "startTime": 73.251, + "endTime": 73.43, + "body": "worked" + }, + { + "speaker": "Eric", + "startTime": 73.431, + "endTime": 73.52, + "body": "my" + }, + { + "speaker": "Eric", + "startTime": 73.521, + "endTime": 73.7, + "body": "way" + }, + { + "speaker": "Eric", + "startTime": 73.701, + "endTime": 73.82, + "body": "up" + }, + { + "speaker": "Eric", + "startTime": 73.821, + "endTime": 73.91, + "body": "to" + }, + { + "speaker": "Eric", + "startTime": 73.911, + "endTime": 74.24, + "body": "working" + }, + { + "speaker": "Eric", + "startTime": 74.33, + "endTime": 74.33, + "body": "at" + }, + { + "speaker": "Eric", + "startTime": 74.331, + "endTime": 74.93, + "body": "NPR." + }, + { + "speaker": "Eric", + "startTime": 75.47, + "endTime": 75.68, + "body": "And" + }, + { + "speaker": "Eric", + "startTime": 75.681, + "endTime": 75.89, + "body": "I" + }, + { + "speaker": "Eric", + "startTime": 75.891, + "endTime": 76.4, + "body": "started" + }, + { + "speaker": "Eric", + "startTime": 76.401, + "endTime": 76.61, + "body": "there" + }, + { + "speaker": "Eric", + "startTime": 76.611, + "endTime": 76.67, + "body": "in" + }, + { + "speaker": "Eric", + "startTime": 76.671, + "endTime": 77.48, + "body": "2004" + }, + { + "speaker": "Eric", + "startTime": 77.481, + "endTime": 77.57, + "body": "and" + }, + { + "speaker": "Eric", + "startTime": 77.99, + "endTime": 77.99, + "body": "listening" + }, + { + "speaker": "Eric", + "startTime": 78.07, + "endTime": 78.62, + "body": "less" + }, + { + "speaker": "Eric", + "startTime": 78.621, + "endTime": 78.71, + "body": "than" + }, + { + "speaker": "Eric", + "startTime": 78.711, + "endTime": 78.74, + "body": "a" + }, + { + "speaker": "Eric", + "startTime": 78.741, + "endTime": 78.95, + "body": "year" + }, + { + "speaker": "Eric", + "startTime": 78.951, + "endTime": 79.49, + "body": "later," + }, + { + "speaker": "Eric", + "startTime": 80.06, + "endTime": 80.24, + "body": "I" + }, + { + "speaker": "Eric", + "startTime": 80.241, + "endTime": 80.54, + "body": "was" + }, + { + "speaker": "Eric", + "startTime": 80.541, + "endTime": 80.72, + "body": "in" + }, + { + "speaker": "Eric", + "startTime": 80.721, + "endTime": 80.99, + "body": "the" + }, + { + "speaker": "Eric", + "startTime": 80.99, + "endTime": 80.99, + "body": "," + }, + { + "speaker": "Eric", + "startTime": 81.32, + "endTime": 81.32, + "body": "um," + }, + { + "speaker": "Eric", + "startTime": 82.01, + "endTime": 82.13, + "body": "the" + }, + { + "speaker": "Eric", + "startTime": 82.131, + "endTime": 82.64, + "body": "cafeteria" + }, + { + "speaker": "Eric", + "startTime": 82.641, + "endTime": 82.94, + "body": "line" + }, + { + "speaker": "Eric", + "startTime": 82.941, + "endTime": 83.06, + "body": "at" + }, + { + "speaker": "Eric", + "startTime": 83.061, + "endTime": 83.54, + "body": "NPR" + }, + { + "speaker": "Eric", + "startTime": 83.541, + "endTime": 83.66, + "body": "and" + }, + { + "speaker": "Eric", + "startTime": 83.661, + "endTime": 83.75, + "body": "the" + }, + { + "speaker": "Eric", + "startTime": 83.751, + "endTime": 83.96, + "body": "guy" + }, + { + "speaker": "Eric", + "startTime": 83.961, + "endTime": 84.08, + "body": "who" + }, + { + "speaker": "Eric", + "startTime": 84.081, + "endTime": 84.2, + "body": "was" + }, + { + "speaker": "Eric", + "startTime": 84.201, + "endTime": 84.32, + "body": "our" + }, + { + "speaker": "Eric", + "startTime": 84.321, + "endTime": 84.92, + "body": "COO" + }, + { + "speaker": "Eric", + "startTime": 84.921, + "endTime": 85.04, + "body": "at" + }, + { + "speaker": "Eric", + "startTime": 85.041, + "endTime": 85.1, + "body": "the" + }, + { + "speaker": "Eric", + "startTime": 85.101, + "endTime": 85.46, + "body": "time" + }, + { + "speaker": "Eric", + "startTime": 85.85, + "endTime": 86.06, + "body": "was" + }, + { + "speaker": "Eric", + "startTime": 86.061, + "endTime": 86.48, + "body": "behind" + }, + { + "speaker": "Eric", + "startTime": 86.481, + "endTime": 86.63, + "body": "me" + }, + { + "speaker": "Eric", + "startTime": 86.631, + "endTime": 86.87, + "body": "trying" + }, + { + "speaker": "Eric", + "startTime": 86.871, + "endTime": 86.93, + "body": "to" + }, + { + "speaker": "Eric", + "startTime": 86.931, + "endTime": 87.14, + "body": "make" + }, + { + "speaker": "Eric", + "startTime": 87.141, + "endTime": 87.47, + "body": "some" + }, + { + "speaker": "Eric", + "startTime": 87.8, + "endTime": 87.8, + "body": "kind" + }, + { + "speaker": "Eric", + "startTime": 87.86, + "endTime": 87.86, + "body": "of" + }, + { + "speaker": "Eric", + "startTime": 87.861, + "endTime": 88.28, + "body": "awkward" + }, + { + "speaker": "Eric", + "startTime": 88.85, + "endTime": 88.85, + "body": "chit-chat" + }, + { + "speaker": "Eric", + "startTime": 88.85, + "endTime": 88.85, + "body": "." + }, + { + "speaker": "Eric", + "startTime": 89.45, + "endTime": 89.45, + "body": "He" + }, + { + "speaker": "Eric", + "startTime": 89.451, + "endTime": 89.66, + "body": "says," + }, + { + "speaker": "Eric", + "startTime": 89.661, + "endTime": 89.84, + "body": "well," + }, + { + "speaker": "Eric", + "startTime": 89.841, + "endTime": 90.08, + "body": "what's" + }, + { + "speaker": "Eric", + "startTime": 90.081, + "endTime": 90.5, + "body": "interesting" + }, + { + "speaker": "Eric", + "startTime": 90.501, + "endTime": 90.62, + "body": "that" + }, + { + "speaker": "Eric", + "startTime": 90.621, + "endTime": 90.74, + "body": "you've" + }, + { + "speaker": "Eric", + "startTime": 90.741, + "endTime": 90.98, + "body": "seen" + }, + { + "speaker": "Eric", + "startTime": 90.981, + "endTime": 91.37, + "body": "lately." + }, + { + "speaker": "Eric", + "startTime": 91.371, + "endTime": 91.49, + "body": "And" + }, + { + "speaker": "Eric", + "startTime": 91.491, + "endTime": 91.55, + "body": "I" + }, + { + "speaker": "Eric", + "startTime": 91.551, + "endTime": 91.73, + "body": "said," + }, + { + "speaker": "Eric", + "startTime": 91.731, + "endTime": 91.88, + "body": "well," + }, + { + "speaker": "Eric", + "startTime": 91.881, + "endTime": 92.06, + "body": "there's" + }, + { + "speaker": "Eric", + "startTime": 92.061, + "endTime": 92.27, + "body": "this" + }, + { + "speaker": "Eric", + "startTime": 92.271, + "endTime": 93.05, + "body": "podcasting" + }, + { + "speaker": "Eric", + "startTime": 93.051, + "endTime": 93.32, + "body": "thing." + }, + { + "speaker": "Eric", + "startTime": 93.321, + "endTime": 93.44, + "body": "And" + }, + { + "speaker": "Eric", + "startTime": 93.441, + "endTime": 93.47, + "body": "I" + }, + { + "speaker": "Eric", + "startTime": 93.471, + "endTime": 93.77, + "body": "started" + }, + { + "speaker": "Eric", + "startTime": 93.771, + "endTime": 94.31, + "body": "explaining" + }, + { + "speaker": "Eric", + "startTime": 94.311, + "endTime": 94.43, + "body": "to" + }, + { + "speaker": "Eric", + "startTime": 94.431, + "endTime": 94.64, + "body": "him" + }, + { + "speaker": "Eric", + "startTime": 94.641, + "endTime": 94.76, + "body": "in" + }, + { + "speaker": "Eric", + "startTime": 94.761, + "endTime": 94.88, + "body": "the" + }, + { + "speaker": "Eric", + "startTime": 94.881, + "endTime": 95.24, + "body": "lunch" + }, + { + "speaker": "Eric", + "startTime": 95.241, + "endTime": 95.51, + "body": "line," + }, + { + "speaker": "Eric", + "startTime": 95.511, + "endTime": 95.69, + "body": "just" + }, + { + "speaker": "Eric", + "startTime": 95.9, + "endTime": 95.9, + "body": "gotta" + }, + { + "speaker": "Eric", + "startTime": 95.901, + "endTime": 96.11, + "body": "make" + }, + { + "speaker": "Eric", + "startTime": 96.111, + "endTime": 96.95, + "body": "conversation." + }, + { + "speaker": "Eric", + "startTime": 97.73, + "endTime": 97.73, + "body": "He's" + }, + { + "speaker": "Eric", + "startTime": 97.731, + "endTime": 97.88, + "body": "like," + }, + { + "speaker": "Eric", + "startTime": 97.91, + "endTime": 98.18, + "body": "Oh," + }, + { + "speaker": "Eric", + "startTime": 98.21, + "endTime": 98.42, + "body": "come" + }, + { + "speaker": "Eric", + "startTime": 98.421, + "endTime": 98.75, + "body": "by" + }, + { + "speaker": "Eric", + "startTime": 98.751, + "endTime": 99.11, + "body": "and" + }, + { + "speaker": "Eric", + "startTime": 99.65, + "endTime": 99.86, + "body": "give" + }, + { + "speaker": "Eric", + "startTime": 99.861, + "endTime": 100.04, + "body": "me" + }, + { + "speaker": "Eric", + "startTime": 100.041, + "endTime": 100.16, + "body": "a" + }, + { + "speaker": "Eric", + "startTime": 100.161, + "endTime": 100.34, + "body": "little" + }, + { + "speaker": "Eric", + "startTime": 100.341, + "endTime": 100.7, + "body": "spiel" + }, + { + "speaker": "Eric", + "startTime": 100.701, + "endTime": 100.88, + "body": "on" + }, + { + "speaker": "Eric", + "startTime": 100.881, + "endTime": 101, + "body": "it." + }, + { + "speaker": "Eric", + "startTime": 101.001, + "endTime": 101.12, + "body": "And" + }, + { + "speaker": "Eric", + "startTime": 101.121, + "endTime": 101.3, + "body": "so" + }, + { + "speaker": "Eric", + "startTime": 101.301, + "endTime": 101.51, + "body": "I" + }, + { + "speaker": "Eric", + "startTime": 101.54, + "endTime": 101.96, + "body": "came," + }, + { + "speaker": "Eric", + "startTime": 102.02, + "endTime": 102.14, + "body": "I" + }, + { + "speaker": "Eric", + "startTime": 102.141, + "endTime": 102.38, + "body": "made" + }, + { + "speaker": "Eric", + "startTime": 102.381, + "endTime": 102.44, + "body": "an" + }, + { + "speaker": "Eric", + "startTime": 102.441, + "endTime": 102.83, + "body": "appointment," + }, + { + "speaker": "Eric", + "startTime": 102.831, + "endTime": 103.04, + "body": "went" + }, + { + "speaker": "Eric", + "startTime": 103.041, + "endTime": 103.16, + "body": "and" + }, + { + "speaker": "Eric", + "startTime": 103.161, + "endTime": 103.4, + "body": "gave" + }, + { + "speaker": "Eric", + "startTime": 103.401, + "endTime": 103.55, + "body": "a" + }, + { + "speaker": "Eric", + "startTime": 103.401, + "endTime": 103.55, + "body": "spiel" + }, + { + "speaker": "Eric", + "startTime": 104.61, + "endTime": 104.85, + "body": "a" + }, + { + "speaker": "Eric", + "startTime": 105.35, + "endTime": 105.59, + "body": "couple" + }, + { + "speaker": "Eric", + "startTime": 105.591, + "endTime": 105.65, + "body": "of" + }, + { + "speaker": "Eric", + "startTime": 105.651, + "endTime": 105.83, + "body": "weeks" + }, + { + "speaker": "Eric", + "startTime": 105.831, + "endTime": 106.07, + "body": "later," + }, + { + "speaker": "Eric", + "startTime": 106.071, + "endTime": 106.19, + "body": "he" + }, + { + "speaker": "Eric", + "startTime": 106.191, + "endTime": 106.46, + "body": "shows" + }, + { + "speaker": "Eric", + "startTime": 106.461, + "endTime": 106.73, + "body": "back" + }, + { + "speaker": "Eric", + "startTime": 106.731, + "endTime": 106.85, + "body": "up" + }, + { + "speaker": "Eric", + "startTime": 106.851, + "endTime": 106.94, + "body": "at" + }, + { + "speaker": "Eric", + "startTime": 106.941, + "endTime": 107.09, + "body": "my" + }, + { + "speaker": "Eric", + "startTime": 107.091, + "endTime": 107.51, + "body": "door" + }, + { + "speaker": "Eric", + "startTime": 107.511, + "endTime": 107.69, + "body": "and" + }, + { + "speaker": "Eric", + "startTime": 107.691, + "endTime": 108.17, + "body": "says," + }, + { + "speaker": "Eric", + "startTime": 108.171, + "endTime": 108.41, + "body": "you" + }, + { + "speaker": "Eric", + "startTime": 108.411, + "endTime": 108.71, + "body": "have" + }, + { + "speaker": "Eric", + "startTime": 108.711, + "endTime": 108.8, + "body": "a" + }, + { + "speaker": "Eric", + "startTime": 108.801, + "endTime": 109.04, + "body": "team" + }, + { + "speaker": "Eric", + "startTime": 109.041, + "endTime": 109.13, + "body": "of" + }, + { + "speaker": "Eric", + "startTime": 109.131, + "endTime": 109.43, + "body": "eight" + }, + { + "speaker": "Eric", + "startTime": 109.52, + "endTime": 110.03, + "body": "and" + }, + { + "speaker": "Eric", + "startTime": 110.18, + "endTime": 110.33, + "body": "you" + }, + { + "speaker": "Eric", + "startTime": 110.331, + "endTime": 110.42, + "body": "have" + }, + { + "speaker": "Eric", + "startTime": 110.421, + "endTime": 110.69, + "body": "12" + }, + { + "speaker": "Eric", + "startTime": 110.691, + "endTime": 111.08, + "body": "weeks." + }, + { + "speaker": "Eric", + "startTime": 111.53, + "endTime": 111.8, + "body": "And" + }, + { + "speaker": "Eric", + "startTime": 111.801, + "endTime": 111.92, + "body": "at" + }, + { + "speaker": "Eric", + "startTime": 111.921, + "endTime": 112.01, + "body": "the" + }, + { + "speaker": "Eric", + "startTime": 112.011, + "endTime": 112.1, + "body": "end" + }, + { + "speaker": "Eric", + "startTime": 112.101, + "endTime": 112.16, + "body": "of" + }, + { + "speaker": "Eric", + "startTime": 112.161, + "endTime": 112.28, + "body": "that" + }, + { + "speaker": "Eric", + "startTime": 112.281, + "endTime": 112.52, + "body": "12" + }, + { + "speaker": "Eric", + "startTime": 112.521, + "endTime": 112.76, + "body": "weeks," + }, + { + "speaker": "Eric", + "startTime": 112.761, + "endTime": 112.88, + "body": "we" + }, + { + "speaker": "Eric", + "startTime": 112.881, + "endTime": 113.03, + "body": "want" + }, + { + "speaker": "Eric", + "startTime": 113.031, + "endTime": 113.12, + "body": "there" + }, + { + "speaker": "Eric", + "startTime": 113.121, + "endTime": 113.21, + "body": "to" + }, + { + "speaker": "Eric", + "startTime": 113.211, + "endTime": 113.3, + "body": "be" + }, + { + "speaker": "Eric", + "startTime": 113.63, + "endTime": 113.63, + "body": "NPR" + }, + { + "speaker": "Eric", + "startTime": 113.631, + "endTime": 114.44, + "body": "podcasts." + }, + { + "speaker": "Eric", + "startTime": 115.06, + "endTime": 115.06, + "body": "I'm" + }, + { + "speaker": "Eric", + "startTime": 115.061, + "endTime": 115.19, + "body": "like," + }, + { + "speaker": "Eric", + "startTime": 115.22, + "endTime": 115.79, + "body": "okay." + }, + { + "speaker": "Eric", + "startTime": 115.791, + "endTime": 115.97, + "body": "And" + }, + { + "speaker": "Eric", + "startTime": 115.971, + "endTime": 116.18, + "body": "we" + }, + { + "speaker": "Eric", + "startTime": 116.37, + "endTime": 116.66, + "body": "actually" + }, + { + "speaker": "Eric", + "startTime": 116.661, + "endTime": 116.99, + "body": "delivered" + }, + { + "speaker": "Eric", + "startTime": 117.05, + "endTime": 117.05, + "body": "it" + }, + { + "speaker": "Eric", + "startTime": 117.051, + "endTime": 117.11, + "body": "a" + }, + { + "speaker": "Eric", + "startTime": 117.26, + "endTime": 117.26, + "body": "month" + }, + { + "speaker": "Eric", + "startTime": 117.26, + "endTime": 117.26, + "body": "." + }, + { + "speaker": "Eric", + "startTime": 117.29, + "endTime": 117.38, + "body": "We" + }, + { + "speaker": "Eric", + "startTime": 117.381, + "endTime": 117.5, + "body": "got" + }, + { + "speaker": "Eric", + "startTime": 117.501, + "endTime": 117.56, + "body": "an" + }, + { + "speaker": "Eric", + "startTime": 117.561, + "endTime": 117.77, + "body": "extra" + } + ] +} diff --git a/test/test_files/one_word_segments_parsed_32.json b/test/test_files/one_word_segments_parsed_32.json index 1a5319d..059b074 100644 --- a/test/test_files/one_word_segments_parsed_32.json +++ b/test/test_files/one_word_segments_parsed_32.json @@ -1,398 +1,530 @@ [ { - "speaker": "Travis", "startTime": 0.3, + "startTimeFormatted": "00:00:00.300", "endTime": 2.16, + "endTimeFormatted": "00:00:02.160", + "speaker": "Travis", "body": "Hey, Travis Albritain here. Uh," }, { - "speaker": "Travis", "startTime": 2.19, + "startTimeFormatted": "00:00:02.190", "endTime": 4.14, + "endTimeFormatted": "00:00:04.140", + "speaker": "Travis", "body": "so I hope the, these episodes" }, { - "speaker": "Travis", "startTime": 4.141, + "startTimeFormatted": "00:00:04.141", "endTime": 5.22, + "endTimeFormatted": "00:00:05.220", + "speaker": "Travis", "body": "have been super helpful for you" }, { - "speaker": "Travis", "startTime": 5.52, + "startTimeFormatted": "00:00:05.520", "endTime": 6.75, + "endTimeFormatted": "00:00:06.750", + "speaker": "Travis", "body": "getting your show off the ground" }, { - "speaker": "Travis", "startTime": 6.751, + "startTimeFormatted": "00:00:06.751", "endTime": 7.89, + "endTimeFormatted": "00:00:07.890", + "speaker": "Travis", "body": "and having the confidence that" }, { - "speaker": "Travis", "startTime": 7.891, + "startTimeFormatted": "00:00:07.891", "endTime": 9.72, + "endTimeFormatted": "00:00:09.720", + "speaker": "Travis", "body": "you need to really launch a" }, { - "speaker": "Travis", "startTime": 9.721, + "startTimeFormatted": "00:00:09.721", "endTime": 10.86, + "endTimeFormatted": "00:00:10.860", + "speaker": "Travis", "body": "podcast, which is such an" }, { - "speaker": "Travis", "startTime": 10.861, + "startTimeFormatted": "00:00:10.861", "endTime": 12.48, + "endTimeFormatted": "00:00:12.480", + "speaker": "Travis", "body": "incredible thing. Now, I" }, { - "speaker": "Travis", "startTime": 12.481, + "startTimeFormatted": "00:00:12.481", "endTime": 14.64, + "endTimeFormatted": "00:00:14.640", + "speaker": "Travis", "body": "recently had the opportunity to" }, { - "speaker": "Travis", "startTime": 14.91, + "startTimeFormatted": "00:00:14.910", "endTime": 16.2, + "endTimeFormatted": "00:00:16.200", + "speaker": "Travis", "body": "sit down for a conversation with" }, { - "speaker": "Travis", "startTime": 16.23, + "startTimeFormatted": "00:00:16.230", "endTime": 18.12, + "endTimeFormatted": "00:00:18.120", + "speaker": "Travis", "body": "Eric Nuzum, who is been an" }, { - "speaker": "Travis", "startTime": 18.121, + "startTimeFormatted": "00:00:18.121", "endTime": 19.29, + "endTimeFormatted": "00:00:19.290", + "speaker": "Travis", "body": "executive producer on some of" }, { - "speaker": "Travis", "startTime": 19.291, + "startTimeFormatted": "00:00:19.291", "endTime": 21.24, + "endTimeFormatted": "00:00:21.240", + "speaker": "Travis", "body": "the biggest podcasts in the" }, { - "speaker": "Travis", "startTime": 21.241, + "startTimeFormatted": "00:00:21.241", "endTime": 23.25, + "endTimeFormatted": "00:00:23.250", + "speaker": "Travis", "body": "world, many of NPRs podcast," }, { - "speaker": "Travis", "startTime": 23.31, + "startTimeFormatted": "00:00:23.310", "endTime": 26.31, + "endTimeFormatted": "00:00:26.310", + "speaker": "Travis", "body": "Ted's podcasts, um, and just" }, { - "speaker": "Travis", "startTime": 26.311, + "startTimeFormatted": "00:00:26.311", "endTime": 28.44, + "endTimeFormatted": "00:00:28.440", + "speaker": "Travis", "body": "brings a lot of insight and" }, { - "speaker": "Travis", "startTime": 28.47, + "startTimeFormatted": "00:00:28.470", "endTime": 30.9, + "endTimeFormatted": "00:00:30.900", + "speaker": "Travis", "body": "depth of wisdom to podcasting." }, { - "speaker": "Travis", "startTime": 30.901, + "startTimeFormatted": "00:00:30.901", "endTime": 31.8, + "endTimeFormatted": "00:00:31.800", + "speaker": "Travis", "body": "And so I wanted to share this" }, { - "speaker": "Travis", "startTime": 31.801, + "startTimeFormatted": "00:00:31.801", "endTime": 33.35, + "endTimeFormatted": "00:00:33.350", + "speaker": "Travis", "body": "with you as kind of like a" }, { - "speaker": "Travis", "startTime": 34.08, + "startTimeFormatted": "00:00:34.080", "endTime": 36.6, + "endTimeFormatted": "00:00:36.600", + "speaker": "Travis", "body": "podcasting 201. This interview" }, { - "speaker": "Travis", "startTime": 36.84, + "startTimeFormatted": "00:00:36.840", "endTime": 38.49, + "endTimeFormatted": "00:00:38.490", + "speaker": "Travis", "body": "is what to do once you have your" }, { - "speaker": "Travis", "startTime": 38.491, + "startTimeFormatted": "00:00:38.491", "endTime": 40.11, + "endTimeFormatted": "00:00:40.110", + "speaker": "Travis", "body": "show going and you really want" }, { - "speaker": "Travis", "startTime": 40.111, + "startTimeFormatted": "00:00:40.111", "endTime": 41.28, + "endTimeFormatted": "00:00:41.280", + "speaker": "Travis", "body": "to see what's the next step." }, { - "speaker": "Travis", "startTime": 41.31, + "startTimeFormatted": "00:00:41.310", "endTime": 43.14, + "endTimeFormatted": "00:00:43.140", + "speaker": "Travis", "body": "What's the next level that I can" }, { - "speaker": "Travis", "startTime": 43.141, + "startTimeFormatted": "00:00:43.141", "endTime": 46.32, + "endTimeFormatted": "00:00:46.320", + "speaker": "Travis", "body": "get to with my podcast. Uh, he" }, { - "speaker": "Travis", "startTime": 46.321, + "startTimeFormatted": "00:00:46.321", "endTime": 48.27, + "endTimeFormatted": "00:00:48.270", + "speaker": "Travis", "body": "just wrote a brand new book on" }, { - "speaker": "Travis", "startTime": 48.271, + "startTimeFormatted": "00:00:48.271", "endTime": 50.28, + "endTimeFormatted": "00:00:50.280", + "speaker": "Travis", "body": "podcasting called Make Noise. I" }, { - "speaker": "Travis", "startTime": 50.281, + "startTimeFormatted": "00:00:50.281", "endTime": 51.69, + "endTimeFormatted": "00:00:51.690", + "speaker": "Travis", "body": "will leave a link to the book in" }, { - "speaker": "Travis", "startTime": 51.691, + "startTimeFormatted": "00:00:51.691", "endTime": 52.95, + "endTimeFormatted": "00:00:52.950", + "speaker": "Travis", "body": "the episode description. It's a" }, { - "speaker": "Travis", "startTime": 52.951, + "startTimeFormatted": "00:00:52.951", "endTime": 54.63, + "endTimeFormatted": "00:00:54.630", + "speaker": "Travis", "body": "fantastic book. So I hope that" }, { - "speaker": "Travis", "startTime": 54.631, + "startTimeFormatted": "00:00:54.631", "endTime": 56.4, + "endTimeFormatted": "00:00:56.400", + "speaker": "Travis", "body": "this conversation is helpful for" }, { - "speaker": "Travis", "startTime": 56.401, + "startTimeFormatted": "00:00:56.401", "endTime": 57.96, + "endTimeFormatted": "00:00:57.960", + "speaker": "Travis", "body": "you and that you get a lot out" }, { - "speaker": "Travis", "startTime": 57.961, + "startTimeFormatted": "00:00:57.961", "endTime": 59.58, + "endTimeFormatted": "00:00:59.580", + "speaker": "Travis", "body": "of it. And without further ado," }, { - "speaker": "Travis", "startTime": 59.64, + "startTimeFormatted": "00:00:59.640", "endTime": 61.29, + "endTimeFormatted": "00:01:01.290", + "speaker": "Travis", "body": "here's my conversation with Eric" }, { - "speaker": "Travis", "startTime": 61.291, + "startTimeFormatted": "00:01:01.291", "endTime": 61.62, + "endTimeFormatted": "00:01:01.620", + "speaker": "Travis", "body": "Nuzum." }, { - "speaker": "Eric", "startTime": 65.52, + "startTimeFormatted": "00:01:05.520", "endTime": 67.73, + "endTimeFormatted": "00:01:07.730", + "speaker": "Eric", "body": "So my name is Eric Nuzum and," }, { - "speaker": "Eric", "startTime": 68.09, + "startTimeFormatted": "00:01:08.090", "endTime": 70.73, + "endTimeFormatted": "00:01:10.730", + "speaker": "Eric", "body": "uh, I, um, spent most of the" }, { - "speaker": "Eric", "startTime": 70.731, + "startTimeFormatted": "00:01:10.731", "endTime": 71.69, + "endTimeFormatted": "00:01:11.690", + "speaker": "Eric", "body": "early part of my career in" }, { - "speaker": "Eric", "startTime": 71.691, + "startTimeFormatted": "00:01:11.691", "endTime": 73.43, + "endTimeFormatted": "00:01:13.430", + "speaker": "Eric", "body": "broadcast and eventually worked" }, { - "speaker": "Eric", "startTime": 73.431, + "startTimeFormatted": "00:01:13.431", "endTime": 75.68, + "endTimeFormatted": "00:01:15.680", + "speaker": "Eric", "body": "my way up to working at NPR. And" }, { - "speaker": "Eric", "startTime": 75.681, + "startTimeFormatted": "00:01:15.681", "endTime": 77.57, + "endTimeFormatted": "00:01:17.570", + "speaker": "Eric", "body": "I started there in 2004 and" }, { - "speaker": "Eric", "startTime": 77.99, + "startTimeFormatted": "00:01:17.990", "endTime": 78.95, + "endTimeFormatted": "00:01:18.950", + "speaker": "Eric", "body": "listening less than a year" }, { - "speaker": "Eric", "startTime": 78.951, + "startTimeFormatted": "00:01:18.951", "endTime": 82.13, + "endTimeFormatted": "00:01:22.130", + "speaker": "Eric", "body": "later, I was in the, um, the" }, { - "speaker": "Eric", "startTime": 82.131, + "startTimeFormatted": "00:01:22.131", "endTime": 83.75, + "endTimeFormatted": "00:01:23.750", + "speaker": "Eric", "body": "cafeteria line at NPR and the" }, { - "speaker": "Eric", "startTime": 83.751, + "startTimeFormatted": "00:01:23.751", "endTime": 85.46, + "endTimeFormatted": "00:01:25.460", + "speaker": "Eric", "body": "guy who was our COO at the time" }, { - "speaker": "Eric", "startTime": 85.85, + "startTimeFormatted": "00:01:25.850", "endTime": 87.14, + "endTimeFormatted": "00:01:27.140", + "speaker": "Eric", "body": "was behind me trying to make" }, { - "speaker": "Eric", "startTime": 87.141, + "startTimeFormatted": "00:01:27.141", "endTime": 88.85, + "endTimeFormatted": "00:01:28.850", + "speaker": "Eric", "body": "some kind of awkward chit-chat." }, { - "speaker": "Eric", "startTime": 89.45, + "startTimeFormatted": "00:01:29.450", "endTime": 90.08, + "endTimeFormatted": "00:01:30.080", + "speaker": "Eric", "body": "He says, well, what's" }, { - "speaker": "Eric", "startTime": 90.081, + "startTimeFormatted": "00:01:30.081", "endTime": 90.98, + "endTimeFormatted": "00:01:30.980", + "speaker": "Eric", "body": "interesting that you've seen" }, { - "speaker": "Eric", "startTime": 90.981, + "startTimeFormatted": "00:01:30.981", "endTime": 91.88, + "endTimeFormatted": "00:01:31.880", + "speaker": "Eric", "body": "lately. And I said, well," }, { - "speaker": "Eric", "startTime": 91.881, + "startTimeFormatted": "00:01:31.881", "endTime": 93.32, + "endTimeFormatted": "00:01:33.320", + "speaker": "Eric", "body": "there's this podcasting thing." }, { - "speaker": "Eric", "startTime": 93.321, + "startTimeFormatted": "00:01:33.321", "endTime": 94.64, + "endTimeFormatted": "00:01:34.640", + "speaker": "Eric", "body": "And I started explaining to him" }, { - "speaker": "Eric", "startTime": 94.641, + "startTimeFormatted": "00:01:34.641", "endTime": 95.9, + "endTimeFormatted": "00:01:35.900", + "speaker": "Eric", "body": "in the lunch line, just gotta" }, { - "speaker": "Eric", "startTime": 95.901, + "startTimeFormatted": "00:01:35.901", "endTime": 97.88, + "endTimeFormatted": "00:01:37.880", + "speaker": "Eric", "body": "make conversation. He's like," }, { - "speaker": "Eric", "startTime": 97.91, + "startTimeFormatted": "00:01:37.910", "endTime": 100.34, + "endTimeFormatted": "00:01:40.340", + "speaker": "Eric", "body": "Oh, come by and give me a little" }, { - "speaker": "Eric", "startTime": 100.341, + "startTimeFormatted": "00:01:40.341", "endTime": 102.14, + "endTimeFormatted": "00:01:42.140", + "speaker": "Eric", "body": "spiel on it. And so I came, I" }, { - "speaker": "Eric", "startTime": 102.141, + "startTimeFormatted": "00:01:42.141", "endTime": 103.16, + "endTimeFormatted": "00:01:43.160", + "speaker": "Eric", "body": "made an appointment, went and" }, { - "speaker": "Eric", "startTime": 103.161, + "startTimeFormatted": "00:01:43.161", "endTime": 105.83, + "endTimeFormatted": "00:01:45.830", + "speaker": "Eric", "body": "gave a spiel a couple of weeks" }, { - "speaker": "Eric", "startTime": 105.831, + "startTimeFormatted": "00:01:45.831", "endTime": 107.09, + "endTimeFormatted": "00:01:47.090", + "speaker": "Eric", "body": "later, he shows back up at my" }, { - "speaker": "Eric", "startTime": 107.091, + "startTimeFormatted": "00:01:47.091", "endTime": 109.04, + "endTimeFormatted": "00:01:49.040", + "speaker": "Eric", "body": "door and says, you have a team" }, { - "speaker": "Eric", "startTime": 109.041, + "startTimeFormatted": "00:01:49.041", "endTime": 111.08, + "endTimeFormatted": "00:01:51.080", + "speaker": "Eric", "body": "of eight and you have 12 weeks." }, { - "speaker": "Eric", "startTime": 111.53, + "startTimeFormatted": "00:01:51.530", "endTime": 112.76, + "endTimeFormatted": "00:01:52.760", + "speaker": "Eric", "body": "And at the end of that 12 weeks," }, { - "speaker": "Eric", "startTime": 112.761, + "startTimeFormatted": "00:01:52.761", "endTime": 113.63, + "endTimeFormatted": "00:01:53.630", + "speaker": "Eric", "body": "we want there to be NPR" }, { - "speaker": "Eric", "startTime": 113.631, + "startTimeFormatted": "00:01:53.631", "endTime": 116.18, + "endTimeFormatted": "00:01:56.180", + "speaker": "Eric", "body": "podcasts. I'm like, okay. And we" }, { - "speaker": "Eric", "startTime": 116.37, + "startTimeFormatted": "00:01:56.370", "endTime": 117.26, + "endTimeFormatted": "00:01:57.260", + "speaker": "Eric", "body": "actually delivered it a month." }, { - "speaker": "Eric", "startTime": 117.29, + "startTimeFormatted": "00:01:57.290", "endTime": 117.77, + "endTimeFormatted": "00:01:57.770", + "speaker": "Eric", "body": "We got an extra" } ] diff --git a/test/test_files/one_word_segments_parsed_50.json b/test/test_files/one_word_segments_parsed_50.json index 996d46f..7930f2e 100644 --- a/test/test_files/one_word_segments_parsed_50.json +++ b/test/test_files/one_word_segments_parsed_50.json @@ -1,248 +1,330 @@ [ { - "speaker": "Travis", "startTime": 0.3, + "startTimeFormatted": "00:00:00.300", "endTime": 3.39, + "endTimeFormatted": "00:00:03.390", + "speaker": "Travis", "body": "Hey, Travis Albritain here. Uh, so I hope the," }, { - "speaker": "Travis", "startTime": 3.391, + "startTimeFormatted": "00:00:03.391", "endTime": 5.22, + "endTimeFormatted": "00:00:05.220", + "speaker": "Travis", "body": "these episodes have been super helpful for you" }, { - "speaker": "Travis", "startTime": 5.52, + "startTimeFormatted": "00:00:05.520", "endTime": 7.26, + "endTimeFormatted": "00:00:07.260", + "speaker": "Travis", "body": "getting your show off the ground and having the" }, { - "speaker": "Travis", "startTime": 7.261, + "startTimeFormatted": "00:00:07.261", "endTime": 9.72, + "endTimeFormatted": "00:00:09.720", + "speaker": "Travis", "body": "confidence that you need to really launch a" }, { - "speaker": "Travis", "startTime": 9.721, + "startTimeFormatted": "00:00:09.721", "endTime": 12.48, + "endTimeFormatted": "00:00:12.480", + "speaker": "Travis", "body": "podcast, which is such an incredible thing. Now, I" }, { - "speaker": "Travis", "startTime": 12.481, + "startTimeFormatted": "00:00:12.481", "endTime": 15.45, + "endTimeFormatted": "00:00:15.450", + "speaker": "Travis", "body": "recently had the opportunity to sit down for a" }, { - "speaker": "Travis", "startTime": 15.451, + "startTimeFormatted": "00:00:15.451", "endTime": 18.12, + "endTimeFormatted": "00:00:18.120", + "speaker": "Travis", "body": "conversation with Eric Nuzum, who is been an" }, { - "speaker": "Travis", "startTime": 18.121, + "startTimeFormatted": "00:00:18.121", "endTime": 20.52, + "endTimeFormatted": "00:00:20.520", + "speaker": "Travis", "body": "executive producer on some of the biggest podcasts" }, { - "speaker": "Travis", "startTime": 20.94, + "startTimeFormatted": "00:00:20.940", "endTime": 24.51, + "endTimeFormatted": "00:00:24.510", + "speaker": "Travis", "body": "in the world, many of NPRs podcast, Ted's podcasts" }, { - "speaker": "Travis", "startTime": 24.51, + "startTimeFormatted": "00:00:24.510", "endTime": 28.74, + "endTimeFormatted": "00:00:28.740", + "speaker": "Travis", "body": ", um, and just brings a lot of insight and depth" }, { - "speaker": "Travis", "startTime": 28.741, + "startTimeFormatted": "00:00:28.741", "endTime": 31.65, + "endTimeFormatted": "00:00:31.650", + "speaker": "Travis", "body": "of wisdom to podcasting. And so I wanted to share" }, { - "speaker": "Travis", "startTime": 31.651, + "startTimeFormatted": "00:00:31.651", "endTime": 35.1, + "endTimeFormatted": "00:00:35.100", + "speaker": "Travis", "body": "this with you as kind of like a podcasting 201." }, { - "speaker": "Travis", "startTime": 35.85, + "startTimeFormatted": "00:00:35.850", "endTime": 38.49, + "endTimeFormatted": "00:00:38.490", + "speaker": "Travis", "body": "This interview is what to do once you have your" }, { - "speaker": "Travis", "startTime": 38.491, + "startTimeFormatted": "00:00:38.491", "endTime": 40.68, + "endTimeFormatted": "00:00:40.680", + "speaker": "Travis", "body": "show going and you really want to see what's the" }, { - "speaker": "Travis", "startTime": 40.681, + "startTimeFormatted": "00:00:40.681", "endTime": 43.77, + "endTimeFormatted": "00:00:43.770", + "speaker": "Travis", "body": "next step. What's the next level that I can get to" }, { - "speaker": "Travis", "startTime": 43.98, + "startTimeFormatted": "00:00:43.980", "endTime": 47.82, + "endTimeFormatted": "00:00:47.820", + "speaker": "Travis", "body": "with my podcast. Uh, he just wrote a brand new" }, { - "speaker": "Travis", "startTime": 47.821, + "startTimeFormatted": "00:00:47.821", "endTime": 50.58, + "endTimeFormatted": "00:00:50.580", + "speaker": "Travis", "body": "book on podcasting called Make Noise. I will leave" }, { - "speaker": "Travis", "startTime": 50.581, + "startTimeFormatted": "00:00:50.581", "endTime": 52.68, + "endTimeFormatted": "00:00:52.680", + "speaker": "Travis", "body": "a link to the book in the episode description." }, { - "speaker": "Travis", "startTime": 52.71, + "startTimeFormatted": "00:00:52.710", "endTime": 54.9, + "endTimeFormatted": "00:00:54.900", + "speaker": "Travis", "body": "It's a fantastic book. So I hope that this" }, { - "speaker": "Travis", "startTime": 55.14, + "startTimeFormatted": "00:00:55.140", "endTime": 57.57, + "endTimeFormatted": "00:00:57.570", + "speaker": "Travis", "body": "conversation is helpful for you and that you get a" }, { - "speaker": "Travis", "startTime": 57.571, + "startTimeFormatted": "00:00:57.571", "endTime": 59.97, + "endTimeFormatted": "00:00:59.970", + "speaker": "Travis", "body": "lot out of it. And without further ado, here's my" }, { - "speaker": "Travis", "startTime": 59.971, + "startTimeFormatted": "00:00:59.971", "endTime": 61.62, + "endTimeFormatted": "00:01:01.620", + "speaker": "Travis", "body": "conversation with Eric Nuzum." }, { - "speaker": "Eric", "startTime": 65.52, + "startTimeFormatted": "00:01:05.520", "endTime": 70.13, + "endTimeFormatted": "00:01:10.130", + "speaker": "Eric", "body": "So my name is Eric Nuzum and, uh, I, um, spent" }, { - "speaker": "Eric", "startTime": 70.131, + "startTimeFormatted": "00:01:10.131", "endTime": 72.32, + "endTimeFormatted": "00:01:12.320", + "speaker": "Eric", "body": "most of the early part of my career in broadcast" }, { - "speaker": "Eric", "startTime": 72.44, + "startTimeFormatted": "00:01:12.440", "endTime": 74.93, + "endTimeFormatted": "00:01:14.930", + "speaker": "Eric", "body": "and eventually worked my way up to working at NPR." }, { - "speaker": "Eric", "startTime": 75.47, + "startTimeFormatted": "00:01:15.470", "endTime": 78.62, + "endTimeFormatted": "00:01:18.620", + "speaker": "Eric", "body": "And I started there in 2004 and listening less" }, { - "speaker": "Eric", "startTime": 78.621, + "startTimeFormatted": "00:01:18.621", "endTime": 82.64, + "endTimeFormatted": "00:01:22.640", + "speaker": "Eric", "body": "than a year later, I was in the, um, the cafeteria" }, { - "speaker": "Eric", "startTime": 82.641, + "startTimeFormatted": "00:01:22.641", "endTime": 85.1, + "endTimeFormatted": "00:01:25.100", + "speaker": "Eric", "body": "line at NPR and the guy who was our COO at the" }, { - "speaker": "Eric", "startTime": 85.101, + "startTimeFormatted": "00:01:25.101", "endTime": 87.86, + "endTimeFormatted": "00:01:27.860", + "speaker": "Eric", "body": "time was behind me trying to make some kind of" }, { - "speaker": "Eric", "startTime": 87.861, + "startTimeFormatted": "00:01:27.861", "endTime": 90.08, + "endTimeFormatted": "00:01:30.080", + "speaker": "Eric", "body": "awkward chit-chat. He says, well, what's" }, { - "speaker": "Eric", "startTime": 90.081, + "startTimeFormatted": "00:01:30.081", "endTime": 91.73, + "endTimeFormatted": "00:01:31.730", + "speaker": "Eric", "body": "interesting that you've seen lately. And I said," }, { - "speaker": "Eric", "startTime": 91.731, + "startTimeFormatted": "00:01:31.731", "endTime": 93.77, + "endTimeFormatted": "00:01:33.770", + "speaker": "Eric", "body": "well, there's this podcasting thing. And I started" }, { - "speaker": "Eric", "startTime": 93.771, + "startTimeFormatted": "00:01:33.771", "endTime": 95.9, + "endTimeFormatted": "00:01:35.900", + "speaker": "Eric", "body": "explaining to him in the lunch line, just gotta" }, { - "speaker": "Eric", "startTime": 95.901, + "startTimeFormatted": "00:01:35.901", "endTime": 99.86, + "endTimeFormatted": "00:01:39.860", + "speaker": "Eric", "body": "make conversation. He's like, Oh, come by and give" }, { - "speaker": "Eric", "startTime": 99.861, + "startTimeFormatted": "00:01:39.861", "endTime": 102.44, + "endTimeFormatted": "00:01:42.440", + "speaker": "Eric", "body": "me a little spiel on it. And so I came, I made an" }, { - "speaker": "Eric", "startTime": 102.441, + "startTimeFormatted": "00:01:42.441", "endTime": 105.65, + "endTimeFormatted": "00:01:45.650", + "speaker": "Eric", "body": "appointment, went and gave a spiel a couple of" }, { - "speaker": "Eric", "startTime": 105.651, + "startTimeFormatted": "00:01:45.651", "endTime": 108.17, + "endTimeFormatted": "00:01:48.170", + "speaker": "Eric", "body": "weeks later, he shows back up at my door and says," }, { - "speaker": "Eric", "startTime": 108.171, + "startTimeFormatted": "00:01:48.171", "endTime": 111.08, + "endTimeFormatted": "00:01:51.080", + "speaker": "Eric", "body": "you have a team of eight and you have 12 weeks." }, { - "speaker": "Eric", "startTime": 111.53, + "startTimeFormatted": "00:01:51.530", "endTime": 113.21, + "endTimeFormatted": "00:01:53.210", + "speaker": "Eric", "body": "And at the end of that 12 weeks, we want there to" }, { - "speaker": "Eric", "startTime": 113.211, + "startTimeFormatted": "00:01:53.211", "endTime": 116.66, + "endTimeFormatted": "00:01:56.660", + "speaker": "Eric", "body": "be NPR podcasts. I'm like, okay. And we actually" }, { - "speaker": "Eric", "startTime": 116.661, + "startTimeFormatted": "00:01:56.661", "endTime": 117.77, + "endTimeFormatted": "00:01:57.770", + "speaker": "Eric", "body": "delivered it a month. We got an extra" } ] diff --git a/test/test_utils.ts b/test/test_utils.ts index bdb35fb..d7e57c2 100644 --- a/test/test_utils.ts +++ b/test/test_utils.ts @@ -10,12 +10,20 @@ export enum TestFiles { TRANSCRIPT_HTML_PODNEWS_WEEKLY_REVIEW_OUTPUT = "podnews_weekly_review_html_parsed.json", TRANSCRIPT_JSON_BUZZCAST = "buzzcast.json", TRANSCRIPT_JSON_BUZZCAST_OUTPUT = "buzzcast_json_parsed.json", + TRANSCRIPT_JSON_BUZZCAST_COMBINE_EQUAL_TIME_OUTPUT = "buzzcast_json_combine_equal_time_parsed.json", + TRANSCRIPT_JSON_BUZZCAST_COMBINE_EQUAL_TIME_SPACE_OUTPUT = "buzzcast_json_combine_equal_time_space_parsed.json", + TRANSCRIPT_JSON_BUZZCAST_SPEAKER_CHANGE_COMBINE_EQUAL_TIME_SPACE_OUTPUT = "buzzcast_json_speaker_change_combine_equal_time_space_parsed.json", TRANSCRIPT_JSON_HOW_TO_START_A_PODCAST = "how_to_start_a_podcast.json", TRANSCRIPT_JSON_HOW_TO_START_A_PODCAST_OUTPUT = "how_to_start_a_podcast_json_parsed.json", TRANSCRIPT_JSON_LALALAND = "LaLaLand.json", + TRANSCRIPT_JSON_HOW_TO_START_A_PODCAST_COMBINE_SEGMENTS_32_OUTPUT = "how_to_start_a_podcast_json_combine_segments_32_parsed.json", + TRANSCRIPT_JSON_HOW_TO_START_A_PODCAST_COMBINE_SPEAKER_OUTPUT = "how_to_start_a_podcast_json_combine_speaker_parsed.json", + TRANSCRIPT_JSON_HOW_TO_START_A_PODCAST_SPEAKER_CHANGE_OUTPUT = "how_to_start_a_podcast_json_speaker_changed_parsed.json", TRANSCRIPT_JSON_LALALAND_OUTPUT = "LaLaLand_json_parsed.json", TRANSCRIPT_SRT_BUZZCAST = "buzzcast.srt", TRANSCRIPT_SRT_BUZZCAST_OUTPUT = "buzzcast_srt_parsed.json", + TRANSCRIPT_SRT_BUZZCAST_COMBINED_SEGMENTS_128_OUTPUT = "buzzcast_srt_combined_segments_128_parsed.json", + TRANSCRIPT_SRT_BUZZCAST_SPEAKER_CHANGE_COMBINED_SEGMENTS_128_OUTPUT = "buzzcast_srt_speaker_change_combined_segments_128_parsed.json", TRANSCRIPT_SRT_PODCASTING_20 = "podcasting_20.srt", TRANSCRIPT_SRT_PODCASTING_20_OUTPUT = "podcasting_20_srt_parsed.json", TRANSCRIPT_VTT_LALALAND = "LaLaLand.vtt", diff --git a/tsconfig.json b/tsconfig.json index 994a43b..d8e5620 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,7 +5,7 @@ "esModuleInterop": true, "target": "es2020", "moduleResolution": "node", - "sourceMap": false, + "sourceMap": true, "outDir": "dist" }, "include": ["src"],