Yout.com API는 dvr.yout.com
에서 호스팅됩니다.
Yout.com API에 액세스하려면 고유한 API 키를 포함해야 합니다. 이메일 주소로 가입하면 API 키를 얻을 수 있습니다. API 키를 기밀로 유지하세요.
API 인증은 HTTP 헤더를 통해 처리됩니다. 모든 요청에는 API 키가 포함된 Authorization 헤더가 필요합니다. 형식은 key: YOUR_API_KEY
이며, YOUR_API_KEY
는 계정 페이지에서 사용할 수 있는 키입니다.
보안을 위해 모든 요청은 전송 중에 데이터를 보호하기 위해 암호화된 HTTPS 연결을 통해 보내야 합니다.
MP3 포맷 변환을 위해 Yout.com API에 비디오/오디오 URL을 보냅니다. 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 포맷 변환을 위해 Yout.com API에 비디오/오디오 URL을 보냅니다. 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
base64의 오디오/비디오 URL입니다. 저희가 지원하는 모든 페이지를 확인하세요. 여기를 클릭하세요
이것은 오디오나 비디오를 트리밍하는 데 사용되며 오디오/비디오 녹화를 시작할 초를 나타냅니다. false
보내 0초부터 시작해야 함을 나타낼 수 있습니다.
이것은 오디오나 비디오를 트리밍하는 데 사용되며 오디오/비디오 녹화를 종료하려는 초를 나타냅니다. 오디오/비디오를 트리밍하지 않으려면 <code>false</code> 보낼 수 있습니다.
오디오/비디오가 녹음될 제목입니다. 생성된 파일의 이름을 지정하는 데도 사용됩니다.
파일이 기록될 아티스트의 이름입니다.
오디오 파일이 녹음될 품질. 사용 가능한 품질은 32k
, 64k
, 128k
, 256k
또는 320k
입니다.
비디오 파일이 녹화되는 품질입니다. 사용 가능한 품질은 144
, 240
, 360
, 480
, 720
(HD의 경우), 1080
(UHD의 경우), 2160
(4k의 경우), 4320
(8k의 경우)입니다.