This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ ffmpeg -i input.mp4 -vcodec h264 -acodec mp2 output.mp4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="//ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script> | |
<script> | |
var kadi; | |
function sonuc() { | |
kadi = document.getElementById("kadi").value; | |
$.getJSON('https://insta-node.herokuapp.com/_validate_username?username=' + kadi, function(data) { | |
if(data["valid"] == true){ | |
document.getElementById("test").innerHTML = '<font color="green"> Bulunmuyor! </font>'; | |
} else if(kadi === "") { | |
document.getElementById("test").innerHTML = '<font color="red"> Kullanıcı adı yazın! </font>'; |
NewerOlder