Wednesday, August 2, 2023

.net maui project file

 <EmbedAssembliesIntoApk>true</EmbedAssembliesIntoApk> 

Opnemen in de project file 

Tuesday, November 12, 2019

ffmpeg

Convert HIK mp4

cd I:\Conv
dir

for %%i in (*.mp4) do "C:\ffmpeg\bin\ffmpeg" -err_detect ignore_err -i %%i -c copy %%~ni_fixed.mp4
pause


Convert and Stich
cd I:\Stich
dir

for %%i in (*.mp4) do "C:\ffmpeg\bin\ffmpeg" -err_detect ignore_err -i %%i -c copy %%~ni_fixed.mp4


:: Create File List
for %%i in (*_fixed.mp4) do echo file '%%i'>> "I:\Stich\mylist.txt"

:: Concatenate Files
"C:\ffmpeg\bin\ffmpeg"  -f concat -safe 0 -i "I:\Stich\mylist.txt" -c copy "I:\Stich\Output\output.mp4"
pause

ffmpeg -i video.mp4 -f mp3 -ab 192000 -vn music.mp3

Wednesday, January 29, 2014

dos batch script for backup

@echo off
set backupdir=X:\i8\Stages\BU\
set sourcedir=c:\temp
REM Create the date and time elements.
for /f "tokens=1-7 delims=:/-, " %%i in ('echo exit^|cmd /q /k"prompt $d $t"') do (
   for /f "tokens=2-4 delims=/-,() skip=1" %%a in ('echo.^|date') do (
      set dow=%%i
      set %%a=%%j
      set %%b=%%k
      set %%c=%%l
      set hh=00%%m
      set hh=%hh:~-2%
      set min=%%n
      set ss=%%o
      set datetime=%yy%%mm%%dd%_%hh%%min%
   )
)

echo %datetime%
@echo on

REM Make Backup dir
if not exist %backupdir%%datetime% mkdir %backupdir%%datetime%

REM Copy file to backup including sub dirs
xcopy %sourcedir% %backupdir%%datetime%\  /S /Y



Till Next Time

Sunday, March 17, 2013

NMEA Baudrate Change Sentences

4800/8/N/1      $PSRF100,1,4800,8,1,0*0E
    9600/8/N/1      $PSRF100,1,9600,8,1,0*0D
   19200/8/N/1      $PSRF100,1,19200,8,1,0*38
   38400/8/N/1      $PSRF100,1,38400,8,1,0*3D


Till Next Time

Tuesday, July 14, 2009

PAE windows 2003

I keep losing the link:

http://support.microsoft.com/kb/283037/en-us

Till Next Time

Tuesday, March 31, 2009

NOKIA Presenter PowerPoint 2007

From Anton3s:

First the good news:
I got Nokia Presenter to recognize Powerpoint 2007.

Open C:\Program Files\Nokia\Nokia Wireless
Presenter\Profiles\Powerpoint.ini(in notepad or something).

Add the value PP12FrameClass to the ClassName field.Now Presenter should
recognize Powerpoint 2007.

But now the bad news:

It still doesn't work with PP 2007 presentations (.pptx files).However if
you save your presentation in the old format (.ppt), then it works
perfectly.

Hope this helps you.

Till Next Time