How To Add Date And Time On Video - 100% FREE WITH OBS STUDIO

  Рет қаралды 124,092

Scott Fichter

Scott Fichter

Күн бұрын

Пікірлер: 294
@RgrgrGrgrg-lk2th
@RgrgrGrgrg-lk2th 3 жыл бұрын
I have have optimized my previous script changes. The function script_description, I have added %dx to provide the option to add the th,st,nd,th to the day and added the timezone %z and %Z copy and paste the following code segment to replace the existing function function script_description() return "Sets a text source to act as a clock when the source is active.\ \ The datetime format can use the following tags:\ \ %a abbreviated weekday name (e.g., Wed)\ %A full weekday name (e.g., Wednesday)\ %b abbreviated month name (e.g., Sep)\ %B full month name (e.g., September)\ %c date and time (e.g., 09/16/98 23:48:10)\ %d day of the month (16) [01-31]\ %dx day of month with st,rd,th,nd (01st) [01-31]\ %H hour, using a 24-hour clock (23) [00-23]\ %I hour, using a 12-hour clock (11) [01-12]\ %M minute (48) [00-59]\ %m month (09) [01-12]\ %p either \"am\" or \"pm\" (pm)\ %S second (10) [00-61]\ %w weekday (3) [0-6 = Sunday-Saturday]\ %x date (e.g., 09/16/98)\ %X time (e.g., 23:48:10)\ %Y full year (1998)\ %y two-digit year (98) [00-99]\ %z timezone (0600)\ %Z timezone (Mountain Standard Time)\ %% the character `%´" end I have also modified the set_datetime_text function to accommodate the new %dx copy and paste the following code segment to replace the existing function function set_datetime_text(source, format) if string.find(format, "%%dx") ~= nil then local s = "thstndrd" local i = 0 local d = os.date("%d") if d[-1] == '1' then i = 2 elseif d[-1] == '2' then i = 4 elseif d[-1] == '3' then i = 6 end format = format.gsub(format, "%%dx", "%%d"..s.sub(s, i, 2)) end local text = os.date(format) local settings = obs.obs_data_create() obs.obs_data_set_string(settings, "text", text) obs.obs_source_update(source, settings) obs.obs_data_release(settings) end
@ScottFichter
@ScottFichter 3 жыл бұрын
killer!!!! Thank you!
@AnuvabSpeaks
@AnuvabSpeaks Жыл бұрын
The Actual Code is in the discussion page of the script...Thank You.
@JP_Purin
@JP_Purin Жыл бұрын
@@AnuvabSpeaks im copy and paste and didnt work
@LazyKing3D2Y
@LazyKing3D2Y Жыл бұрын
Is there a way to make the text instead of horizontal vertical? Like this
@josblykers6915
@josblykers6915 4 жыл бұрын
Hi Scott - I ran into a problem and here is how I solved it: Copying/pasting the text from the script with Ctrl-A, Ctrl-C and Ctrl-V into a txt-file and subsequently renaming the file extension to .lua, did not work. Regardless of the extension one artificially adds, it remains a text file. However, if, when positioned on the script, one right-clicks and "saves the PAGE as" "All Files" (and so NOT as a Text Document), then the .lua characteristics are maintained. And by the way, there is no need for renaming afterwards, either. Hope it may help some other users as well. Jos (Windows 10 environment).
@ScottFichter
@ScottFichter 4 жыл бұрын
Thanks for posting the solution. Best wishes
@clickbazz5248
@clickbazz5248 4 жыл бұрын
yeah ! it is working .......it was name of text which is need to be same as text source ......good work Scott...And thanks
@mikefarrington7141
@mikefarrington7141 3 жыл бұрын
Your solution is the proper one, Scott did it in a roundabout way. The reason it worked for him and not you is because he is showing file extensions on his computer, and you are not. Most tech people turn this on. What happened to you is you ended up with a file named datetime.lua.txt (but you couldn't see the .txt).
@anthonyaquino9901
@anthonyaquino9901 3 жыл бұрын
@@mikefarrington7141 Thanks! What I needed. I didn'tbunderstand what "when positioned on the script meant.
@peaceofheart3406
@peaceofheart3406 3 жыл бұрын
thanks bro
@aini_
@aini_ 9 ай бұрын
spent an hour trying to open the .lua script in mac at 4:42, writing this in case anyone else gets stuck - copying the script into textedit on mac doesn't save as .lua even if you rename it so obs won't recognise this file. to fix this download another text software (i used sublimetext) and if you rename that file it ill save as .lua and be loaded in :)
@bradley_myers
@bradley_myers 5 ай бұрын
thank you man, i was disappointed but you saved me!
@touhouDJ
@touhouDJ 7 ай бұрын
For anybody having trouble turning the TXT file into LUA, your folders might be set to hide extensions for KNOWN files. Control Panel > Appearance and Personalization > File Explorer Option > View, under the Advance Settings you'll see Hide extensions for known file types, uncheck then apply. TXT files will now turn into LUA files when you rename them.
@Vidgirl8
@Vidgirl8 2 ай бұрын
THANK YOU!!!!!
@newamericanshame
@newamericanshame 7 ай бұрын
This video is my go-to every time I need to set OBS up on a new computer. Thank you for the 40th time.
@MrRocknut
@MrRocknut 10 ай бұрын
A neighbor just had their car ransacked so I set up a makeshift security camera with an old webcam and OBS. This video was a big help thank you!
@ChasLarge
@ChasLarge Жыл бұрын
Thanks for the script Scott. As it stands, the script forces the time to be US local time, to change that, say for us BRITS, REMOVE THE LINE: local time = time - (60*60*11) + (60*60*time_offset) Or edit it to suit your local time.
@tonynahon
@tonynahon Ай бұрын
Hi Scott: Thanks for this - it is just what I needed. Clear and straightforward presentation!
@HansSuzuki
@HansSuzuki 3 жыл бұрын
As an OBS user KZbinr, this is a good channel for OBS troubleshooting solution
@ScottFichter
@ScottFichter 3 жыл бұрын
thx
@juanO64yoshi
@juanO64yoshi Жыл бұрын
Excellent video. Followed the instructions and it worked. Love how controllable the formatting is.
@WelcometotheBreakroom
@WelcometotheBreakroom 2 жыл бұрын
the LUA tutorial was extremely helpful after the web link clock version I was using stopped working. Thank you!
@ScottFichter
@ScottFichter 2 жыл бұрын
Glad it helped!
@shinymoltres73
@shinymoltres73 4 жыл бұрын
Excellent video! Very easy to follow and to the point. Got me up and running with a customizable date and time display for my OBS layout in just a few minutes. Thanks a lot!
@ScottFichter
@ScottFichter 4 жыл бұрын
Glad it helped Shiny. Stay Strong and Keep Fighting.
@ScullyPop
@ScullyPop 4 жыл бұрын
Your channel has become so awesome. Your tips and suggestions always help me out.
@ScottFichter
@ScottFichter 4 жыл бұрын
Thanks Scully!
@theinfinitefilmmaker
@theinfinitefilmmaker 2 жыл бұрын
Thank you Scott! I have been trying to learn how to add time and date to OBS ever since Covid hit and I had to take my deposition business online.
@ScottFichter
@ScottFichter 2 жыл бұрын
Welcome.
@theinfinitefilmmaker
@theinfinitefilmmaker 2 жыл бұрын
@@ScottFichter Thanks, I'm looking forward to watching your videos.
@lcheadle
@lcheadle 2 жыл бұрын
Trying to emulate Geek Tools for Mac. My biggest want was to have a 50% opacity black background. The HTML overlay in OBS does not allow that, at least I was not able to code the opacity in. The LUA process in this video gives ver, very nice results. Legal video, depositions, date/time stamp.
@johnj.parker6812
@johnj.parker6812 11 ай бұрын
GThanks you for all of the great tutorials! I added the date/time script and set the format as described here. Now my text is blinking and I cannot figure out how to make that stop. It is probably an easy fix, but I could not find how to do this.
@bogartwilley
@bogartwilley 2 жыл бұрын
I've been trying to get this rigged up semi-proper for months now. Thank You! I've got the Date/Time in my Favorite/Most Streamed Game's Font now! ^-^
@ScottFichter
@ScottFichter 2 жыл бұрын
Glad I could help!
@himangiagrawal7961
@himangiagrawal7961 4 жыл бұрын
hi scott i want to ask something from u, could u tell me how do u set u timer along and music ?while live streaming , i wanna make study with me videos .. in which videos go along
@ScottFichter
@ScottFichter 4 жыл бұрын
The easiest way is to make a video with a green background with a timer countdown in the left or right side then add your audio track to that video. Then import that video and make the green background transparent. BOOM! Now you have a song playing with a countdown timer that is the exact length of the song. The video can be placed on top of any source because the green background will be invisible.
@deejayskam2543
@deejayskam2543 4 жыл бұрын
Thank you big time, I've been seeing it on tv and wondered how they did it but walla! You've taught me that. Thanks again
@ScottFichter
@ScottFichter 4 жыл бұрын
Rock on Deejay!
@pj.exconde
@pj.exconde 2 жыл бұрын
Thank you, it really helped me a lot. But is there anyway to change the time? For ex. I am in the UK but I want to change it into New York Time.
@nicocorico4808
@nicocorico4808 9 ай бұрын
for those who want to change day language displayed to french, I added this to line 13 (before "-- Function to set the time text" ) : -- Set the locale to French os.setlocale("fr_FR.utf8") or for german : -- set our own "time" locale setting os.setlocale("de_DE.UTF-8", "time") (check comment #27 of the obs thread linked in description)
@smassky
@smassky 2 жыл бұрын
I already had a clock for my streams in OBS, using a web page I built and hosted on my website, but I'm going to try the lua script so it doesn't have to go to my website all the time. Though it's not exactly resource or bandwidth heavy thing. I do have another part that constantly updates too, target for what I'm looking at with my telescope. That gets updated via a form on my website. Seems a little easier than changing text in obs when needed.
@bluerascal370
@bluerascal370 Жыл бұрын
Thank you so much for the help! This is gonna come in handy for make-shift security cam setups.
@NJLEETV
@NJLEETV Ай бұрын
This channel gives a lot of ideas to use "OBS" better ways and additional options! I need someone's help to modify the time format to hh:mm without "second". I tried to use "%H %: %M", however OBS program always closed. How can I achieve this time format? Thanks in advance.
@BillyRiddle-g9p
@BillyRiddle-g9p Жыл бұрын
Thanks for sharing Scott. Any chance we could get an update video on this? And if you could mention mac that would be so awesome. Thank you -🙏
@LUCKY_HORSE_GAMING
@LUCKY_HORSE_GAMING 2 ай бұрын
i need a different type of timecode... i just want to synchronize some footage together much more easily^^ for example.. i make a long recording session and i mark out some interesting moments using my replay buffer. now i want to synchronize my replay footage whit the long raw footage in premiere. I know that i can synchronize by sound but sometimes this would not work or it takes a lot of time. Whit a decent timecode, i could match the footage much faster together can you help me?
@andriagvidiani8224
@andriagvidiani8224 2 жыл бұрын
Hi there. This Video is very useful and thank you for it. I wonder if I can change the language for the date and name of the month?
@fxgirault
@fxgirault 4 жыл бұрын
In the LUA script, Line 111, change "source_id = obs.obs_source_get_id(source)" by "source_id = obs.obs_source_get_unversioned_id(source)", will fix the selector problem
@ScottFichter
@ScottFichter 4 жыл бұрын
THANK YOU!!!!!
@conspiracies1014
@conspiracies1014 4 жыл бұрын
I have looked and print it out and still can not find "source_id = obs.obs_source_get_id(source)" to replace with "source_id = obs.obs_source_get_unversioned_id(source)" UPDATE: After looking over the print out I did find it. Will let you know if it will work, Thanks, KR222.
@Pixiuchu
@Pixiuchu 4 жыл бұрын
@@conspiracies1014 Did it work?
@conspiracies1014
@conspiracies1014 4 жыл бұрын
@@Pixiuchu Yes the date and time worked, but the add on Script line 111 did not work for me. I tried for about three hours and gave up. Good Luck. NR222.
@SilverPhoenix-PlazmaMoon
@SilverPhoenix-PlazmaMoon 2 жыл бұрын
dratzz! i tried to cheat and add the lua extension when saving str8 from notepad and it flunked me.. when will ii ever learn. Thanks for all the help. 🔔👍
@11AviationVideos
@11AviationVideos 2 жыл бұрын
Thank you Scott for your help. I learn a lot from your video.
@DJFREDDYNYC
@DJFREDDYNYC 2 жыл бұрын
Did the first one. Was very easy. Thanks.
@salimadiyo9442
@salimadiyo9442 Жыл бұрын
thanks alot man.totally love your videos from East Africa
@soundstasty
@soundstasty 3 жыл бұрын
Thank you I didn't understand the "Text source" in OBS scripts, what should I type there? Thank you
@ScottFichter
@ScottFichter 3 жыл бұрын
You need to first create a text source. Create your text. When you keep the wording simple so you can remember it. Then when you open the LUA script there's a pulldown in most cases the pulldown will allow you to select the text source that you just created, if not, you need to enter the name of the text source. Upon doing that correctly the text sournce will switch to the countdown timer. Does that make sense.
@beyondthebeats7852
@beyondthebeats7852 3 жыл бұрын
Another great video! Thank you!
@ScottFichter
@ScottFichter 3 жыл бұрын
Glad you enjoyed it!
@matheundmehr...8833
@matheundmehr...8833 3 жыл бұрын
Thank you for your video. It helped me a lot!I like also the outro Song!
@ScottFichter
@ScottFichter 3 жыл бұрын
You're welcome Andree.
@TurtleCreativity
@TurtleCreativity 4 жыл бұрын
Very awesome and informative video. I see it is so much you can do with OBS. Whenever I start to go live again I will for sure check will look into this. Also I see you are almost at 10K congratulations. Much love to you always!
@ScottFichter
@ScottFichter 4 жыл бұрын
Thanks Turtle - I want to record the flip to 10K but I think it'll happen at 4AM in the morning. UG!
@Jack_Star_7
@Jack_Star_7 3 жыл бұрын
do you know how to change the colors of the numbers from a website when they go up and down? like up it would be green and red for down
@ScottFichter
@ScottFichter 3 жыл бұрын
Yes, you could probably pull that off with a color correction filter.
@arthurherbert3140
@arthurherbert3140 10 ай бұрын
Thanks a lot for this video, everything is clear now.
@purposeful420
@purposeful420 3 жыл бұрын
thank you, it's very helpful content!
@ScottFichter
@ScottFichter 3 жыл бұрын
Glad it was helpful!
@AamirBilal
@AamirBilal 4 жыл бұрын
Thank you, Sir. You are a man of genius.
@ScottFichter
@ScottFichter 4 жыл бұрын
Thanks dude!
@jacksongaludo
@jacksongaludo 4 жыл бұрын
Thank you so much Scott. Now, I already knew how to put timer in my OBS studio. God bless you!
@ScottFichter
@ScottFichter 4 жыл бұрын
Happy to help! Free Life!
@CarlosReyes-lp3lk
@CarlosReyes-lp3lk 4 жыл бұрын
ik this is lazy but i actually just open google and looked up my time zone, copied the link and opened a browser in sources and paste it after that i cropped the excesive stuff i didnt need till i had the time only after that i used a filter on the browser and applied a color key and choose in my case white after that i had a time cx
@ScottFichter
@ScottFichter 4 жыл бұрын
Yup, there are so many ways to skin the cat with OBS. Thanks for posting your method.
@alessandrotaranto3017
@alessandrotaranto3017 2 жыл бұрын
Hey Scott any way I can change the time zone on the time? for example, my PCs time zone is GMT+3 and on OBS I want to show GMT+0
@ScottFichter
@ScottFichter 2 жыл бұрын
Hmmmm... I'm sure it doable I simply have not researched it just yet. You might take a look at what's available at Codepen.co you may find what you looking for there. You'll have to bring the clock in as a browser source.
@SantoshKarkhanisSAP
@SantoshKarkhanisSAP 4 жыл бұрын
Thank you for the great help. I was looking for such a plugin.
@ScottFichter
@ScottFichter 4 жыл бұрын
Glad I could help! Good fortune!
@oOSilentNdeadlyOo
@oOSilentNdeadlyOo 3 жыл бұрын
Stupid question, does the time and date come from the system set time date or are you able to manually adjust time and date? Basically what I wanted to know is can this time and date be manipulated?
@ScottFichter
@ScottFichter 3 жыл бұрын
I'm almost sure the answer is yes. What are you looking to accomplish by adjusting the time? Are you looking to display multiple time zones?
@oOSilentNdeadlyOo
@oOSilentNdeadlyOo 3 жыл бұрын
@@ScottFichter it’s a bit of a strange situation, we are using obs software to record a projectile being fired across a tube and then working out the force applied in a pharmaceutical environment. I’ve been tasked with validating the method. The biggest issue I’m having is, with the software overwrite check box under advanced settings. I need to ensure analyst cannot overwrite unwanted data or if data manipulation has occurred a reviewer is easily able to identify this. I tried to test whether I could lock this feature out but couldn’t find a way to do it. The next best way is to actually have time and date stamp on the video itself as this will enable us to see when a test is done and if there is a big gap between tests it would indicate possible over written data. The key point is though we need to ensure the time stamp on the obs takes its time from the laptop (which is locked by our internal regulations and cannot be manipulated meaning the it is compliant). If however the obs time stamp is self adjustable this would fail our IQOQ tests.
@ScrapBlox
@ScrapBlox 3 жыл бұрын
Thank you scott :D your channel is so helpful
@ScottFichter
@ScottFichter 3 жыл бұрын
Happy to help!
@themicdfiles1865
@themicdfiles1865 2 жыл бұрын
Awesome video! You just improved my game in a big way. I've been trying to figure this out for a long time. Thanks, Scott!
@thurrockrfc7433
@thurrockrfc7433 11 ай бұрын
sorry, I am really not very tech. i video amateur rugby games and it would be useful to have a clock to count up/down to 40 mins, i cant work out what i need to download and from where to do this on my OBS. can you help?
@memento316
@memento316 3 жыл бұрын
A timer counter can I start and show onnthe screen seconds.. Min... Hours..
@ScottFichter
@ScottFichter 3 жыл бұрын
Yes
@balthazarpicouse
@balthazarpicouse 11 ай бұрын
Hello, is there a way to set the clock in another language than english please? Thank you
@ChuckWeirich
@ChuckWeirich 4 жыл бұрын
You did it again at 2:13 Scott! LOL!!!
@ScottFichter
@ScottFichter 4 жыл бұрын
HA HA HA HA! There's much more where that came from Chuck. HA
@manolisgman5977
@manolisgman5977 Жыл бұрын
You are the best !!!!!!! Greetings from Grece :)
@Renegan_Riyogan
@Renegan_Riyogan 2 жыл бұрын
Thank you so much for this simple tutorial
@ScottFichter
@ScottFichter 2 жыл бұрын
You’re welcome 😊
@anikt2008
@anikt2008 3 жыл бұрын
please I could not complete the process because I do not get it where you down loaded what you copy on the OBS website and I got stock. Please if you can share that portion of where paste the information you copy from OBS website will be great.
@AsselBurkitbayeva-i1y
@AsselBurkitbayeva-i1y 11 ай бұрын
hi, thank you. but can you help me with macos? i dont know how to download that in right way
@lord_deus
@lord_deus 3 жыл бұрын
Thanks, now I can show time on my streaming 😍😍
@ScottFichter
@ScottFichter 3 жыл бұрын
excellent
@marcuscurtismusic
@marcuscurtismusic 4 жыл бұрын
Another awesome video Scott. Keep them coming
@ScottFichter
@ScottFichter 4 жыл бұрын
Marcus I appreciate buddy. I'm committed to the venue..
@Wildlife-watcher
@Wildlife-watcher 2 жыл бұрын
Hi Scott, just say thanks for the time Stamp using the Lue script, great and easy for a 71 year old git ha ha ha
@ScottFichter
@ScottFichter 2 жыл бұрын
Awesome Graham! Stay strong brother.
@DanPlaysonYT
@DanPlaysonYT 2 жыл бұрын
so im using windows 10 and trying to follow on with this but to access the code originally i made it by default open with notepad, i continue to try change the new .txt into .lua but my pc doesnt allow me to change it from .txt into .lua is there a way around this???
@prviucenec8014
@prviucenec8014 3 жыл бұрын
I'm using OBS v26.1.1 and in Tools->Scripts I can't select Text Source (same as explaind in this video). If I write name directly it works. To fix this Text Source selection I have change line 111 from source_id = obs.obs_source_get_id(source) to source_id = obs.obs_source_get_unversioned_id(source) And then I can select Text Source. Regards.
@ScottFichter
@ScottFichter 3 жыл бұрын
great comment, thanks
@kencarter2348
@kencarter2348 3 жыл бұрын
Hey Scott. I have a need to place a running Julian Date (or Modified Julian Date) clock in my video. Haven't found any scripts that will help. Any suggestions?
@ScottFichter
@ScottFichter 3 жыл бұрын
Search for the clock in codepen.io
@powerbmi
@powerbmi 3 жыл бұрын
You are an amazing man, this was helpful
@ScottFichter
@ScottFichter 3 жыл бұрын
Thanks Clovis. Stay strong and keep fighting.
@martindevousnavezpaslesbas8101
@martindevousnavezpaslesbas8101 3 жыл бұрын
Very helpful ! Thanks a lot !!
@ScottFichter
@ScottFichter 3 жыл бұрын
Glad it helped!
@louizou2764
@louizou2764 3 жыл бұрын
Hi Scott , I am a Chinese , and I also ran into a problem and here is how I solved it(I am a high school and my English isn't very good.Hope you can understand) I found that I can't add 'datetime.lua' to scripts in OBS after I totally obeyed what you did. And then , I found that it is putting ‘datetime.lua’ in a Chinese characters-named folder that caused my failure in adding it to scripts in OBS. Hope my way in sloving this problem would help others.
@ScottFichter
@ScottFichter 3 жыл бұрын
Thanks Louis! Your english is terrific! 保持堅強並保持戰鬥
@shamuddin7338
@shamuddin7338 4 жыл бұрын
Hi how can I save the script on MacBook as it doesn’t not have option for text document.
@ScottFichter
@ScottFichter 4 жыл бұрын
The script is just text. Simply copy and paste it into a text file and save it. It's not a big deal. You can use anything that saves text.
@kyleanderson1030
@kyleanderson1030 4 жыл бұрын
Awesome video! Thanks. Question: how can you add an interval timer to obs (for fitness classes)?
@ScottFichter
@ScottFichter 4 жыл бұрын
Hmmm, interval timer. Can I assume that the timer beeps every say 2 minutes or something similar?
@kyleanderson1030
@kyleanderson1030 4 жыл бұрын
Yes. Like 30 sec work with 10 rest then repeat multiple times.
@SARAyhi
@SARAyhi Жыл бұрын
u r the best teacher !!!
@Mastergeko4
@Mastergeko4 4 жыл бұрын
Thank you so much, this guide was very helpful!
@ScottFichter
@ScottFichter 4 жыл бұрын
You're super welcome
@neil8496
@neil8496 3 жыл бұрын
Hi Scott, The world times loaded up brilliantly however they are not keeping time and will only refresh the clock time if I toggle back to the green Time.is screen window. I've played with the settings in the OBS properties window i.e... the capture method and window match priority settings.. but no luck. Any ideas how to OBS connected so it keeps the clock on time?? I'm using windows 10 and using microsoft Bing as didn't have chrome but didn't think this would matter. Thanks
@ScottFichter
@ScottFichter 3 жыл бұрын
Is your computers clock accurate? I'm pretty sure the code references you computer's time.
@neil8496
@neil8496 3 жыл бұрын
@@ScottFichter yes my computer clock is accurate. I'm using the window capture method and I'm now using Google instead of Microsoft and still the window capture source is only allowing to capture a still frame and is not updating a live feed into obs.
@GabrielBlink
@GabrielBlink 2 жыл бұрын
Thanks dude it was really helpfull. I learned a lot in this video
@MarsEmbassy
@MarsEmbassy 3 жыл бұрын
Not sure if some one said it or not.. You can always right click on the click to down and chose save link as.
@ScottFichter
@ScottFichter 3 жыл бұрын
Thx Mars
@dwgun310
@dwgun310 4 жыл бұрын
Great videos! I just inserted a countdown in the opening. I looked like a Superstar! I'm now working on inserting song stanzas and chorus each as an image into a source. Is there a way to, not group, but nest these as one scene nested into another scene. Kind of like making lower thirds.
@ScottFichter
@ScottFichter 4 жыл бұрын
Great job!
@gregorybell9912
@gregorybell9912 4 жыл бұрын
You can nest scenes within scenes. Have a look at this feature and see if it is what you want to do. You can also create slideshows with automatic operation or manual using hotkeys.
@dwgun310
@dwgun310 4 жыл бұрын
@@gregorybell9912 thanks, I created a slideshow and used hot keys. Easier than it looked.
@gregorybell9912
@gregorybell9912 4 жыл бұрын
@@dwgun310 Keep an eye on slide file size because larger files will limit the number of slides recognized within a slideshow file list.
@dwgun310
@dwgun310 4 жыл бұрын
@@gregorybell9912Okay thanks. Im only using text, saved as .PNG. I don't think it'll ever be more than 10 slides, but thanks for the heads up.
@conspiracies1014
@conspiracies1014 4 жыл бұрын
Yes, It did work.
@ScottFichter
@ScottFichter 4 жыл бұрын
Good man.
@devuk1189
@devuk1189 3 жыл бұрын
Thank you very very much 😄😄
@ScottFichter
@ScottFichter 3 жыл бұрын
Welcome 😊
@hwangeunbi323
@hwangeunbi323 Жыл бұрын
thanks for the vid it help me to set my time :)
@lcheadle
@lcheadle 2 жыл бұрын
I have to refresh the script every time I re-open OBS. Otherwise the clock is stopped and static on the date/time when I last quit OBS. Not a big deal, it's kinda like kicking the motor to get it to turn over.
@anlouwbotes3154
@anlouwbotes3154 4 жыл бұрын
Hi. Im looking for an Anolog Clock for OBS. Any recommendations please?
@ScottFichter
@ScottFichter 4 жыл бұрын
Hmmmm... I will look into this for you. When the video gets produced I will give you a shoutout.
@AnimalKingdomafterAD
@AnimalKingdomafterAD 3 жыл бұрын
Very Very Very useful,, Thank you, Thank you, Thank you, Thank you, Thank you, Thank you
@ScottFichter
@ScottFichter 3 жыл бұрын
You are most welcome
@JC_Norris
@JC_Norris 2 жыл бұрын
I get to seeing the script file open and the script but no options below that, the end of the script says No properties available
@gigifixture8242
@gigifixture8242 4 жыл бұрын
Good, clear explanation. Thanks!
@ScottFichter
@ScottFichter 4 жыл бұрын
Glad it was helpful!
@photoncollector7048
@photoncollector7048 3 жыл бұрын
Hi Scott another great tip thank you. I set up 3 copies of the lua files, 1 for time, 1 for day and 1 for date... so I could arrange the three on just above each other with text aligned centrally in each source, and so I could have the time slightly larger than the rest. Is there an easy way to align all 3 source boxes relative to each other? Or is it just by eye?
@ScottFichter
@ScottFichter 3 жыл бұрын
I do it by eye but there has to be a way.
@neil8496
@neil8496 3 жыл бұрын
Hi Scott, Another happy customer here!! I went for the window capture and loaded up lots of world times for my DJ stream. A question if I may... I tried to add a scroll to my world times and this looked good, however, even though I cropped the window capture box with the control + Alt = green box function.. when the scroll was active the rest of the web page was still in the scroll so I have the world times then a big gap of the sides of the webpage before the world times scroll round again. Any ideas to just scroll the world time boxes?? Many Thanks
@ScottFichter
@ScottFichter 3 жыл бұрын
Hey Neil. I hope your well. So your scrolling the HTML page with your mouse right. And the viewers of the livestream see the clocks moving... correct? I can't wrap my head around the "Big Gap" seen before the world times scroll around again. Think you could show me with a video?
@neil8496
@neil8496 3 жыл бұрын
@@ScottFichter Yes Scrolling the HTML page with world times boxes just like in your video and yes for the viewers to see the world times.. it's just adding to the scroll before the boxes begin and after the boxes end (the same space as on the webpage). I can send you a video how am I best to send? You'll get it straight away when you see it.
@neil8496
@neil8496 3 жыл бұрын
Looks awesome otherwise 🙂👍🏻
@neil8496
@neil8496 3 жыл бұрын
@@ScottFichter Hi Scott, 'just' managed to sort it. It was just a technical hitch. I added a crop/pad filter straight away to the world time boxes to crop the boxes instead of using the control alt keyboard function to crop. That meant I could scroll just the boxes for some reason the other keyboard crop included the whole screen. Please let me know if you have patreon or paypal as I've watched a ton of your videos and my streams are infinitely more professional. Thanks
@VOXindie
@VOXindie 3 жыл бұрын
If you're using a browser source, you can just set the background to be transparent and then you won't have all the issues with using the green screen features.
@ScottFichter
@ScottFichter 3 жыл бұрын
YES!
@jodofly1158
@jodofly1158 4 жыл бұрын
gratz on 10k subs
@ScottFichter
@ScottFichter 4 жыл бұрын
THANK YOU Jodofly!!!!
@balitangkyusi3234
@balitangkyusi3234 2 жыл бұрын
THANKS SCOTT
@GenryNik
@GenryNik 6 ай бұрын
many thanks! u r the best
@JohnErikSetsaas
@JohnErikSetsaas 4 жыл бұрын
Great video and explanation!
@ScottFichter
@ScottFichter 4 жыл бұрын
Thank you!
@DeLisaLee
@DeLisaLee 3 жыл бұрын
10:46 Hi Scott. Is it me or does the Color Correction filter no longer have a color property? When I add the color correction filter, there is no color property. The last property is Opacity. I'm running OBS 27.0.0-rc1 (64 bit)
@ScottFichter
@ScottFichter 3 жыл бұрын
What??? No way... Ok... I'll have to take a look at it.
@ArthurAllen0915
@ArthurAllen0915 3 жыл бұрын
I don't know what I am doing wrong. I followed your instructions to the tee, and everything does as you describe. However, when I click away from the "time.is" page, my clock disappears and shows the page I am viewing.The lua script works fine though, I have the time day and year, I only have trouble with the Time.is
@ScottFichter
@ScottFichter 3 жыл бұрын
Arthur, I'm going to make a follow up video on this. To many creators are having trouble with it.
@ArthurAllen0915
@ArthurAllen0915 3 жыл бұрын
@@ScottFichter Thank you brother I have notifications for your videos turned on I don’t want to miss a thing You have a great way of explaining how to work with OBS Thanks again
@study-with-me-upsc
@study-with-me-upsc 4 жыл бұрын
Helpful video. Thank you!
@ScottFichter
@ScottFichter 4 жыл бұрын
Glad it was helpful!
@peaceofheart3406
@peaceofheart3406 3 жыл бұрын
Hey scott! after closing the Text for Datetime there is none of timer on my OBS
@thexphubby7171
@thexphubby7171 3 жыл бұрын
Hi Scott. I just want to cross check with you on something. I followed your guide to the exact details however my OBS crashes every time I add the text source after running the datetime.lua script. Any thoughts? Thank you!
@ScottFichter
@ScottFichter 3 жыл бұрын
U on a PC? What version of OBS you running? What operating system are you running?
@RoundRumours
@RoundRumours 3 жыл бұрын
wow || Thanks a tonnes dude
@ScottFichter
@ScottFichter 3 жыл бұрын
Happy to help
@RoundRumours
@RoundRumours 3 жыл бұрын
@@ScottFichter Marvelous Man, Will Grow Together
@eaglevp
@eaglevp 4 жыл бұрын
Another excellent video next time 10k Scott
@ScottFichter
@ScottFichter 4 жыл бұрын
Thanks Eagle. I really appreciate your support buddy.
@VDeeO_Buff
@VDeeO_Buff 3 жыл бұрын
Love your vids Scott. No messing about, to the point and great for learning. I really like the HTTP Chromakey method and I have a question about that. If I have other browser windows open, and I jump to one of those other windows while broadcasting won't the clock disappear and be replaced by whatever is on those other windows? And how do you get around that? Thanks again for all the tips and tricks!! Love the channel.
@ScottFichter
@ScottFichter 3 жыл бұрын
Excellent question! I say this because I didn't know myself, and I uncovered something very cool. Let's say you have a browser with two tabs, one with the clock and one with a video on it. Your goal is to bring both Chrome tabs into your stream. The OBS "Window Capture" source has that pulldown that allows you to choose what program to show. You will only see "Chrome" as a choice. You do not have the option to select a tab. The solution is to grab the tab and drag it out of Chrome, so two instances of Chrome are created, not two tabs two instances. When you go back into "Window Capture," it will then show you both chrome windows. Wow!! I might make a video about this!!!!
@VDeeO_Buff
@VDeeO_Buff 3 жыл бұрын
@@ScottFichter Nice one Scott! How cool is that!!!! Hey....what works really good also is, rather than using a "Window Capture" source to grab the time.is website, use a "Browser Capture" source instead.....and then, rather than choosing Green in the Chroma Key filter choose a custom color and choose white instead!!!! Then just go ahead and make the color adjustments as you demonstrate in your video and you end up with all your times..........and you don't even need to keep a Chrome, or any other browser window even open!!!! You can close down all your Web windows and the time remains captured via the Browser Source!!!! As I said, LOVE the channel!!!!!
@tharuwickramasinghe516
@tharuwickramasinghe516 3 жыл бұрын
Thank you very much
@ScottFichter
@ScottFichter 3 жыл бұрын
You are welcome
@venkatap.kanumalla2619
@venkatap.kanumalla2619 4 жыл бұрын
Hi Scott, thanks for making a video on "Date & Time" for the videos and for the live stream . I came across a small program called SNAZ, through which , we can set Date, Time, Count Up and Down. If possible make another video on that, please. Thanks.
@ScottFichter
@ScottFichter 4 жыл бұрын
I will check it out
@An.D
@An.D 4 жыл бұрын
Nice tutorial Scott ✌👍
@ScottFichter
@ScottFichter 4 жыл бұрын
Thanks Andy.
@paulnowels3116
@paulnowels3116 3 жыл бұрын
Hello scot, Facebook is blocked in our country therefore streaming with obs became hard yet i really want to keep my Facebook community engaged, how can I do it to stream freely?
@ScottFichter
@ScottFichter 3 жыл бұрын
Paul, so Facebook is blocked but you want to keep your Facebook community engaged? Did you mean to say that Facebook streaming is blocked?
@eniyan.a
@eniyan.a 3 жыл бұрын
Thank You so much!!! This helped me alot!
@ScottFichter
@ScottFichter 3 жыл бұрын
Glad it helped!
OBS News Overlay - AMAZING Text Scroll Effects & System Time
19:13
Scott Fichter
Рет қаралды 174 М.
Trick-or-Treating in a Rush. Part 2
00:37
Daniel LaBelle
Рет қаралды 45 МЛН
СОБАКА ВЕРНУЛА ТАБАЛАПКИ😱#shorts
00:25
INNA SERG
Рет қаралды 3,9 МЛН
2 MAGIC SECRETS @denismagicshow @roman_magic
00:32
MasomkaMagic
Рет қаралды 36 МЛН
20 OBS Tricks All Streamers Should Know!
23:16
P1xelPerfect
Рет қаралды 642 М.
OBS Countdown Timer - How to Redirect to a Scene At ZERO SECONDS
8:04
OBS Remove Your Background Without a Green Screen
7:54
Michael Feyrer Jr.
Рет қаралды 1,8 МЛН
Free AI Audio Tools You Won't Believe Exist
17:22
Mike Russell
Рет қаралды 621 М.
Advanced OBS Production with Multiple Cameras
13:15
Gaming Concepts
Рет қаралды 36 М.
Why VPNs are a WASTE of Your Money (usually…)
14:40
Cyberspatial
Рет қаралды 1,5 МЛН
Create Animated Lower Thirds in OBS  AMAZING FREE Tool!
18:26
Michael Feyrer Jr.
Рет қаралды 132 М.
How to show date and time in OBS Studio? | Candid.Technology
5:03
Candid.Technology
Рет қаралды 449
Trick-or-Treating in a Rush. Part 2
00:37
Daniel LaBelle
Рет қаралды 45 МЛН