FFMPEG for Vlogging

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…

Quick PDF parsing

PDF Parser Command Line xpdf xpdf file.pdf xpdf file.pdf :18 OCR Commands PDF pages to Image magick -density 150 file.pdf[1-6] -quality 90 -resize 75% pdfPage-%d.png Image to Text rem tesseract pdfPage-2.png pdfText/pdfPage-2.txt rem tesseract pdfPage-[3-6].png pdfText/pdfPage-%d.md FOR /L %y IN (3, 1, 6) do tesseract "pdfPage-%y.png" pdfText/pdfPage-%y rem FOR /L %%y IN (3, 1, 6)…

Movie With AI

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 ???????????????????????? ???????????????? ➜…

Mobile App with AI

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

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….

Android Class for Google Login

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…

Google Analytics 4 (GA4)

Google Analytics Google Analytics is a web analytics service offered by Google that tracks and reports website traffic and also the mobile app traffic & events, currently as a platform inside the Google Marketing Platform brand. Google launched the service in November 2005 after acquiring Urchin Google Analytics provides an SDK that allows gathering usage…