Skip to content
View kbridbur's full-sized avatar

Block or report kbridbur

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Rev.ai Node Streaming Example Rev.ai Node Streaming Example
    1
    const revai = require('revai-node-sdk');
    2
    const fs = require('fs');
    3
    
                  
    4
    var client = new revai.RevAiStreamingClient(YOUR-ACCESS-TOKEN, YOUR-AUDIO-CONFIG);
    5
    
                  
  2. Rev.ai Python Streaming Example Rev.ai Python Streaming Example
    1
    from rev_ai.models import MediaConfig
    2
    from rev_ai.streamingclient import RevAiStreamingClient
    3
    import io
    4
    
                  
    5
    config = MediaConfig(YOUR MEDIA CONTENT TYPE)
  3. Use the Rev.ai API with Python! Use the Rev.ai API with Python!
    1
    # import rev_ai and create your client using your access token.       
    2
    from rev_ai import apiclient
    3
    
                  
    4
    client = apiclient.RevAiAPIClient("ACCESS_TOKEN")
    5
    
                  
  4. Use the Rev.ai API with curl! Use the Rev.ai API with curl!
    1
    // Send an audio file to Rev.ai
    2
    curl -X POST "https://api.rev.ai/revspeech/v1beta/jobs"
    3
    -H "Authorization: Bearer <access_token>"
    4
    -H "Content-Type: application/json"
    5
    -d "{\"media_url\":\"rev.cm/FTC_Sample_1_-_Single"}"
  5. Rev.ai-Browser-Stream Rev.ai-Browser-Stream Public

    An example webpage which transcribes user microphone input from the browser using rev.ai

    JavaScript 2

  6. revai-node-sdk revai-node-sdk Public

    Forked from revdotcom/revai-node-sdk

    node.js javascript sdk for the rev.ai api

    TypeScript