API စာရွက်စာတမ်း

Yout.com API ကို dvr.yout.com တွင် လက်ခံထားသည်။


အထောက်အထားပြခြင်း။

Yout.com API ကိုဝင်ရောက်ရန်၊ သင်သည် သင်၏ထူးခြားသော API သော့ကို ထည့်သွင်းရပါမည်။ သင့်အီးမေးလ်လိပ်စာဖြင့် စာရင်းသွင်းခြင်းဖြင့် API သော့ကို သင်ရယူနိုင်သည်။ သင်၏ API သော့ကို လျှို့ဝှက်ထားရန် မမေ့ပါနှင့်။

API ဖြင့် စစ်မှန်ကြောင်းအထောက်အထားပြခြင်းကို HTTP ခေါင်းစီးများဖြင့် ကိုင်တွယ်သည်။ တောင်းဆိုချက်အားလုံးသည် ဖော်မတ်ကီးထဲတွင် သင်၏ API သော့ပါရှိသော တရားဝင်ခွင့်ပြုချက်ခေါင်းစီးတစ်ခု လိုအပ်သည်- YOUR_API_KEYYOUR_API_KEY သည် သင့်အကောင့်စာမျက်နှာတွင်ရရှိနိုင်သောသော့ဖြစ်သည်။

လုံခြုံရေးအတွက်၊ ထုတ်လွှင့်နေစဉ်အတွင်း သင့်ဒေတာကို ကာကွယ်ရန် ကုဒ်ဝှက်ထားသော HTTPS ချိတ်ဆက်မှုမှတစ်ဆင့် တောင်းဆိုချက်အားလုံးကို ပေးပို့ရပါမည်။


MP3 ဖော်မတ်ပြောင်းခြင်း။

MP3 ဖော်မတ်ပြောင်းခြင်းအတွက် ဗီဒီယို/အသံ URL ကို Yout.com API သို့ ပို့ပါ။ API သည် အသံ/ဗီဒီယိုကို အလိုအလျောက်သိရှိပြီး စက်အမျိုးမျိုးတွင် အကောင်းဆုံးပြန်ဖွင့်နိုင်စေရန် ပြင်ဆင်ပေးပါမည်။

MP3 Format-Shifting အတွက် ဥပမာ

YOUR_API_KEY သင်၏ထူးခြားသော API သော့ဖြင့် အစားထိုးပါ (သင်၏ Yout.com အကောင့်စာမျက်နှာတွင် တွေ့သည်) နှင့် AUDIO_URL ကို အသံ/ဗီဒီယို URL ဖြင့် အစားထိုးပါ-

import requests
import base64

headers = {"Authorization": "API_KEY"}
audio_url = base64.b64encode("AUDIO_URL")
r = requests.post(
    url="http://dvr.yout.com/mp3",
    headers=headers,
    data={
        "video_url": audio_url,
        "start_time": False,
        "end_time": False,
        "title": "Hello world",
        "artist": "Hello world",
        "audio_quality": '128k',
    }
)

with open("audio.mp3" "wb") as fd:
    for chunk in r.iter_content(chunk_size=128):
        fd.write(chunk)
const axios = require('axios');

const headers = {
  Authorization: "API_KEY"
};

const audioUrl = Buffer.from("AUDIO_URL").toString('base64');

const data = {
  video_url: audioUrl,
  start_time: false,
  end_time: false,
  title: "Hello world",
  artist: "Hello world",
  audio_quality: "128k"
};

axios
  .post("http://dvr.yout.com/mp3", data, { headers })
  .then(response => {
    const fs = require('fs');
    const fileStream = fs.createWriteStream("audio.mp3");

    response.data.pipe(fileStream);

    fileStream.on('finish', () => {
      console.log("Archivo descargado con éxito como audio.mp3");
    });

    fileStream.on('error', error => {
      console.error("Error al escribir el archivo:", error);
    });
  })
  .catch(error => {
    console.error("Error en la solicitud:", error);
  });
<?php
$audio_url = base64_encode("AUDIO_URL");

// Datos para enviar en la solicitud POST
$data = [
    "video_url" => $audio_url,
    "start_time" => false,
    "end_time" => false,
    "title" => "Hello world",
    "artist" => "Hello world",
    "audio_quality" => "128k"
];

// Convertir los datos a formato URL-encoded
$postData = http_build_query($data);

// Configurar la solicitud cURL
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://dvr.yout.com/mp3");
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, [
    "Authorization: API_KEY",
    "Content-Type: application/x-www-form-urlencoded"
]);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postData);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

// Ejecutar la solicitud
$response = curl_exec($ch);
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);

if ($httpCode === 200) {
    // Guardar el archivo de audio
    $file = fopen("audio.mp3", "wb");
    fwrite($file, $response);
    fclose($file);
    echo "Archivo descargado con éxito como audio.mp3";
} else {
    echo "Error en la solicitud. Código HTTP: $httpCode";
}
?>
curl -X POST "http://dvr.yout.com/mp3" \
         -H "Authorization: API_KEY" \
         -H "Content-Type: application/x-www-form-urlencoded" \
         -d "video_url=$(echo -n 'AUDIO_URL' | base64)" \
         -d "start_time=false" \
         -d "end_time=false" \
         -d "title=Hello world" \
         -d "artist=Hello world" \
         -d "audio_quality=128k" \
         --output audio.mp3
    

MP4 ဖော်မတ်ပြောင်းခြင်း။

MP4 ဖော်မတ်ပြောင်းခြင်းအတွက် ဗီဒီယို/အသံ URL ကို Yout.com API သို့ ပို့ပါ။ API သည် အသံ/ဗီဒီယိုကို အလိုအလျောက်သိရှိပြီး စက်အမျိုးမျိုးတွင် အကောင်းဆုံးပြန်ဖွင့်နိုင်စေရန် ပြင်ဆင်ပေးပါမည်။

MP4 Format-Shifting အတွက် ဥပမာ

YOUR_API_KEY သင်၏ထူးခြားသော API သော့ဖြင့် အစားထိုးပါ (သင်၏ Yout.com အကောင့်စာမျက်နှာတွင် တွေ့သည်) နှင့် VIDEO_URL ကို အသံ/ဗီဒီယို URL ဖြင့် အစားထိုးပါ-

import requests
import base64

headers = {"Authorization": "API_KEY"}
video_url = base64.b64encode("VIDEO_URL")
r = requests.post(
    url="http://dvr.yout.com/mp4",
    headers=headers,
    data={
        "video_url": video_url,
        "start_time": False,
        "end_time": False,
        "title": "hello world",
        "video_quality": 720
    }
)

with open("audio.mp4" "wb") as fd:
    for chunk in r.iter_content(chunk_size=128):
        fd.write(chunk)
const axios = require('axios');

const headers = {
  Authorization: "API_KEY"
};

const audioUrl = Buffer.from("AUDIO_URL").toString('base64');

const data = {
  video_url: video_url,
  start_time: false,
  end_time: false,
  title" "hello world",
  video_quality: 720
};

axios
  .post("http://dvr.yout.com/mp3", data, { headers })
  .then(response => {
    const fs = require('fs');
    const fileStream = fs.createWriteStream("audio.mp3");

    response.data.pipe(fileStream);

    fileStream.on('finish', () => {
      console.log("Archivo descargado con éxito como audio.mp3");
    });

    fileStream.on('error', error => {
      console.error("Error al escribir el archivo:", error);
    });
  })
  .catch(error => {
    console.error("Error en la solicitud:", error);
  });
<?php
$video_url = base64_encode("VIDEO_URL");

$data = [
    "video_url" => $video_url,
    "start_time" => false,
    "end_time" => false,
    "title" => "hello world",
    "video_quality" => 720
];

$postData = http_build_query($data);

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://dvr.yout.com/mp4");
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, [
    "Authorization: API_KEY",
    "Content-Type: application/x-www-form-urlencoded"
]);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postData);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

$response = curl_exec($ch);
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);

if ($httpCode === 200) {
    $file = fopen("video.mp4", "wb");
    fwrite($file, $response);
    fclose($file);
    echo "Archivo descargado con éxito como video.mp4";
} else {
    echo "Error en la solicitud. Código HTTP: $httpCode";
}
?>
curl -X POST "http://dvr.yout.com/mp4" \
     -H "Authorization: API_KEY" \
     -H "Content-Type: application/x-www-form-urlencoded" \
     -d "video_url=$(echo -n 'VIDEO_URL' | base64)" \
     -d "start_time=false" \
     -d "end_time=false" \
     -d "title=hello world" \
     -d "video_quality=720" \
     --output video.mp4

Glossary of parameters

video_url
string (required)

base64 ရှိ အသံ/ဗီဒီယို URL။ ကျွန်ုပ်တို့ပံ့ပိုးသည့် စာမျက်နှာအားလုံးကို စစ်ဆေးပါ။ ဤနေရာကိုကလစ်နှိပ်ပါ

start_time
int

၎င်းသည် အသံ သို့မဟုတ် ဗီဒီယိုကို ချုံ့ရန်အသုံးပြုပြီး သင်အသံ/ဗီဒီယိုရိုက်ကူးမှုကို စတင်စေလိုသည့် ဒုတိယအချက်ကို ကိုယ်စားပြုသည်။ 0th second မှ စတင်သင့်သည်ဟု false ပေးပို့နိုင်ပါသည်။

end_time
int / bool (false)

၎င်းသည် အသံ သို့မဟုတ် ဗီဒီယိုကို ဖြတ်တောက်ရန် အသုံးပြုပြီး သင် အသံ/ဗီဒီယို ရိုက်ကူးမှုကို အဆုံးသတ်စေလိုသည့် ဒုတိယကို ကိုယ်စားပြုသည်။ အသံ/ဗီဒီယိုကို မချုံ့လိုပါက <code>false</code> ပေးပို့နိုင်ပါသည်။

title
string (required)

အသံ/ဗီဒီယို မှတ်တမ်းတင်မည့် ခေါင်းစဉ်၊ ထုတ်ပေးလိုက်တဲ့ ဖိုင်ကို နာမည်ပေးဖို့လည်း သုံးပါတယ်။

artist
string

ဖိုင်ကို မှတ်တမ်းတင်မည့် အနုပညာရှင်၏ အမည်။

audio_quality
string

အသံဖိုင်ကို မှတ်တမ်းတင်မည့် အရည်အသွေး။ ရရှိနိုင်သောအရည်အသွေးများမှာ 32k64k128k256k သို့မဟုတ် 320k ဖြစ်သည်။

video_quality
string

ဗီဒီယိုဖိုင်ကို မှတ်တမ်းတင်မည့် အရည်အသွေး။ ရရှိနိုင်သောအရည်အသွေးများမှာ 144240360480720 (HD အတွက်) 1080 (UHD အတွက်) 2160 (4k အတွက်) သို့မဟုတ် 4320 (8k အတွက်)။

ကြှနျုပျတို့အကွောငျး API ကိုယ်ရေးအချက်အလက်မူဝါဒ ဝန်ဆောင်မှုစည်းမျဉ်းများ ကြှနျုပျတို့ကိုဆကျသှယျရနျ BlueSky တွင် ကျွန်ုပ်တို့ကို လိုက်နာပါ။

2024 Yout LLC | ပြုလုပ်သည်။ nadermx