@pipedream/trint 0.0.2 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +11 -0
  2. package/package.json +2 -5
  3. package/trint.app.mjs +11 -0
package/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # Overview
2
+
3
+ The Trint API allows you to harness the power of automated transcription and translation. With Trint, you can convert audio and video files into searchable, editable text. It supports multiple languages and provides features like speaker identification and timestamping. Using the Trint API within Pipedream, you can create automated workflows that process media files, extract valuable insights, and integrate transcribed content into databases, content management systems, or other third-party services.
4
+
5
+ # Example Use Cases
6
+
7
+ - **Automated Podcast Transcription**: Set up a workflow where each new podcast episode uploaded to a cloud storage (like Dropbox or Google Drive) triggers a Pipedream event, which then sends the file to Trint for transcription. Once transcribed, the text can be automatically formatted and published on your blog or website.
8
+
9
+ - **Video Content Analysis and Archiving**: Whenever a new video is added to a CMS, Pipedream can catch this event, send the video to Trint for transcription and translation, and then store the results in a database. This can be linked with AI services to analyze sentiment or extract topics, enriching your video archive with searchable metadata.
10
+
11
+ - **Multilingual Support for Customer Service Calls**: Record customer service calls and use Pipedream to send these recordings to Trint for transcription and translation. Integrate this with a CRM system to append transcripts to customer profiles, aiding in support and ensuring clear communication across different languages.
package/package.json CHANGED
@@ -1,15 +1,12 @@
1
1
  {
2
2
  "name": "@pipedream/trint",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Pipedream Trint Components",
5
- "main": "dist/app/trint.app.mjs",
5
+ "main": "trint.app.mjs",
6
6
  "keywords": [
7
7
  "pipedream",
8
8
  "trint"
9
9
  ],
10
- "files": [
11
- "dist"
12
- ],
13
10
  "homepage": "https://pipedream.com/apps/trint",
14
11
  "author": "Pipedream <support@pipedream.com> (https://pipedream.com/)",
15
12
  "publishConfig": {
package/trint.app.mjs ADDED
@@ -0,0 +1,11 @@
1
+ export default {
2
+ type: "app",
3
+ app: "trint",
4
+ propDefinitions: {},
5
+ methods: {
6
+ // this.$auth contains connected account data
7
+ authKeys() {
8
+ console.log(Object.keys(this.$auth));
9
+ },
10
+ },
11
+ };