| bio | website | celtic-knot-creator.com |
|---|---|---|
| location | Dublin, Ireland | |
| age | 29 | |
| visits | member for | 3 years, 9 months |
| seen | Mar 21 at 11:30 | |
| stats | profile views | 21 |
I'm a Linux user
|
Feb 5 |
comment |
Use rsync to copy all files except for certain filenames with a certain extension rsync is awesome :) |
|
Feb 3 |
comment |
How can I anonymize my browser useragent, yet still be counted as a Firefox/Ubuntu user? Arjan van Bentem, some anonymizing proxies will strip that sort of information IIRC |
|
Feb 1 |
comment |
Is it possible to torrent files privately? You could use BT to share a few files to a few computers |
|
Jan 5 |
comment |
How do I get the number of frames in a video on the linux command line? That's pretty good. In my experience, it doesn't take that long. A 40 minute file takes about <3seconds to run though. Remember that the "^M" is not the 2 characters ^ and M, you have to press Control-V, and then enter. Instead of your command I used: ffmpeg -i somefile.avi -vcodec copy -f rawvideo -y /dev/null 2>&1 | tr "^M" '\n' | grep '^frame=' | perl -pe 's/^frame=\s*([0-9]+)\s.*$/\1/' | tail -n 1 Your command fails if there's no space after the "frames=" |
|
Dec 21 |
comment |
Command-line video concatenation and recompression? For me, mencoder is in the mencoder ubuntu package. |
|
Dec 18 |
comment |
How do I get the number of frames in a video on the linux command line? That looks like a good answer, and works for some files, but for some VOB files I have, I don't have that data in the output. I've updated the question with the output I get |
|
Aug 28 |
comment |
Recommend me a good video format to encode my video um? Which is? Sorry I don't know much about video codecs... |