Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion.

Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules.

Domains: forum.doom9.org / forum.doom9.net / forum.doom9.se

 

Go Back   Doom9's Forum > Capturing and Editing Video > DV

Reply
 
Thread Tools Search this Thread
Old 15th May 2003, 12:04   #1  |  Link
Logiqx
Registered User
 
Join Date: Apr 2003
Posts: 19
FourCC changer utility for the command line

If anyone has a need for changing the FourCC of their AVIs (e.g. to force use of the Canopus codec) then I knocked up a quick tool that runs from the command line.

It's very simple but quite powerful and it's best use is as a shortcut on the Windows desktop. My shortcut recursively changes all AVIs under my capture directory to 'cdvc' with just a double-click.

I'll create a proper page for it in due course but right now it can be found here:

http://www.logiqx.com/AVI2CDVC/avi2cdvc.zip

Maybe it's of use to a few people. I got bored with changing files one at a time through a GUI so I knocked this together in about an hour. The C source is included for programmers.

Logiqx
Logiqx is offline   Reply With Quote
Old 15th May 2003, 14:02   #2  |  Link
Vic
Registered User
 
Join Date: Mar 2003
Location: Japan
Posts: 3
Logiqx,

Nice work. I was thinking about such tool since switched to use Canopus codec. Going further, it would be perfect to embed this functionality directly into capture program. Good candidate is windv, however Petr hasn't opened the code so far. Don't know whether he's reading this forum, but I dropped him this idea, will see if he will be interested.
Vic is offline   Reply With Quote
Old 25th May 2003, 07:59   #3  |  Link
Malow
In bytes we trust
 
Malow's Avatar
 
Join Date: Oct 2002
Location: Torres Beach, Brazil
Posts: 279
Thanks for this simple and useful tool, my matrox with dv camera sometimes capture in dvcam fourcc and sometimes dvpro fourcc, or both at same time... your app solve my problem.... change one-by-one is impossible... in 386 clips...

Thanks a lottt!

Malow
Malow is offline   Reply With Quote
Old 8th August 2003, 13:28   #4  |  Link
kempfand
Registered User
 
kempfand's Avatar
 
Join Date: Oct 2001
Location: Switzerland
Posts: 225
avi2cdvc.zip link

@ Logiqx: Link doesn't work, and I can't find avi2cdvc.zip anywhere else on the web.

Any chance you could fix the link or email me the tool ?

Kind regards,

Andreas
kempfand is offline   Reply With Quote
Old 10th August 2003, 22:49   #5  |  Link
Logiqx
Registered User
 
Join Date: Apr 2003
Posts: 19
The server may have been playing up at that time. Try again now.
Logiqx is offline   Reply With Quote
Old 10th August 2003, 22:51   #6  |  Link
kempfand
Registered User
 
kempfand's Avatar
 
Join Date: Oct 2001
Location: Switzerland
Posts: 225
It worked now. Thanks a million !

Take care,

Andreas
kempfand is offline   Reply With Quote
Old 4th January 2016, 00:27   #7  |  Link
zenek
Registered User
 
Join Date: Dec 2015
Posts: 1
Hello,

more than 12 years later the avi2cdvc tool helped me to solve a problem, so I thought maybe someone will find my post helpful.

I enountered a low-end Philips television that was unable to play AVI files with "DX50" fourCC code - I presume the reason is licensing.

As I wanted to be able to play a HDD with a mix of AVIs of various formats, I created the follwing command/script. I was lucky enough to have Bash installed on Windows, but I assume it can be rewritten for the Windows command line too.

The "script" finds files with "DX50" fourcc and creates a copy of them with the fourCC updated to XVID.

Known bugs: if there is the string "DX50" anywhere in the filename, it considers it a DX50 fourcc.

The ffprobe.exe is a part of the ffmpeg installer for windows.

for foo in *; do ~/Downloads/ffmpeg-20151227-git-baf4c48-win64-static/bin/ffprobe.exe "$foo" 2>&1 | grep -iq dx50; if [ $? == 0 ] ; then echo "$foo"; cp "$foo" "$foo".xvid.avi ; ~/Downloads/avi2cdvc/avi2cdvc.exe -f XVID "$foo".zenekxvid.avi ; fi ; done

I hope it helps at least somebody in the next 10 years and thanks for creating the avi2cdvc.

zenek is offline   Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 17:04.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.