Пікірлер
@adwaithkv9367
@adwaithkv9367 26 күн бұрын
Thank you for making this video.
@MaxwellBak
@MaxwellBak 28 күн бұрын
I just finished going through your entire C++ Programming Series (after a few weeks). I was using Matlab, but my college license ran out, so I wanted to transition to C++ for my image processing projects. Thank you! Please make more videos!🙏💻👾
@therealjustincase
@therealjustincase Ай бұрын
Not sure if someone already pointed this out but Subchunk1Size is _not_ the number of bits per sample and should not be used to calculate sample size or rate relates values. Both equal 16 here only by a coincidence. Sunchunk1Size is always 16 for the pcm format and its value is actually the size of the remaining portion of the “fmt” subchunk, in bytes, following the size field. Bits per sample may have other values (8, 16, 24, 32) and it is specified separately in the BitsPerSample field.
@MO-fg2cm
@MO-fg2cm Ай бұрын
You deserve lot more bud
@justcurious1940
@justcurious1940 2 ай бұрын
U are a legend, Thank u, u deserve 1M sub and more.....
@justcurious1940
@justcurious1940 2 ай бұрын
Interesting content, amazing channel, cool teacher, I can watch u the whole day, God bless u and bless America for creating this beautiful world that is called the internet.
@justcurious1940
@justcurious1940 2 ай бұрын
Great teacher, Thanks.
@marcusantenor793
@marcusantenor793 2 ай бұрын
can you help explain why the input validation doesn't work inside the createArr function, please? #include <iostream> using namespace std; string* createArr(unsigned int arrSize); void displayArr(unsigned int arrSize); string* createArr(unsigned int arrSize) { string* newArr = new string[arrSize]; for(unsigned int i{0}; i < arrSize; i++) { string name{}; cout << "Please enter item (" << i + 1<<"): "; if(cin >> name) //can't get it to work so far { newArr[i] = name; } else{ cin.clear(); cin.ignore(10000, ' '); } } return newArr; } void displayArr(string* arr, unsigned int arrSize) { for(unsigned int i{0}; i < arrSize; i++) { cout << arr[i] << endl; } } int main() { string* arrNames = nullptr; cout << "Enter the size of the array: "; unsigned int arrSize; if(!(cin >> arrSize)){ cin.clear(); cin.ignore(10000,' '); cout<<"Incorrect imput. PLease try again!"; } arrNames = createArr(arrSize); displayArr(arrNames, arrSize); delete [] arrNames; arrNames = NULL; return 0; }
@marcusantenor793
@marcusantenor793 2 ай бұрын
27:14 I think when you typed fullname += " " + lname, the compiler read fullname = fullname + " " + lname. That's why it worked on your pc, maybe?
@Brotherblitz
@Brotherblitz 2 ай бұрын
little men are my fren
@sbarncar
@sbarncar 3 ай бұрын
OK OK OK OK OK OK
@marcusantenor793
@marcusantenor793 3 ай бұрын
1:39 correction: "C/C++ and Java are *statically* typed languages*"?
@codimantion
@codimantion 4 ай бұрын
keep making these type of low level programming videos i am intrested 😊😊
@maximdanilov6562
@maximdanilov6562 5 ай бұрын
Thanks for the video, it was really helpful!😊
@kinhkong69z62
@kinhkong69z62 5 ай бұрын
men this good thanks
@yunestaku50
@yunestaku50 6 ай бұрын
Thank you so much
@gacrux6681
@gacrux6681 6 ай бұрын
Can we record audio using this?
@numero17100
@numero17100 6 ай бұрын
Great video, is there a method to move through the file like a vector?
@vanessaadams3500
@vanessaadams3500 7 ай бұрын
This is one of the best videos on this subject that I have found so far!
@nkumar8174
@nkumar8174 7 ай бұрын
Hi, this is truly a master class. I need help and please let me know, how can I contact you. Thank you
@Harshu_awni
@Harshu_awni 7 ай бұрын
Hey bro thanks for your content I just found what I am looking for 😊😊
@mr.shredder5430
@mr.shredder5430 7 ай бұрын
great lesson, but i cannot inherit base class constructor from derived
@phoenix_fire_stone
@phoenix_fire_stone 8 ай бұрын
do you have a github with this file? i typed it over but there isn't any data written to my test.wav (edit): i missed "(" in line 65. great tutorial btw
@jonnyfive5000
@jonnyfive5000 8 ай бұрын
Doing this in 2024 and some of the steps look a little different but I think it's actually much more streamlined now. I hope you have been doing well. Any plans to post more tutorials? Thanks for the ones around audio. I appreciate the help.
@FatalNight199
@FatalNight199 8 ай бұрын
beautiful, what a perfect video. One week ago, I was finally diving in this programming universe just for fun, and now I casually find this video of you putting in practice a lot of things I read in cplusplus this days. Thank u very much, really.
@jameshopkins3541
@jameshopkins3541 8 ай бұрын
????????????
@nicholas3895
@nicholas3895 8 ай бұрын
I'm a beginner, could you please help me? I understood that at the beginning of the WAV file we have a series of bytes that represent the info of the file and each info has to occupy a specific size in bytes. "Num channels" for example is represented as an INT in the program, but it can't be seen as an INT in the WAV file because it would occupy 4 bytes and not 2, so you convert it with the function write_as_bytes(), but to be honest i didn't understand it at all due to my lack of knowledge. Could you please explain it to me in a simple way?
@ajaypalsinghsidhu1458
@ajaypalsinghsidhu1458 9 ай бұрын
can we create image from pixels in opencv in cpp???
@batatadourada
@batatadourada 10 ай бұрын
Very well explained. Thank you.
@JoJo777890
@JoJo777890 10 ай бұрын
How to open ppm files on Windows 10?
@Erick-ld5ny
@Erick-ld5ny 10 ай бұрын
Amazing. This worked great. I understand it. Three years later and still great.
@andsoehd277
@andsoehd277 11 ай бұрын
this is hidden gems, thank you:) can u make foto jpeg/jpg please :D
@gamercodes9757
@gamercodes9757 11 ай бұрын
thank you man i appriciate your work you deserve better!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
@MrWickedsouls
@MrWickedsouls 11 ай бұрын
I am taking C++ as my new language after working on the front end for over 7 years. I was always interested in low level code and your video helped a lot. The only thing I don't understand is why .ppm files opened in VS code show numbers and not binarires and why jpg files dont show digital or binary content?
@Arelium
@Arelium Жыл бұрын
THANK YOU SO MUCH!!
@mohsenir69
@mohsenir69 Жыл бұрын
This is the kind of programming tutorial I need, Thanks for your great video
@basboerboom9328
@basboerboom9328 Жыл бұрын
Can't you use a short instead of an int for the 2 byte formats?
@nicolascrespo4643
@nicolascrespo4643 Жыл бұрын
Amazing video as the previous! Thank you so much :)
@nicolascrespo4643
@nicolascrespo4643 Жыл бұрын
Thank you very much Sir. The explanation was great!
@danifor4974
@danifor4974 Жыл бұрын
Thanks ur the best!!
@PabloGnesutta
@PabloGnesutta Жыл бұрын
Is there a 1.1 video on c++?
@huggaberry1160
@huggaberry1160 Жыл бұрын
I could kiss you. Amazing Video!
@tac0butt158
@tac0butt158 Жыл бұрын
thank you so much
@krisvers
@krisvers Жыл бұрын
You should do another one of these image manipulation videos but with TGA or BMP
@TobyAdd
@TobyAdd Жыл бұрын
good video to understand wav base, thank you
@matsredman7640
@matsredman7640 Жыл бұрын
Super helpful. Thanks!
@ItsAG0al
@ItsAG0al Жыл бұрын
so beaultiful
@HorseTrader-h7t
@HorseTrader-h7t Жыл бұрын
Is there an advantange to using P6 over P3?
@HorseTrader-h7t
@HorseTrader-h7t Жыл бұрын
i'm looking for the 4.0 video that was referenced in the 4.1 video. Can't find it?
@mortal295936cl
@mortal295936cl Жыл бұрын
dude key, dookie