Jump to content

Search the Community

Showing results for tags 'youtube'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Multi Theft Auto: San Andreas 1.x
    • Support for MTA:SA 1.x
    • User Guides
    • Open Source Contributors
    • Suggestions
    • Ban appeals
  • General MTA
    • News
    • Media
    • Site/Forum/Discord/Mantis/Wiki related
    • MTA Chat
    • Other languages
  • MTA Community
    • Scripting
    • Maps
    • Resources
    • Other Creations & GTA modding
    • Competitive gameplay
    • Servers
  • Other
    • General
    • Multi Theft Auto 0.5r2
    • Third party GTA mods
  • Archive
    • Archived Items
    • Trash

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Gang


Location


Occupation


Interests

Found 21 results

  1. Ladies and Gentlemen, I've been contemplating recording my gameplay for the last couple of years and I've finally decided to go for it. I'm making an MTA series where I go around and experience the servers and perhaps get some new players to join around the servers that I'll be visiting and revive MTA and why not start with the MTA server that is closest to my heart, SAES:RPG - Safe to say I've played here for the longest of time in my adolescence so I feel that it's my duty to introduce the players of MTA to this community. My friend Smallboss and I have returned recently to SAES hungry for some criminals to put behind bars... or in a coffin whichever is more feasible lol! I must warn you the first couple of videos will be a little short of editing as I am quite new to the whole Adobe Premiere video editing scene but I'm starting to warm myself to it as you'll see if you'll be watching the series. Be it if you're bored at work, in your leisure-time or you just want something to watch while eating I suggest you give it a watch, but enough talk. Follow the link below. https://www.youtube.com/playlist?list=PLgVINDYcbMrGT4ZZ_sIRGuUvi7u_BG_7d Feel free to leave any kinds of feedback - if you wanna be featured, Russell#1670 is the discord.
  2. KWKSRV One of the oldest test servers on MTASA, from back in the day, is still here. Currently running on the best connection yet, but soon i'll try starlink. Its all KWKSND's maps and resources connected by a highway that circles SanAndreas. You'll see Zombies, Peds, Hookers, Traffic, UFOs, Stunts, Races and much more. You can buy Drones, Toys, Homes ETC. Visit Odies Stunt Park and Liberty Island. Visit the Theme Park and Ride a Ferris Wheel or Pirate Ship. Go on a Cruise. Operate the Crane, Train and Titan Ship. Get Abducted, Escape, get Revenge. Want a job? Crush Cars, Deliver Pizza and Stolen Vehicles or Blast n Move rock. Be a Wanted Criminal or Join the SAPD and Clean Up The Crime Wave. Win Lottos, Demo Buildings, Hold a Drug Lab or Raid a Nightclub for Big Money. Login For Stats Tracking, Visit Shooting Range, Gain Skills, Camp for Stamina. See 2 YouTube Theaters, Miniplayer, 3D Radio, add Your URL everyone hears it. There has been tons of bug fixes in the last year to the point its pretty much error free now. The IP can change from time to time unfortunately, so i kept my classic old web page alive. http://kwksrv.8bit.ca/KWKSRV2021.html From there you can always get the correct IP and click to join. Drop in and say hi
  3. Anyone can send me a working yt mp3 converter API? Or how to create one, to play music from youtube on my server?
  4. I created a youtube player, and i want to remove the event handler, when the music ends, but i dont know how to get the song length from web browser... anyone can help?
  5. https://www.youtube.com/watch?v=SoA211PUFOw RellatryX Clan War Gameplay. Thanks for watching. Do not forget to comment like and subscribe my channel :)
  6. Mod note: topic locked for serious forum abuse by TS and consorts Welcome at Lethal World A new destination a new world! Since today we've created a new server with alot of unique stuff, definitely something you should try out! The developer created alot of nice mappings and changed alot in the server. Come and try it out! Welcome at Lethal World. We are a new community and we want to welcome everyone. The place where the roleplay is is in los santos we have changed enough so that we can give a unique experience to the players Great admin team who are always ready to help everyone We have a discord with which you as players can talk to each other I hope that enough people come to play in the server so that everyone can share their experience with others and of course that everyone has fun because that is what counts for us https://ibb.co/Q64z6Cq https://ibb.co/sJqvn18 https://ibb.co/vDHkcQy https://ibb.co/kxL3cYy https://ibb.co/JdY36Fj https://ibb.co/JdY36Fj https://ibb.co/JdY36Fj https://ibb.co/C6JjQ6M And Much more, so come check it out any questions? Ask it at our discord thanks alot for taking your time! https://discord.gg/44adDxJ
  7. No errors / warnings in debugscript 3... then what wrong in this script? Client: requestBrowserDomains({"www.convertmp3.io"}) local browser = createBrowser( 1, 1, false ) local currentSound = {} addEvent( 'Play' , true ) addEventHandler( 'Play' , root , function( link ) local vehicle = getPedOccupiedVehicle ( source ) local x, y, z = getElementPosition(vehicle) currentSound[source] = playSound3D( link, x, y, z ) attachElements(currentSound[source],vehicle) setSoundMaxDistance(currentSound[source],30) setSoundVolume(currentSound[source],50) end ) function fetch(_,url) if url and url ~= "" then fetchRemote("http://www.convertmp3.io/fetch/?format=JSON&video="..url, callback) end end addCommandHandler("p",fetch) function callback(data, error) if (error ~= 0) then return outputChatBox(error) end if (data == "ERROR") then return outputChatBox("data error") end local data = fromJSON("["..data.."]") if (data) then outputChatBox("Title: "..data.title) outputChatBox("Length: "..data.length) outputChatBox("Link: "..data.link) loadBrowserURL( browser, data.link ) end end addEventHandler( "onClientBrowserNavigate", browser, function( link ) if not link:find("www.convertmp3.io") then triggerServerEvent( 'play' , localPlayer , link ) -- trigger the event when the script actially gets the playable link! end end ) server: addEvent( 'play' , true ) addEventHandler( 'play' , root , function( link ) triggerClientEvent( root , 'Play' , client , link ) end )
  8. hey guys i want understand also what i use function to set song with players i mean have panel and button i wanna if player press button buy a song for everyone can listen! (playSound?) (onClientSoundStream)? srry bad english?
  9. This is the code: requestBrowserDomains({"www.convertmp3.io"}) local browser = createBrowser( 0, 0, false ) local currentSound = {} function start(_,link) fetch(link) end addCommandHandler("play",start) function fetch(url) if (url) then fetchRemote("http://www.convertmp3.io/fetch/?format=JSON&video="..url, callback) end end function callback(data, error) if (error ~= 0) then return outputChatBox(error) end if (data == "ERROR") then return outputChatBox("data error") end local data = fromJSON("["..data.."]") if (data) then outputChatBox("Title: "..data.title) outputChatBox("Length: "..data.length) outputChatBox("Link: "..data.link) loadBrowserURL( browser, data.link ) end end addEventHandler( "onClientBrowserNavigate", browser, function( link ) if not link:find("www.convertmp3.io") then local vehicle = getPedOccupiedVehicle ( localPlayer ) local x, y, z = getElementPosition(vehicle) currentSound[localPlayer] = playSound3D( link, x, y, z ) attachElements(currentSound[localPlayer],vehicle) setSoundMaxDistance(currentSound[localPlayer],30) setSoundVolume(currentSound[localPlayer],50) end end ) How to synchronise to all players?
  10. function asdasdsas() playSound("http://www.convertmp3.io/fetch/?video=https://www.youtube.com/watch?v=iq7q82Cd6RI") end addCommandHandler("test",asdasdsas) what wrong? the API working fine, but the playSound not.. how to fix?
  11. I wanna get remaining time from the video, but does not working.. Why? function callback(data, error) if (error ~= 0) then return outputChatBox(error) end if (data == "ERROR") then return outputChatBox("data error") end local data = fromJSON("["..data.."]") if (data) then local minutes, seconds = convertTime(tonumber(data.length)) if seconds < 10 then seconds = "0"..seconds end outputChatBox("Title: "..data.title) outputChatBox("Length: "..minutes..":"..seconds ) outputChatBox("Remaining: "..data.remaining) loadBrowserURL( browser, data.link ) end end
  12. I want play songs from youtube, but i don't know how to use a converter to this.. Anyone can send me a WORKING link like this: http://www.convertmp3.io/fetch/?video=..ytlink..? Sorry for my bad english...
  13. Hey guys, is there any way to convert a YouTube link to MP3 using fetchRemote or any other way? Thanks
  14. I want make a script, which plays sound from youtube.. But.. there is no one converter which would work.. How to use a converter as sound player? Anyone can help?? Sorry for my bad english..
  15. I want create a sound requester script, but how to convert yt link to mp3 with script? Sorry for my very bad english.
  16. Hello MTA Community! I'm happy to announce the start of 'Writing a Roleplay Gamemode From Scratch' chapters in my youtube channel. The first chapter is already released, check it out below! Don't forget to subscribe in order to be notified when new content is uploaded and also let a comment with your opinion and aspects that should be improved!
  17. Hello , I have a problem with the extension of Youtube in Mta , When I open Youtube in the script of "Cinema" , the window turn black and after white and no charge anything , is the same with the small windows of youtube , but I don't know why , I can put images .png , .jpg and .gif in the cinema , but when I put one video of Youtube the windows turn to white , Can you help me with this situation ? Regards.
  18. MUSIC SEARCH ENGINE (Provided by Youtube, Soundcloud and vmuzice.com) Hey everyone! I have decided to release this script that I made it some time ago. There's no much to say, it's a simple tool to search music. I don't have an updated video of this resource but I can say it is an improved version of this https://www.youtube.com/watch?v=q35h7dtYRrE (Which it is mine). 1. First thing first: In the v2, you have three sources from where you get songs, but two of them you need to have an api key: Youtube and Soundcloud. Tutorial I have made for Youtube API: https://youtu.be/2AeCaihFGuU Soundcloud: Ask for it http://soundcloud.com/you/apps/new (See more https://developers.soundcloud.com/) For vmuzice.com, there is no requirements (but see if it is avaiable in the server's area) 2. Second thing: ADD THE RESOURCE TO THE ACL RPC (Needed for fetchRemote to get results from youtube, soundcloud, etc)3. Third thing: You can open the GUI in game using /youtube and '/youtube stop' to stop listening. Download link: https://community.multitheftauto.com/index.php?p=resources&s=details&id=14330 Any question will be answered as soon as I can.
  19. Hello my name is Wachon and I started playing MTA in 2007 in a cyber coffee, I played in varieties of servers, many styles. But more I was in tactics, CnR, Gangwars, I played servers like CIT. Well without more to say, I turned 10 years in this wonderful game and as I never registered to the forum, I didn't care to register, but I do not play much, so I come to say that you can enter to my youtube channel, if you like. You can watch my videos, I started editing in 2015. I'm looking for a team to edit videos in GTA, I back to edit again. I had my team Urban Edits (Already inactive) but if anyone interested I can re-open it. Here ill show u my last video: Thanks for watching, leave a comment if u want Urban Edits CHANNEL: https://www.youtube.com/channel/UCI1t-ojq_D4uxS2tSoQosxQ
  20. سلام عليكم ورحمة الله وبركاتة شباب انا بدي اسوي مربع بحث اكتب فيه مثلا اسم مقطع كأني ابحث باليوتيوب ويجيب لي النتائج بالقريد ليست اتمنى مساعدتكم
  21. Hi, Is there any way to use a youtube video on the login screen? Example: Example
×
×
  • Create New...