move website
This commit is contained in:
parent
42fede81e5
commit
32cb91f07d
27
website/download.php
Normal file
27
website/download.php
Normal file
@ -0,0 +1,27 @@
|
||||
|
||||
<?php
|
||||
|
||||
function command_exist($cmd) {
|
||||
$return = shell_exec(sprintf("which %s", escapeshellarg($cmd)));
|
||||
return !empty($return);
|
||||
}
|
||||
|
||||
if(isset($_POST['url'])){
|
||||
// sanitize input
|
||||
|
||||
$url = $_POST['url'];
|
||||
|
||||
echo "récupération de la vidéo à l'url " . $url. " ... <br>";
|
||||
|
||||
if (!command_exist('youtube-dl')) {
|
||||
print '[Erreur] pas de commande youtube-dl installée sur ce serveur';
|
||||
} else {
|
||||
shell_exec('youtube-dl -i -f best --output "../input/ydl/%(title)s.%(ext)s" '.$url);
|
||||
}
|
||||
|
||||
}else{
|
||||
echo "pas d'url envoyée. Vérifiez le formulaire. <a href='index.php'>Retour</a>";
|
||||
}
|
||||
|
||||
|
||||
include( 'website/run.php' );
|
@ -1,6 +1,5 @@
|
||||
<?php
|
||||
include('src/download.php');
|
||||
include('src/run.php');
|
||||
include( 'website/download.php' );
|
||||
?>
|
||||
<html>
|
||||
<head>
|
||||
@ -14,8 +13,8 @@
|
||||
<h1>Transcription</h1>
|
||||
<section>
|
||||
Donnez l'url de la vidéo à transcrire.
|
||||
<form action='' >
|
||||
<input type='text' >
|
||||
<form action='download.php' method='post' >
|
||||
<input type='text' name='url'>
|
||||
<button type='submit'>Envoyer</button>
|
||||
</form >
|
||||
</section>
|
Loading…
Reference in New Issue
Block a user