|
|
Index: Home | What Is Izumi | Misc Links | Random Thoughts | Too Much To Read | The Rant Vault | Quotes Dev: Projects | Ideas For Dev | Nerdkill | Rig | Hint
$Id: Misc Links.izu,v 1.154 2007-04-18 04:45:40 ralf Exp $
Sony Vegas Movie Studio Platinum 7.0 doesn't like the MJPEG/.mov streams created by my digital camera. It won't import them.
One format it will however import correctly is an MPEG 2 Transport Stream.
To convert the movies:
$ for i in *.mov; do ffmpeg -i "$i" -acodec mp2 -ac 2 -ar 44100 -ab 128 -vcodec mpeg2video -b 20000 -f mpegts "${i/.mov/.m2t}" ; done
It creates a movie with the following characteristics:
Stream #0.0, nan fps: Video: mpeg2video, yuv420p, 848x480, q=2-31, 20000 kb/s Stream #0.1: Audio: mp2, 44100 Hz, stereo, 128 kb/s
The input video is at 30 fps.
Another way is to create two tracks:
ffmpeg -i "$i" -acodec mp3 -ac 2 -ar 44100 -ab 128 -vn "${i/.mov/.mp3}"ffmpeg -i "$i" -an -vcodec mpeg2video -b 20000 "${i/.mov/.mpeg2}"
MSI: The system cannot open the device or file specified.
MSDN: How to enable Windows Installer logging
To enable Windows Installer logging Open the registry with Regedit.exe and create the following path and keys:
HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows\Installer Reg_SZ: Logging Value: voicewarmupx
The letters in the value field can be in any order. Each letter turns on a different logging mode.[...]
Enabling the extra-verbose logging didn't provide any clue.
Looking at the error on Google
many say this happens if the msi file is located on an encrypted filesystem (aka EFS).
Mine is not, but the installer is on the D: drive. Copying it C:\Temp made the issue go away :-
Autoconf/automake tutorial:
Related articles:
So I ended up with Cygwin not being able to start X11 because of this error Fatal server error: could not open default font 'fixed'.
The solution is given on the link above.
However in my case umount /usr/X11R6/lib/X11/fonts did not work. I had to use umount /.
When doing so, as soon as you close the cygwinn shell there's no way to use it again (since /bin
won't be mounted anymore.) So after the =setup== update the easiest solution is to log off and log back in
(restart works too but should not be mandatory.)
To "disable [DMA setting] in Windows" as requested:
Blog Archives:
Most recent posts
2006/08/25 - 2006/04/10
2006/04/06 - 2005/10/21
2005/10/16 - 2005/09/07
2005/09/03 - 2005/06/26
2005/06/25 - 2005/05/10
2005/05/05 - 2005/03/30
2005/03/29 - 2005/02/01
2005/01/25 - 2004/12/14
2004/12/13 - 2004/11/28
2004/11/28 - 2004/10/25
2004/10/23 - 2004/09/13
2004/09/12 - 2004/07/18
2004/07/14 - 2004/06/19
2004/06/17 - 2004/05/12
2004/05/11 - 2004/04/22
2004/04/21 - 2004/04/08
2004/04/01 - 2004/02/23
2004/02/22 - 2004/01/21
2004/01/18 - 2003/11/29
2003/11/14 - 2003/08/29
2003/07/04 - 2003/07/16
[RSS]
|
|

This work is licensed by Raphaël Moll under a Creative Commons License.
|
|
| Color Theme: | Gray | Blue | Black | Sand | Khaki | Egg | None |
|
|
|
|