Тёмный
Qt With Ketan
Qt With Ketan
Qt With Ketan
Подписаться
🔧 Exploring Qt C++ for Creative Development 🔧

In-Depth Tutorials: Step-by-step guides that cover a wide range of topics, from Qt fundamentals to advanced techniques. Learn
how to create responsive UIs, manage signals and slots, work with databases, and more!
Problem And Solutions: We Listen the problems of Qt Developer and give him the proper and accurate solution for applications development.

🔔 Subscribe to Qt With Ketan and Hit the Bell Icon to stay updated with our latest videos! Join our growing community of Qt C++ enthusiasts and embark on an exciting journey of software development excellence.

🌐 Let's Connect:
Follow us on social media instagram.com/qtwithketan for additional content, updates.

📧 Business Inquiries:
For collaboration opportunities, sponsorship, or business inquiries, please contact us via email.
Email Address : qtwithketan@gmail.com
Комментарии
@mystery5868
@mystery5868 6 часов назад
broo can you make a big project type where we can implement most of these things you teach here.
@qtwithketan
@qtwithketan 2 часа назад
Thanks for watching my video. Yes i can make that kind of project, i will figure out for it and make video on it. You can also drop your suggestion which kind of project you want to see.
@mystery5868
@mystery5868 2 часа назад
@@qtwithketan Can you make project related to some sort of emr or heart rate related graph plotting which update each seconds.
@istvankiss3918
@istvankiss3918 10 часов назад
Best channel that covers Qt by far! Keep it up, man!
@mystery5868
@mystery5868 6 часов назад
Yeah you are right broo.
@qtwithketan
@qtwithketan 2 часа назад
Thanks for watching my video. Glad you like my videos.
@qtwithketan
@qtwithketan 2 часа назад
Thanks for watching my video And many many thanks for your gentle support.
@anonymoususer6411
@anonymoususer6411 14 часов назад
+1
@qtwithketan
@qtwithketan 12 часов назад
Thanks for watching my video. Glad you like my videos.
@anonymoususer6411
@anonymoususer6411 День назад
+1
@qtwithketan
@qtwithketan День назад
Thanks for watching my video. I hope my videos are helpful for you.
@aliheidary4263
@aliheidary4263 31 минуту назад
👌
@LeaDapro
@LeaDapro 2 дня назад
👍great job :)
@qtwithketan
@qtwithketan 2 дня назад
Thanks for watching my video. Glad you like my videos.
@ArdaX95
@ArdaX95 6 дней назад
@qtwithketan Thank you for your reply! (My reply disappears so I had to post) 1) Yes, I copied libmysql.dll file into my C:/Qt/6.7.2/mingw_64/bin directory. Cleaned and recompiled the project as it compiles successfully, I believe the compiled exe cannot find the mysql driver library somehow. 2) I also added C:/Qt/6.7.2/mingw_64/bin to PATH of system environment vaiable. 3) As I told you before, I copied qsqlmysql.dll to the same location as my exe 4) I tried dependency walker but it did not run on my Windows 11 I believe the drivers are successfully installed as I can see both QMARIADB QMYSQL on my driver list after I followed your steps when I use "qDebug() << QSqlDatabase::drivers();" My CMake has "find_package(Qt${QT_VERSION_MAJOR} REQUIRED COMPONENTS Sql)" and "target_link_libraries(my_project PRIVATE Qt${QT_VERSION_MAJOR}::Sql)" Is there any configuration that I need to do from the project? Moreover, MYSQL client is not running while my exe is running as well. Do you think this could be the reason or do you have any more ideas? Thanks.
@qtwithketan
@qtwithketan 5 дней назад
I got your problem, but Did you copy libmysql.dll file into your C:/Qt/6.7.2/mingw_64/bin directory ? did you run your application in Release mode ? Also try to copy your sqldriver plugin directory in your build directory(Application run directory) and libmysql.dll file too.
@ArdaX95
@ArdaX95 7 дней назад
Hi, thank you for your video. I have managed to install the driver but I am getting an error like this when I try to connect to MySQL database: "QSqlDatabase: MYSQL driver not loaded QSqlDatabase: available drivers: QSQLITE QMIMER QMARIADB QMYSQL QODBC QPSQL QList("QSQLITE", "QMIMER", "QMARIADB", "QMYSQL", "QODBC", "QPSQL") Failed to connect to database: "Driver not loaded Driver not loaded"" I checked C:\Qt\6.7.2\mingw_64\plugins\sqldrivers PATH and I can see the qsqlmysql.dll file created after I ran the commands which are described in the video. I also checked the C:\Qt\6.7.2\Src\qtbase\src\plugins\sqldrivers\mysql PATH and I can see a lot of files are generated. I even copied qmysql.dll file to the same location as with my application. Do you have an idea of what is going on?
@qtwithketan
@qtwithketan 6 дней назад
Thanks for watching my video. 1) Did you copy libmysql.dll file into your C:/Qt/6.7.2/mingw_64/bin directory.
@ArdaX95
@ArdaX95 6 дней назад
@@qtwithketan thank you for your reply! After your suggestion, I did copy libmysql.dll file into my C:/Qt/6.7.2/mingw_64/bin directory. Did clean/rebuilt the project but I saw the same error. Also, I added C:/Qt/6.7.2/mingw_64/bin to PATH environment variable of the system. I believe that since when I use the code "qDebug() << QSqlDatabase::drivers();" now I can see both QMARIADB and QMYSQL drivers, I think they are installed successfully. However, I believe I am missing something in my client project maybe in the configuration. I am not running MySQL client on my machine while the client app is running. Also, my CMake file has "find_package(Qt${QT_VERSION_MAJOR} REQUIRED COMPONENTS Sql)" and "target_link_libraries(my_project PRIVATE Qt${QT_VERSION_MAJOR}::Sql)". Maybe I need to do some configuration so my client app knows where the DLL is although I copied the qmysql.dll library in the same location as my exe app is. Do you still have more ideas? Thanks
@ArdaX95
@ArdaX95 6 дней назад
@@qtwithketan Thank you for your reply! 1) Yes, I copied libmysql.dll file into my C:/Qt/6.7.2/mingw_64/bin directory. Cleaned and recompiled the project as it compiles successfully, I believe the compiled exe cannot find the mysql driver library somehow. 2) I also added C:/Qt/6.7.2/mingw_64/bin to PATH of system environment vaiable. 3) As I told you before, I copied qsqlmysql.dll to the same location as my exe 4) I tried dependency walker but it did not run on my Windows 11 I believe the drivers are successfully installed as I can see both QMARIADB QMYSQL on my driver list after I followed your steps when I use "qDebug() << QSqlDatabase::drivers();" My CMake has "find_package(Qt${QT_VERSION_MAJOR} REQUIRED COMPONENTS Sql)" and "target_link_libraries(my_project PRIVATE Qt${QT_VERSION_MAJOR}::Sql)" Is there any configuration that I need to do from the project? Moreover, MYSQL client is not running while my exe is running as well. Do you think this could be the reason or do you have any more ideas? Thanks.
@ArdaX95
@ArdaX95 6 дней назад
.
@ArdaX95
@ArdaX95 6 дней назад
​@@qtwithketan Thank you for your reply! 1) Yes, I copied libmysql.dll file into my C:/Qt/6.7.2/mingw_64/bin directory. Cleaned and recompiled the project as it compiles successfully, I believe the compiled exe cannot find the mysql driver library somehow. 2) I also added C:/Qt/6.7.2/mingw_64/bin to PATH of system environment vaiable. 3) As I told you before, I copied qsqlmysql.dll to the same location as my exe 4) I tried dependency walker but it did not run on my Windows 11 I believe the drivers are successfully installed as I can see both QMARIADB QMYSQL on my driver list after I followed your steps when I use "qDebug() << QSqlDatabase::drivers();" My CMake has "find_package(Qt${QT_VERSION_MAJOR} REQUIRED COMPONENTS Sql)" and "target_link_libraries(my_project PRIVATE Qt${QT_VERSION_MAJOR}::Sql)" Is there any configuration that I need to do from the project? Moreover, MYSQL client is not running while my exe is running as well. Do you think this could be the reason or do you have any more ideas? Thanks.
@TamilTrending-alp
@TamilTrending-alp 9 дней назад
Source code ? In github i can't find.
@qtwithketan
@qtwithketan 9 дней назад
Thanks for watching my video. Source code link : github.com/QtWithKetan/Qt_Routing_Service_And_Navigation
@D-trino
@D-trino 10 дней назад
In define build system which build system you choosed ? Pls tell
@qtwithketan
@qtwithketan 10 дней назад
Thanks for watching my video. I am using Qt 5.15.2 And Qt 6.6.1 in this video i was use Qt 5.15.2 and MSVC2015 Kit Build System And QMake.
@D-trino
@D-trino 10 дней назад
@@qtwithketan I started my project by going through yours. I was in hurry so I decided to go with Cmake. Does it will create problem when I'll go further more? If yes can I change now, like cmake to qmake? I designed half of the project.
@qtwithketan
@qtwithketan 9 дней назад
No you don't need to change. qmake and cmake are build system you can use any one.
@D-trino
@D-trino 9 дней назад
@@qtwithketan thank you for guidance. ✨
@qtwithketan
@qtwithketan 8 дней назад
@@D-trino Glad you like my videos.
@Teszolocs
@Teszolocs 11 дней назад
Good video! I have a question about QComboBox in android. I used Qt 6.4.2. C++ i build to android mobile and its working, But if i close the QComboBox dropdown menu with the mobile back navigator button, after that the drop down menu nat pop up anymore and the QComboBox start not working. Here is my code below (i red that i have to set noFocus policy but still dont working): #include <QApplication> #include <QComboBox> #include <QWidget> #include <QVBoxLayout> #include <QKeyEvent> class MyWidget : public QWidget { Q_OBJECT public: MyWidget() { QVBoxLayout *layout = new QVBoxLayout(this); comboBox = new QComboBox(this); for (int i = 0; i < 10; ++i) { comboBox->addItem(QString("Item %1").arg(i)); } comboBox->setFocusPolicy(Qt::NoFocus); layout->addWidget(comboBox); setLayout(layout); } private: QComboBox *comboBox; }; int main(int argc, char *argv[]) { QApplication app(argc, argv); MyWidget w; w.show(); return app.exec(); } #include "main.moc" Thank you for your help!
@qtwithketan
@qtwithketan 10 дней назад
Thanks for watching my video. Glad you like my videos. Well i am not expert in android but did you try to use QComboBox without adding in Layouts ?
@Teszolocs
@Teszolocs 9 дней назад
@@qtwithketan yeah I tried but the issue is still there :(
@qtwithketan
@qtwithketan 9 дней назад
i am not expert in android so i have to check with android system. Also you can ask your question in QtForum.
@Teszolocs
@Teszolocs 7 дней назад
@@qtwithketan Yeah I asked already this question there with this title: "QCombobox stop working after back navigation on android in Qt 6.4.2 C++" but still no answer :(
@qtwithketan
@qtwithketan 7 дней назад
Wait for sometime anyone who had a solution they will suggest you something.
@ArashShafizadeh
@ArashShafizadeh 12 дней назад
Great
@qtwithketan
@qtwithketan 10 дней назад
Thanks for watching my video. Glad you like my videos.
@mohammadrezaParsania
@mohammadrezaParsania 12 дней назад
im using qt 15.2 for some reason and i cant update to qt v 6 and i understand that there is no cmake or qt-cmake.bat file in bin where you used call so how i can run this command in qt 15.2 i would be glad if you can help me
@qtwithketan
@qtwithketan 10 дней назад
Thanks for watching my video. You can use the qmake for it. Make sure you setup the qmake path in Environment Variables.
@XbetOne
@XbetOne 13 дней назад
Please I have a serious on Qt, when I finish to connect it on my SQL database and try I receive this error message on my command line " SSL connection error : unknown error number QMYSQL : unable to connect "
@qtwithketan
@qtwithketan 12 дней назад
Did you setup the OpenSSL and set the Path In Environment Variable ? Just Try to disable your System Anti-virus and also firewall and check it once.
@desarrollou71x72
@desarrollou71x72 14 дней назад
Thanks, i get undefined reference to line: TCPSocket = new QTcpSocket(); may something have changed?
@qtwithketan
@qtwithketan 14 дней назад
Thanks for watching my video. Did you include qt network plugin in your project ? Did you include the Required header files ?
@madgenius4533
@madgenius4533 14 дней назад
We need for msvc2019_64 bit 😔
@qtwithketan
@qtwithketan 14 дней назад
Thanks for watching my video. you can follow this video and i am sure you will get solution. Follow the below link. ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-f-GC-b-Gtj8.html
@hansthomas1741
@hansthomas1741 15 дней назад
Very helpful. ty❤
@qtwithketan
@qtwithketan 14 дней назад
Thanks for watching my video. Glad you like my videos.
@vinni8619
@vinni8619 16 дней назад
greatt!!!
@qtwithketan
@qtwithketan 16 дней назад
Thanks for watching my video. Glad you like my videos.
@XbetOne
@XbetOne 17 дней назад
Tout le plaisir est pour nous encore Merci pour tes vidéos
@qtwithketan
@qtwithketan 17 дней назад
Thanks for watching my video And many many thanks for your gentle support. Glad you like my videos.
@XbetOne
@XbetOne 13 дней назад
Please I have a serious on Qt, when I finish to connect it on my SQL database and try I receive this error message on my command line " SSL connection error : unknown error number QMYSQL : unable to connect "
@qtwithketan
@qtwithketan 10 дней назад
@@XbetOne Did you setup the OpenSSL and set the Path In Environment Variable ? Just Try to disable your System Anti-virus and also firewall and check it once.
@ExplainingMathematics
@ExplainingMathematics 17 дней назад
Love your classes.
@qtwithketan
@qtwithketan 17 дней назад
Thanks for watching my video. Glad you like my videos.
@bobby9568
@bobby9568 18 дней назад
Amazing as always! 🎉Q
@qtwithketan
@qtwithketan 17 дней назад
Thanks for watching my video. Glad you like my videos.
@aswathyvipin3132
@aswathyvipin3132 18 дней назад
Hi I have a doubt..how to take that qt slider value to a global variable..want to access the value when the slider is connecting..
@qtwithketan
@qtwithketan 17 дней назад
Thanks for watching my video. Just declare one Global variable and assign the slider value in slider valueChanged Signal and slot function.
@nileshghadge8931
@nileshghadge8931 21 день назад
Good job bro.. Keep it up... 👍👍
@qtwithketan
@qtwithketan 21 день назад
Thanks for watching my video And many many thanks for your gentle support. Glad you like my videos.
@bobby9568
@bobby9568 22 дня назад
Amazing, already reached 2.11k subs congrats! We love these Qt vids! Make it even more advanced please! Keep them coming!
@qtwithketan
@qtwithketan 22 дня назад
Thanks for watching my video And many many thanks for your gentle support. And Yes i will keep posting new videos.
@eme04
@eme04 22 дня назад
helped. worked. just don't know how to fit the pics in a small label
@eme04
@eme04 22 дня назад
got my answer: QPixmap scaled = Image.scaled(QSize(100, 100)); ui->image_browse_label->setPixmap(scaled);
@qtwithketan
@qtwithketan 22 дня назад
Thanks for watching my video. Glad you like my videos. You can use setScaledContents property for it. you do not need to do anything for it.
@aliheidary4263
@aliheidary4263 23 дня назад
🔥
@qtwithketan
@qtwithketan 22 дня назад
Thanks for watching my video. Glad you like my videos.
@MrDotManPeriod
@MrDotManPeriod 25 дней назад
how can i make a flowchart creator with pyqt6, something like scratch or a block diagram creator? i know i would need a sidebar to drag things from and a canvas to drag things to.. but how do i even make that?
@qtwithketan
@qtwithketan 24 дня назад
Thanks for watching my video. i am not sure how to do all those things with PyQt so i can't answer you but i will do some research on those things and revert you soon.
@xyz-rs6wq
@xyz-rs6wq 25 дней назад
Hi, there is no error in my code but I can not see the map. I checked the plugins in sdk but there is no osm plug-in in QLocation folder. I use qt in 5.14 version. How to handle with this problem?
@qtwithketan
@qtwithketan 25 дней назад
Thanks for watching my video. Did you follow all steps which shown in video ? Did you getting any runtime errors like TLS initialization failed ? Did you install Qt Location and Positioning modules.?
@xyz-rs6wq
@xyz-rs6wq 24 дня назад
@@qtwithketan Yes, I did. There is no runtime error. Actually, I checked the maintaeance tool but there is no "Additional libraries" section where Qlocation and QPositioning are. I use intranet not internet and mainteance tool not seem green. Should I connected to internet? Perhaps, because of these I cannot see the map. How can I be sure these modules are installed exactly?
@xyz-rs6wq
@xyz-rs6wq 24 дня назад
@@qtwithketan By the way, your project is quick application or widget application?
@qtwithketan
@qtwithketan 24 дня назад
I use QML for display Maps and do some things on maps.
@kaviarasanr7989
@kaviarasanr7989 26 дней назад
how to install and import general magic? please do reply
@qtwithketan
@qtwithketan 25 дней назад
Thanks for watching my video. You have to add repositories through Qt MaintenanceTool and install the all features and libraries.
@arpithanr-j9w
@arpithanr-j9w 26 дней назад
Is this code available in GitHub?
@qtwithketan
@qtwithketan 25 дней назад
Thanks for watching my video. You can download the code from this link : github.com/QtWithKetan/Wifi
@user-op3xb2zc7o
@user-op3xb2zc7o Месяц назад
bro, iam getting this errors.. C:\opencv4.5.1_MinGW\3rdparty\ade\ade-0.1.1f\sources\ade\source\alloc.cpp: In function 'void ade::aligned_free(void*)': C:\opencv4.5.1_MinGW\3rdparty\ade\ade-0.1.1f\sources\ade\source\alloc.cpp:40:29: error: '_aligned_free' was not declared in this scope return _aligned_free(ptr); ^ C:\opencv4.5.1_MinGW\3rdparty\ade\ade-0.1.1f\sources\ade\source\alloc.cpp:40:29: error: return-statement with a value, in function returning 'void' [-fpermissive] modules\CMakeFiles\ade.dir\build.make:62: recipe for target 'modules/CMakeFiles/ade.dir/__/3rdparty/ade/ade-0.1.1f/sources/ade/source/alloc.cpp.obj' failed mingw32-make[2]: *** [modules/CMakeFiles/ade.dir/__/3rdparty/ade/ade-0.1.1f/sources/ade/source/alloc.cpp.obj] Error 1 CMakeFiles\Makefile2:1954: recipe for target 'modules/CMakeFiles/ade.dir/all' failed mingw32-make[1]: *** [modules/CMakeFiles/ade.dir/all] Error 2 Makefile:161: recipe for target 'all' failed mingw32-make: *** [all] Error 2 can you please share the full file opencv_MinGW folder, as i too have installed same cmake and same opencv version.
@qtwithketan
@qtwithketan Месяц назад
Thanks for watching my video. Yes i can share but full openCV_MinGW directory with binaries size is more then 1GB. i will try to upload the files at somewhere and share you downloadable link.
@user-op3xb2zc7o
@user-op3xb2zc7o Месяц назад
@@qtwithketan bro, please do it asap or by today and sorry for troubling you, iam very grateful for your reply.
@qtwithketan
@qtwithketan Месяц назад
You can download from the below link. drive.google.com/file/d/1CZ6CM5EaWmVw6Q0qeT_YQfVmBvpinwrC/view?usp=drive_link
@user-op3xb2zc7o
@user-op3xb2zc7o Месяц назад
@@qtwithketan bro, please accept the request for drive link
@qtwithketan
@qtwithketan Месяц назад
Already Done 👍
@user-nk1dt4pw7l
@user-nk1dt4pw7l Месяц назад
Help me fix this bug D:\Qt\cayvcl\build\Desktop_Qt_6_7_1_MinGW_64_bit-Debug\ui_mainwindow.h:19: error: qcameraviewfinder.h: No such file or directory In file included from ..\..\mainwindow.cpp:2: ./ui_mainwindow.h:19:10: fatal error: qcameraviewfinder.h: No such file or directory 19 | #include <qcameraviewfinder.h> | ^~~~~~~~~~~~~~~~~~~~~ Pls bro 🥺🥺🥺
@qtwithketan
@qtwithketan Месяц назад
Thanks for watching my video. QCameraViewfinder class in not available in Qt 6 use QVideoWidget insted of QCameraViewFinder in Qt 6.7.1
@xCookiee
@xCookiee Месяц назад
To anyone out there, i had heaps of trouble compiling with CMake! Compile with qmake in Qt Creator instead, this tutorial fixed my two week struggle. THank you!!!! error if u get the following: "compiled CV_VERSION" "code execution cannot proceed because opencv_world4100.dll was not found" FIX: COPY FILES world4100.dll and world4100d.dll from C:\tools\opencv\build\x64\vc16\bin PASTE INTO C:\tools\opencv\build\x64\vc16\lib (tools as i used choco to install) SHOULD WORK!
@qtwithketan
@qtwithketan Месяц назад
Thanks for watching my video. Glad you like my videos. Just Copy your opencv dll files in your application run directory.
@sih8283
@sih8283 Месяц назад
Sorry buddy, your accent makes it impossible to follow the video. Perhaps you can get a higher quality microphone to help somewhat? I understand that changing an accent overnight is not possible but the english title vs the spoken english in the video makes this video clickbait. Jittery mouse and flicking the cursor around after each click is also supremely annoying. Please take this as positive criticism, as that is the intention.
@qtwithketan
@qtwithketan Месяц назад
feedback taken, and i will try to improve my english speaking skills and also i will try to arrange some high quality microphone. And Thanks for your genuine support and feedback.
@sih8283
@sih8283 Месяц назад
@@qtwithketan Awesome! Good luck with the channel. I hope you see great success.
@qtwithketan
@qtwithketan Месяц назад
@@sih8283 Thanks for your support.
@TheAshran
@TheAshran Месяц назад
Thank you so much! The clickable QLabel documentation in the official Qt website didnt actually explain how to implement it so this was super useful!
@qtwithketan
@qtwithketan Месяц назад
Thanks for watching my video. Glad you like my videos.
@thenightwolf224
@thenightwolf224 Месяц назад
We Want something like IDM Clone Series 😁
@qtwithketan
@qtwithketan Месяц назад
Thanks for watching my video. i will think on it and also try to make video on it.
@bobby9568
@bobby9568 Месяц назад
How is your Qt so fast at either building or re-building? If i change a line of code it takes ages again for it to rebuikd
@qtwithketan
@qtwithketan Месяц назад
Thanks for watching my video. it dosen't take more time when your code is not lengthy but yes it take more time when code is lengthy and i am also facing the problem about it.
@tejasm5330
@tejasm5330 Месяц назад
which video is the first video of this playlist i dont no about open CV
@qtwithketan
@qtwithketan Месяц назад
Thanks for watching my video. now you can see the videos in correct order of playlist Qt With OpenCV Playlist : ru-vid.com/group/PLh0cogPqXcJNEhszlaONshdubdDOF8GRh
@AwebGameDev
@AwebGameDev Месяц назад
very underatted, quick and showed everything even without voice or text. helped me a lot
@qtwithketan
@qtwithketan Месяц назад
Thanks for watching my video. Glad you like my videos. And Sorry for voice because that time i didn't have the device to record voice.
@massimolandozzi4651
@massimolandozzi4651 Месяц назад
Hi, I'd be intrested in getting the code of this application. I'd me more interested on "not using qml at all". Di you think an all QtWidgets approach is possible?
@qtwithketan
@qtwithketan Месяц назад
Thanks for watching my video. i hope you liked my videos. in this application i also use QML for display Map, Route And Location Marker. so without QML i think is quite hard to do this.
@bobby9568
@bobby9568 Месяц назад
Amazing keep them videos coming 🎉
@qtwithketan
@qtwithketan Месяц назад
Thanks for watching my video. Glad you like my videos.
@MichaKobyecki-ky9ge
@MichaKobyecki-ky9ge Месяц назад
How can you pick-up current settings (baudrate, data bits, etc..) of each COM port
@qtwithketan
@qtwithketan Месяц назад
Thanks for watching my video. Those are settings are depends on your device. you have set those parameter according to your device.
@FilsNdassaNjoya
@FilsNdassaNjoya Месяц назад
what should l do when l have this error :-1: error: [Makefile.Debug:72: debug/untitledNDT.exe] Error 1
@qtwithketan
@qtwithketan Месяц назад
Thanks for watching my video. Try the following steps. 1) Clean your project. 2) Run qmake. 3) Build your project.
@estilay
@estilay Месяц назад
Thanks for your videos, I really appreciate your work! Is it possible to connect ip camera with Qt and don't use other libraries such as opencv? I've read about QNetwotk, but it didn't help so much and I didn't find any solution without using libraries. 😔
@qtwithketan
@qtwithketan Месяц назад
Thanks for watching my video. Glad you like my video. Right now i don't have IP camera to check so i will not give you any wrong way or solution. Try to readout following links: doc.qt.io/qt-5/qmediacontent.html#details stackoverflow.com/questions/30494319/qt-stream-ip-camera-video