ເອກະສານ API

Yout.com API ແມ່ນໂຮດຢູ່ທີ່ dvr.yout.com .


ການຢືນຢັນ

ເພື່ອເຂົ້າເຖິງ Yout.com API, ທ່ານຕ້ອງໃສ່ລະຫັດ API ທີ່ເປັນເອກະລັກຂອງທ່ານ. ທ່ານສາມາດໄດ້ຮັບລະຫັດ API ໂດຍການລົງທະບຽນດ້ວຍທີ່ຢູ່ອີເມວຂອງທ່ານ. ກະລຸນາຈື່ຈໍາທີ່ຈະຮັກສາລະຫັດ API ຂອງທ່ານເປັນຄວາມລັບ.

ການພິສູດຢືນຢັນດ້ວຍ API ແມ່ນຈັດການຜ່ານສ່ວນຫົວ HTTP. ການຮ້ອງຂໍທັງໝົດຕ້ອງການສ່ວນຫົວການອະນຸຍາດທີ່ມີລະຫັດ API ຂອງທ່ານໃນລະຫັດຮູບແບບ: YOUR_API_KEY , ເຊິ່ງ YOUR_API_KEY ແມ່ນກະແຈທີ່ມີຢູ່ໃນໜ້າບັນຊີຂອງທ່ານ.

ເພື່ອຄວາມປອດໄພ, ການຮ້ອງຂໍທັງໝົດຕ້ອງຖືກສົ່ງຜ່ານການເຊື່ອມຕໍ່ HTTPS ທີ່ເຂົ້າລະຫັດໄວ້ເພື່ອປົກປ້ອງຂໍ້ມູນຂອງທ່ານໃນລະຫວ່າງການສົ່ງຂໍ້ມູນ.


ການ​ປ່ຽນ​ຮູບ​ແບບ MP3​

ສົ່ງ URL ວິດີໂອ/ສຽງໄປຫາ Yout.com API ສຳລັບການປ່ຽນຮູບແບບ MP3. API ຈະກວດຫາສຽງ/ວິດີໂອໂດຍອັດຕະໂນມັດ ແລະກະກຽມມັນສຳລັບການຫຼິ້ນທີ່ດີທີ່ສຸດຢູ່ໃນອຸປະກອນຕ່າງໆ.

ຕົວຢ່າງສໍາລັບການປ່ຽນຮູບແບບ MP3

ແທນທີ່ 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​

ສົ່ງ URL ວິດີໂອ/ສຽງໄປຫາ Yout.com API ສຳລັບການປ່ຽນຮູບແບບ MP4. API ຈະກວດຫາສຽງ/ວິດີໂອໂດຍອັດຕະໂນມັດ ແລະກະກຽມມັນສຳລັບການຫຼິ້ນທີ່ດີທີ່ສຸດຢູ່ໃນອຸປະກອນຕ່າງໆ.

ຕົວຢ່າງສໍາລັບການປ່ຽນຮູບແບບ MP4

ແທນທີ່ 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)

URL ສຽງ/ວິດີໂອໃນ base64. ກວດເບິ່ງທຸກຫນ້າທີ່ພວກເຮົາສະຫນັບສະຫນູນ. ຄລິກທີ່ນີ້

start_time
int

ອັນນີ້ແມ່ນໃຊ້ເພື່ອຕັດສຽງ ຫຼືວິດີໂອ ແລະສະແດງເຖິງທີສອງທີ່ທ່ານຕ້ອງການໃຫ້ການບັນທຶກສຽງ/ວິດີໂອເລີ່ມຕົ້ນ. ທ່ານສາມາດສົ່ງ false ເພື່ອຊີ້ບອກວ່າຄວນເລີ່ມຕົ້ນຈາກວິນາທີທີ 0.

end_time
int / bool (false)

ອັນນີ້ຖືກໃຊ້ເພື່ອຕັດສຽງ ຫຼືວິດີໂອ ແລະສະແດງເຖິງທີສອງທີ່ທ່ານຕ້ອງການໃຫ້ການບັນທຶກສຽງ/ວິດີໂອສິ້ນສຸດ. ທ່ານ​ສາ​ມາດ​ສົ່ງ <code>false</code> ​ຖ້າ​ຫາກ​ວ່າ​ທ່ານ​ບໍ່​ຕ້ອງ​ການ​ທີ່​ຈະ​ຕັດ​ສຽງ / ວິ​ດີ​ໂອ​.

title
string (required)

ຫົວຂໍ້ທີ່ສຽງ/ວິດີໂອຈະຖືກບັນທຶກ; ມັນຍັງຖືກໃຊ້ເພື່ອຕັ້ງຊື່ໄຟລ໌ທີ່ສ້າງຂຶ້ນ.

artist
string

ຊື່ສິນລະປິນທີ່ໄຟລ໌ຈະຖືກບັນທຶກໄວ້.

audio_quality
string

ຄຸນະພາບທີ່ໄຟລ໌ສຽງຈະຖືກບັນທຶກ. ຄຸນນະພາບທີ່ມີຢູ່ແມ່ນ 32k , 64k , 128k , 256k , ຫຼື 320k .

video_quality
string

ຄຸນ​ນະ​ພາບ​ທີ່​ໄຟລ​໌​ວິ​ດີ​ໂອ​ຈະ​ໄດ້​ຮັບ​ການ​ບັນ​ທຶກ​. ຄຸນນະພາບທີ່ມີຢູ່ແມ່ນ 144 , 240 , 360 , 480 , 720 (ສຳລັບ HD), 1080 (ສຳລັບ UHD), 2160 (ສຳລັບ 4k), ຫຼື 4320 (ສຳລັບ 8k).

ກ່ຽວກັບພວກເຮົາ API ນະໂຍບາຍຄວາມເປັນສ່ວນຕົວ ເງື່ອນໄຂການໃຫ້ບໍລິການ ຕິດຕໍ່ພວກເຮົາ ຕິດຕາມພວກເຮົາໃນ BlueSky

2024 Yout LLC | ເຮັດໂດຍ nadermx