Ny API Yout.com dia nampiantranoina ao amin'ny dvr.yout.com
.
Raha te hiditra amin'ny Yout.com API dia tsy maintsy ampidirinao ny lakile API tokana. Afaka mahazo fanalahidin'ny API ianao amin'ny fisoratana anarana amin'ny adiresy mailakao. Azafady, tadidio ny fitazonana ho tsiambaratelo ny fanalahidin'ny API anao.
Ny fanamarinana miaraka amin'ny API dia atao amin'ny alàlan'ny lohatenin'ny HTTP. Ny fangatahana rehetra dia mitaky lohatenin'ny Fanomezan-dàlana misy ny fanalahidin'ny API ao amin'ny fanalahidin'ny format: YOUR_API_KEY
, izay ny YOUR_API_KEY
no fanalahidy hita ao amin'ny pejin'ny kaontinao.
Ho an'ny fiarovana, ny fangatahana rehetra dia tsy maintsy alefa amin'ny fifandraisana HTTPS misy miafina mba hiarovana ny angonao mandritra ny fandefasana.
Alefaso URL video/peo any amin'ny Yout.com API mba hanovana endrika MP3. Ny API dia hamantatra ho azy ny feo/video ary hanomana azy amin'ny famerenana tsara indrindra amin'ny fitaovana isan-karazany.
Ohatra ho an'ny MP3 Format-Shifting
Soloy YOUR_API_KEY
amin'ny fanalahidin'ny API tokana anao (hita ao amin'ny pejin'ny kaonty Yout.com) ary soloy AUDIO_URL ny URL audio/video:
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
Alefaso URL video/peo amin'ny Yout.com API mba hanovana endrika MP4. Ny API dia hamantatra ho azy ny feo/video ary hanomana izany amin'ny famerenana tsara indrindra amin'ny fitaovana isan-karazany.
Ohatra ho an'ny MP4 Format-Shifting
Soloy YOUR_API_KEY
amin'ny fanalahidin'ny API tokana (hita ao amin'ny pejin'ny kaonty Yout.com) ary soloy ny VIDEO_URL amin'ny URL audio/video:
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
Ny URL audio/video ao amin'ny base64. Jereo ny pejy rehetra tohananay. kitiho eto
Ity dia ampiasaina hanapahana ny horonam-peo na horonan-tsary ary maneho ny faharoa izay tianao hanombohan'ny fandraisam-peo/video. Azonao atao ny mandefa false
mba hilazana fa tokony hanomboka amin'ny segondra faha-0 izany.
Ity dia ampiasaina hanapahana ny feo na horonan-tsary ary maneho ny faharoa izay tianao hamaranana ny fandraketana feo/video. Azonao atao ny mandefa <code>false</code> raha tsy te hanapaka ny feo/video ianao.
Ny lohatenin'ny horonam-peo/video; ampiasaina amin'ny anaran'ilay rakitra novokarina koa izy io.
Ny anaran'ny mpanakanto izay hanoratana ny rakitra.
Ny kalitao izay hanoratana ny rakitra audio. Ny toetra misy dia 32k
, 64k
, 128k
, 256k
, na 320k
.
Ny kalitao ho firaketana ny rakitra video. Ny toetra misy dia 144
, 240
, 360
, 480
, 720
(Ho an'ny HD), 1080
(Ho an'ny UHD), 2160
(Ho an'ny 4k), na 4320
(Ho an'ny 8k).
Momba anay API politika fiarovana fiainan'olona Fepetra momba ny serivisy Mifandraisa aminay Araho izahay amin'ny BlueSky
2024 Yout LLC | Nataon'ny nadermx