New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

dscribeai

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dscribeai

dScribe AI is an API to extract transcriptions and visual summaries from social media videos like TikTok, YouTube, Instagram, and X.

0.0.3
PyPI
Maintainers
1

dScribe AI

Overview

dScribe AI helps developers turn social media videos into actionable insights by extracting transcriptions, generating video summaries, and enabling direct question-answering from video content.

Features

  • Video Transcription: Extract text from video content across multiple languages
  • Content Analysis: Analyze and generate insights from videos with simple prompts
  • Multiplatform Support: Process content from YouTube, TikTok, X, Instagram, Facebook, Spotify, Apple Podcasts, and more
  • Multilingual Support: Process content in 16+ languages
  • Real-time Processing: Get insights on the fly without waiting for indexing
  • Structured Output: Receive structured insights in markdown format, ready for AI applications

Installation

pip install dscribeai

Quick Start

from dscribeai import DScribeClient

# Initialize client with your API key
client = DScribeClient(api_key="your_api_key_here")

post_url = "https://www.youtube.com/watch?v=UF8uR6Z6KLc"
# Process a social media video
results = client.transcribe(url=post_url)

# Access transcription
transcript = results.transcript
print(f"Transcript: {transcript}")

# Ask specific questions about video content
answer = client.analyze(
    url=post_url,
    prompt="What are the main themes of this video?"
)
print(f"Answer: {answer.query_result.answer}")

Use Cases

  • Social Listening: Monitor brand mentions and sentiment across social platforms
  • Content Analysis: Extract key topics and opinions from video content
  • Engagement Tracking: Measure audience interaction with content
  • AI Agents: Power your AI assistants with video understanding capabilities

Documentation

For comprehensive documentation, visit our official documentation.

Authentication

You'll need an API key to use dScribe AI. Sign up at dscribeai.com to get your API key.

Support

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts