Skip to main content

All Questions

Tagged with
0 votes
1 answer
603 views

Windows batch script equivalent of a Windows PowerShell script

Can anyone help me to create a Windows batch script equivalent of Windows PowerShell script that I wrote. I know what first few lines should be, but I am not sure for the rest. PowerShell Code: Get-...
Zoran Jankov's user avatar
1 vote
1 answer
704 views

Why is the Batch script I created to convert MP4 files to GIF files with FFmpeg not working?

This is what I have so far. It runs, but throws an error. I have come up with the following below. for %%a in ("*.mp4") do ffmpeg -i "%%a" -t 3 -vf "fps=10, scale=320, flags=...
Christopher Shaw's user avatar
0 votes
1 answer
2k views

How to change output names when batch converting with ffmpeg to the same directory?

I have a bunch of mkv files that I'm trying to convert their audio while copying the video with this command: for %i in (*.mkv) do ffmpeg -i "%i" -c:a aac -ar 44100 -b:a 128k -c:v copy "...
BelowAverageUser's user avatar
0 votes
2 answers
520 views

Extract Artworks from folder of Songs

Is there a way to take a folder of music files, for example in m4a format, and extract all artworks into separatejpg files automatically? Say there are 144 songs, so without having to do it manually ...
Roman Stadler's user avatar
8 votes
2 answers
12k views

Batch convert WebP files to GIF files offline?

Writing a batch script to convert all WebP files to be GIF format. Looking at the closest utility offered by Google, I don't see an immediately obvious way to do that. I don't like having to use ...
Ghoti and Chips's user avatar
1 vote
1 answer
53 views

Ignoring file extension when running program from Windows context menu?

I have added a "convert to JPG" option to my windows context menu. I have accomplished this by setting the context menu to run magick convert %1 %1.jpg. However, while this works, it will leave the ...
LittleKingJohn's user avatar
1 vote
1 answer
1k views

How to batch process pictures to split and reassemble them vertically?

I have 6,000 pictures with two horizontal bars of text in them, one at the top, one at the bottom. The goal is to cut the top bar and put it under the bottom bar of text. How would I do that in a ...
Hecate Newb's user avatar
2 votes
0 answers
220 views

Once BAT is compiled into an EXE, I can't get embedded EXE's to run properly

I have created a batch file that lets me change the static IP Address or enable DHCP of my network adapters. It works wonderfully. I execute several EXE files written by Horst Schaeffer. They are Wbox,...
Breckt's user avatar
  • 21
7 votes
4 answers
4k views

Batch Conversion of different files in a folder to PDF

I need a Linux command-line instrument that can make scripted conversion of files of different format (usually .odt, .docx and .rtf) to PDF. How would I do that?
keddad's user avatar
  • 759
1 vote
0 answers
2k views

How to batch convert HTML web page links to MS- Word (doc) format?

I have a list of around 153 URLs that I need to visit and save in editable MS-Word format. I have tried converting the individual pages to pdf and then converting them to word format, and converting ...
Backspace's user avatar
0 votes
0 answers
1k views

Batch convert multi page TIFFs to multi page or individual page PDFs on MAC

I have hundreds of Multi page TIFFs that I need to turn into individual image JPG files (file names not important). Some had already been converted into multi page PDFs and I found a solution using ...
Megabite's user avatar
0 votes
2 answers
1k views

How to Batch Convert Filenames from Decimal to Hex Color Codes? [closed]

I asked this question first over on Graphic Design... Since then I was able to learn; and to utilize the fact that a program I was unfamiliar with (ImageMagick) has the capability to output RGB values ...
BANG's user avatar
  • 101
0 votes
0 answers
2k views

Importing WMIC txt into csv or xlsx

I have a logon script that logs several pieces of information and does it for a per device basis and then pipes it to a txt with the file name Computer-Name-report.txt The company has hundreds of ...
TechKno's user avatar
  • 108
4 votes
3 answers
38k views

Batch script (cmd) resulting in DD-MM-YYYY_weekday format

I need to use date /t command and convert the date format to DD-MM-YYYY_weekday with all the "-" and "_" as listed I can't find an answer on my question. Could you please help me?
Anastasiya's user avatar
1 vote
0 answers
650 views

How can I batch convert all of my video files to AAC audio without converting the video?

I've used XMedia Recode to do this and it works great. I set video to "copy", audio to "convert", and it takes 2 minutes for a 2GB file. There's two problems with it for batch work though. It doesn't ...
James's user avatar
  • 23

15 30 50 per page