Main page Code <?php /* ### requirements 1. create a basic js tree with html ul-li tags 2. load with ajax 3. make parent and child check boxes independent of each other 4. load json with ajax 5. check/uncheck all nodes 6. check/uncheck particular node 7. redraw entire tree */ ?> <!DOCTYPE html> <html lang="en">…
Join intro, content and outro more reference aand this ffmpeg -i intro.mp4 -i content.mp4.mp4 -i outro.mp4 -filter_complex ^ "[0:v] [0:a] [1:v] [1:a] [2:v] [2:a] ^ concat=n=3:v=1:a=1 [v] [a]" -map "[v]" -map "[a]" concatOutput.mp4 1. Video form one Audio file and one image https://superuser.com/questions/1041816/combine-one-image-one-audio-file-to-make-one-video-using-ffmpeg ffmpeg -y -i imag.jpg -i audio.mp3 -c:a copy result.mp4 2. Video from…
reference It could be a caching issue. Maybe your PC was using your router as a dns server and it cached that example.com didnt resolve. Or maybe your own PC cached it. I’m thinking your cell phone probably used another dns server. On your PC, you could’ve tried to speed it up with ipconfig /flushdns…
PDF Parser Command Line xpdf xpdf file.pdf xpdf file.pdf :18 OCR Commands PDF pages to Image magick -density 150 file.pdf[0-6] -quality 90 -resize 75% pdfPage-%d.png Note First page starts at 0. If you want nth page it should be like magick -density 150 file.pdf[n minus one value] -quality 90 -resize 75% pdfPage-%d.png Image to Text…
https://www.youtube.com/watch?v=XBZMJDdlPz8 Dialogs, visuals and music are gnerated with ai Tools Used ❤️ https://www.midjourney.com/ https://playgroundai.com/ ✍️ https://gravitywrite.com/ https://runwayml.com/ https://elevenlabs.io/ https://lalamu.studio/demo/demo.html https://wl.tools/thinkdiffusion https://image.online-convert.com/convert/mp4-to-png https://clipchamp.com/en/ https://pixabay.com/music/ 1. Finalize a story https://gravitywrite.com/ 2. Create images ❤️ ???????????????????????????????????????? ➜ https://www.midjourney.com/ paid service ???? ????????????????????????????????????????.???????? ➜ https://playgroundai.com/ free 3. Create Video from Image ???????????????????????????????? ➜ https://runwayml.com/ 4. Dialogs ???????????????????????? ???????????????? ➜…
https://www.youtube.com/watch?v=EsRyyJmO-u8 Tools Used https://chat.openai.com/ https://codepen.io/ https://wl.tools/tiiny_host https://www.webintoapp.com/app-maker https://www.flaticon.com/ 1. Create Code Ask chat GPT to give html css and js for a 2 player tic tac toe game. Make sure it is working with codepen https://codepen.io/ see the preview in the bottom Ask Chat GPT for revising code. eg: linear Gradient bg, add a popup…
Image to Malayalam Text with Tesseract First tinstall image magick if You need to convert PDF made of images, convert each page to png with image magick Windows Installer at https://github.com/UB-Mannheim/tesseract/wiki After install upadate Env Var PATH C:\Program Files\Tesseract-OCR test with tesseract –list-langs default langs availabe are eng and osd. more langs could be added….
Google Sample Import Classes import com.google.android.gms.auth.api.signin.GoogleSignIn; import com.google.android.gms.auth.api.signin.GoogleSignInAccount; import com.google.android.gms.auth.api.signin.GoogleSignInClient; import com.google.android.gms.auth.api.signin.GoogleSignInOptions; import com.google.android.gms.common.SignInButton; import com.google.android.gms.common.api.ApiException; import com.google.android.gms.tasks.OnCompleteListener; import com.google.android.gms.tasks.Task; Implement View.OnClickListener /** * Activity to demonstrate basic retrieval of the Google user's ID, email address, and basic * profile. */ public class SignInActivity extends AppCompatActivity implements View.OnClickListener { Set up Java classes for login…
Getting Started with Create React App This project was bootstrapped with Create React App. Available Scripts In the project directory, you can run: npm start Runs the app in the development mode.\ Open http://localhost:3000 to view it in your browser. The page will reload when you make changes.\ You may also see any lint errors…
Sample Script cutAndPastePdfPage.bat. This script splits a tall pdf into 2 and arrange sidewise, so it can be nicely seen in screen. You need to download and install GhostScript for PDF to image conversion , ref ImageMagick for cutting PDF page image and arranging sidewise. FFMPEG to create videos Word of Caution: ImageMagick installs its…