Hangi programlama dilleri, bu gibi, youtube online video dönüştürme ve mp3 çıkarılması için siteleri oluşturmak için kullanılır: http://getvideo.bg? Ben php yazılı değil sanırım ...
Hangi programlama dilleri, bu gibi, youtube online video dönüştürme ve mp3 çıkarılması için siteleri oluşturmak için kullanılır: http://getvideo.bg? Ben php yazılı değil sanırım ...
Yes, the site can be written in any web/UI language/framework you like and you are famlilar with. However, when optimized algorithms and long running process come into place (like in your video converter case) you usually have decoupled service "workers" running outside of your web container. Probably even on another server / farm. On the site (using php for example) you just gather the data from users and issue jobs to the service workers. (this can be done by having job queues in a DB for example). Once the jobs are finished, the ui will tell the user about it.
"Işçi" Hakkında: Bu genellikle en iyi gerçek görevi (bu durumda dönüştürme video) sığacak framweworks kullanmak bir oyun alanıdır. Ben, java uzayda i ile en bildik çünkü Thats olmazdı. Öte yandan, en verimli işleme kütüphaneleri belki C yazılır, bu nedenle çalışmaları yeni işler için kalıcı bekliyor / çalışan veya cron işi aracılığıyla tetiklenir C programları olabilir.
However, most important lesson is here to honor decentralized, service oriented architectures because two very different worlds meet each other here: Web Development and highly scalable processing power. HTH, Toni