Ko Yout.com API kei te manaaki i dvr.yout.com
.
Hei uru ki te Yout.com API, me whakauru e koe to matua API ahurei. Ka taea e koe te tiki i te matua API ma te haina me to wahitau imeera. Kia mahara ki te pupuri i to matua API.
Ko te motuhēhēnga me te API ka whakahaerehia ma nga pane HTTP. Ko nga tono katoa me tono he pane Whakamana kei roto i to taviri API i roto i te taviri hōputu: YOUR_API_KEY
, kei reira ko YOUR_API_KEY
te matua kei runga i to wharangi kaute.
Mo te haumarutanga, me tuku nga tono katoa ma runga i te hononga HTTPS whakamunatia hei tiaki i o raraunga i te wa tuku.
Tukuna he URL ataata/ororongo ki te Yout.com API mo te whakarereke-whakaahua MP3. Ka kitea aunoa e te API te ororongo/ataata me te whakarite kia pai te purei i runga i nga momo taputapu.
Tauira mo MP3 Hōputu-Huri
Whakakapia YOUR_API_KEY
ki to taviri API ahurei (kua kitea i to wharangi kaute Yout.com) ka whakakapi AUDIO_URL ki te URL oro/ataata:
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
Tukuna he URL ataata/ororongo ki te Yout.com API mo te whakarereke-whakaahua MP4. Ka kitea aunoa e te API te ororongo/ataata me te whakarite kia pai te purei i runga i nga momo taputapu.
Tauira mo MP4 Hōputu-Huri
Whakakapia YOUR_API_KEY
ki to taviri API ahurei (kua kitea i to wharangi kaute Yout.com) ka whakakapi VIDEO_URL ki te URL oro/ataata:
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
Ko te URL ororongo/ataata i base64. Tirohia nga wharangi katoa e tautokohia ana e matou. Pāwhiri ki konei
Ka whakamahia tenei hei kuti i te ororongo, ataata ranei, ka tohu i te tuarua e hiahia ana koe kia timata te hopu oro/ataata. Ka taea e koe te tuku false
ki te tohu me timata mai i te 0 tuarua.
Ka whakamahia tenei ki te kuti i te ororongo, ataata ranei, ka tohu i te tuarua e hiahia ana koe kia mutu te hopu oro/ataata. Ka taea e koe te tuku <code>false</code> ki te kore koe e pai ki te kuti i te ororongo/ataata.
Ko te taitara e tuhia ai te ororongo/ataata; ka whakamahia hoki hei whakaingoa i te konae i hangaia.
Ko te ingoa o te kaitoi e tuhi ai te konae.
Ko te kounga ka tuhia te konae ororongo. Ko nga kounga e waatea ana ko 32k
, 64k
, 128k
, 256k
, 320k
ranei.
Ko te kounga ka tuhia te konae ataata. Ko nga kounga e waatea ana ko 144
, 240
, 360
, 480
, 720
(Mo HD), 1080
(Mo te UHD), 2160
(Mo te 4k), 4320
ranei (Mo te 8k).
Mo matou API Kaupapahere Tūmataiti Nga tikanga o te ratonga Whakapā mai Whaia matou i runga i BlueSky
2024 Yout LLC | Hanga e nadermx