Search:

Type: Posts; User: evilsoup; Keyword(s):

Page 1 of 10 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    28
    Views
    29

    Re: 4 mono audiotrack into 2 stereo video

    Right, I'm mostly going off memory here so let me know whether the commands work or not.

    You can actually do the entire process for each file with a single ffmpeg command, no need for any...
  2. Replies
    52
    Views
    2,953

    Re: Cafe so slooow!

    This is a serious issue, I think. The new login method doesn't remember me. Whenever I come back to the site I have to log in, ugh. It may seem like a small thing, but it has seriously turned me off...
  3. Replies
    5
    Views
    874

    Re: Simple PHP editor with line numbers

    Gedit does have line numbers, but you have to turn it on. Go to Edit-->Preferences and click the box next to 'Display line numbers'.

    I have to admit, I've never used Notepad++ (I'm a vim man --...
  4. Replies
    7
    Views
    534

    [SOLVED] Re: Setting Keys for Programs

    You can even just type 'keyboard shortcuts' into the dash to bring it up.
  5. Replies
    5
    Views
    1,321

    [SOLVED] Re: Shuffling Files in Folder

    You can use the globstar shell option:



    #!/bin/bash
    shopt -s globstar

    while read -r -d $'\0' song
    do
    omxplayer -o local "$song"
  6. Replies
    5
    Views
    1,507

    Re: video tag in IE9 won't play mp4

    I don't know how up to date the version in the PPA is. You can compile your own (which, as I put in my other post, might be useful if you want a high-quality AAC encoder), or you can grab a static...
  7. Replies
    5
    Views
    1,507

    Re: video tag in IE9 won't play mp4

    It's sort of a stab in the dark, but it's probably that the MP4 files aren't ready for the internet.

    Basically, the MP4 file format is broken into 'atoms'; one atom of the file that is required...
  8. Replies
    11
    Views
    3,352

    Re: SteamOS: Ext4 or Btrfs?

    According to omgubuntu, SteamOS is going to be based on Ubuntu 12.04, so I would have thought they would use the default filesystem (ext4).

    That said, it seems like it will just be another Linux...
  9. Replies
    9
    Views
    850

    Re: Statistics: we just love them

    45.69443% of statistics claim an impossible level of accuracy.
  10. Replies
    6
    Views
    533

    Re: Puella Magi Madoka Magica

    You might have a point if Kyubey was dealing with adults rather than children, or if he didn't consider humans to be livestock, or if his reaction to the fact that the Earth was about to explode...
  11. Replies
    6
    Views
    533

    Re: Puella Magi Madoka Magica

    Whoa, I just finished watching this show last night, and then I log on here and see this thread. Synchronicity.

    Anyway yeah it's pretty great, I'd consider it an almost perfect show (as in:...
  12. Replies
    10
    Views
    22,709

    [SOLVED] Re: Convert png to video

    No, I don't think you're doing anything wrong, it's just that ffmpeg (and avconv) is a fast-moving project, and the versions in the repositories are often out-of-date. It seems that the version you...
  13. Replies
    10
    Views
    22,709

    [SOLVED] Re: Convert png to video

    ffmpeg -f image2 -r 6 -pattern_type glob -i '*.png' output.mp4

    ...should do it. You need to quote the *.png, otherwise the shell expands it into a list of all the png files in the current...
  14. Replies
    13
    Views
    33,328

    [ubuntu] Re: SIlverlight, Moonlight, and Ubuntu

    Slightly old thread, but since it's been bumped already I think I should mention Pipelight, which claims to allow the playing of Silverlight videos in the browser.
  15. Re: tar seperate gzip/tar files into one tar file with one command

    What's the advantage to doing this rather than just putting all the files in a tarball and compressing that (which could be done with a single tar command)?
  16. Replies
    2
    Views
    361

    Re: How to store recordings on external hdd?

    Could you maybe paste your script here? Put it in between [code ][ /code] tags.
  17. Replies
    7
    Views
    3,106

    Re: Something to "Me Too"

    Good idea, +1.
  18. Replies
    3
    Views
    495

    [SOLVED] Re: shell script question

    I had a very similar function in my .bashrc, until I discovered that I could just use the commands 'killall' or 'pgrep'/'pkill'.


    pkill -f 'vlc -I dummy --volume 120...
  19. Replies
    41
    Views
    8,258

    Re: Is TOR safe to use?

    Well the whole point of tor is that you are anonymous while using it, so unless it's flawed on some technical level I don't see how anyone would know that you're using it in the first place.
  20. [ubuntu] Re: So I have this list of 40 questions I want in a unique order 351 times

    for f in {1..351}; do shuf --random-source=<(echo $f) input.txt > output${f}.txt; done

    The above assumes that you want each permutation in a different file; you will end up with 351 output files....
  21. Thread: VI config

    by evilsoup
    Replies
    3
    Views
    523

    Re: VI config

    Here's the .vimrc I use for prose writing. I can toggle the spellcheck with F5, and toggle the syntax highlighting with F6 (it's useful to turn them off when I want a distraction-free environment).
    ...
  22. [all variants] Re: Normalize a folder of music without using RG

    You can just put it in a for loop.


    for f in ./*.mp3; do mp3gain <options> "$f"; done

    I've never used mp3gain, so I don't know what options would be correct. You can also get recursiveness -- ...
  23. Re: What was your start with Linux, and then Ubuntu?

    You should probably check out pandoc -- it can take LaTeX input (amongst other), and output to docx (and a whole other list of formats). Of course, this doesn't help if you need to collaborate with...
  24. Re: What was your start with Linux, and then Ubuntu?

    My little brother accidentally killed a Windows XP installation while trying to get rid of some virus on the family computer I'm still not sure if he did that on purpose or not, but by the next day...
  25. [SOLVED] Re: Netflix choppy video and scratch sound ... but it worked yesterday.

    Are you testing on the same videos? It could be that netflix is serving some videos in standard definition, and others in high-definition (which means more data for the netflix player to deal with).
Results 1 to 25 of 250
Page 1 of 10 1 2 3 4