Search:

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

Page 1 of 8 1 2 3 4

Search: Search took 0.07 seconds.

  1. [SOLVED] VLC lost sound while the other apps did not

    This was seemingly difficult to solve so I'll post the procedure to help others.

    The Problem
    VLC lost sound, possibly after waking up from suspend. Sound was enabled everywhere:

    VLC main...
  2. Replies
    0
    Views
    569

    xmlling and CDATA

    Hello,

    The problem
    xmllint does not indent xml files in a proper way. The end tag after character data which is not enclosed inside CDATA section is not indented. With the CDATA markup...
  3. Thread: Asus U31SD

    by denarced
    Replies
    50
    Views
    15,949

    [ubuntu] Re: Asus U31SD

    Hello all,

    This is just an update for everyone on the HDMI issue. I'm using bumblebee and 12.04 (32bit) and HDMI does not work. My laptop model is Asus U31SD with specs

    Inte core
    Intel Core...
  4. Replies
    2
    Views
    2,841

    [ubuntu] Re: 12.04 Cannot unlock items from launcher

    This one didn't help. For a moment there I could see the things on my desktop but the all went to hell with an array of error notifications. And after logging out and back in, the libre office apps,...
  5. Replies
    2
    Views
    2,841

    [ubuntu] 12.04 Cannot unlock items from launcher

    Hello,

    More precisely: I cannot permanently unlock items from the launcher. I haven't tried adding and then removing items but I have to always unlock the default items from launcher after...
  6. Replies
    4
    Views
    3,673

    [SOLVED] Re: Mercurial confusion

    Yep!
    The missing write privileges was the problem.
  7. Replies
    4
    Views
    3,673

    [SOLVED] Re: Mercurial confusion

    I did and I got:
    pushing to ssh://user@192.168.11.4//var/lib/mercurial/myapp
    searching for changes
    remote: abort: could not lock repository /var/lib/mercurial/myapp: Permission denied
    abort:...
  8. Replies
    4
    Views
    3,673

    [SOLVED] Mercurial confusion

    Hello,

    I have a repository on my machine and it has about 70 commits and a couple of branches. Now there's another "central" repo which is empty. Is it possible for me to push my commits to the...
  9. Replies
    0
    Views
    591

    [ubuntu] Asus U31SD loses the touchpad

    Hello,

    I just bought a brand new laptop and installed Ubuntu 11.10 on it, no special tricks. I originally was annoyed because when it shut down the screen, I couldn't get it back on without a hard...
  10. Replies
    2
    Views
    275

    Re: [Python] Verifying data

    This depends on what kind of data are you receiving and from where.
    From another process? from TCP?
  11. Replies
    0
    Views
    186

    [ubuntu] How to pretend to be a certain domain

    Hei,
    I'm trying to fake a domain name for my private network. I have a laptop which acts as a router and I want to configure that when someone tries to get, for example, www.hotmail.com, he'll get...
  12. Replies
    4
    Views
    4,203

    [SOLVED] Re: Netbeans Problem

    Just a note for everyone, the -R option seems kind of insane since referring to a single file, but there's no harm either..
  13. Replies
    1
    Views
    979

    [SOLVED] Re: How to use find, egrep and vim

    Not sure if this is legit but here goes, the solution:
    http://www.linuxforums.org/forum/programming-scripting/174005-how-find-files-then-edit-em-find-grep-vim.html#post824207
  14. Replies
    1
    Views
    979

    [SOLVED] How to use find, egrep and vim

    Hello,

    I've been using this command lately:


    find . -type f -iregex '.*\.java' -exec egrep --color 'new Runnable' '{}' \+

    The iregex and egrep pattern of course are not important. The point...
  15. Replies
    8
    Views
    12,987

    [SOLVED] Re: Problem with stripping metadata with ffmpeg

    And we have a winner.
    Apparently I don't even have to define the metadata :)
    Once the output container is mkv, it automatically inserts the filename as the title and that's that.
    Audio is good,...
  16. Replies
    8
    Views
    12,987

    [SOLVED] Re: Problem with stripping metadata with ffmpeg

    It would appear that the problem has nothing to do with the metadata definitions. The audio is messed up even when creating a straight up copy


    ffmpeg -acodec copy -vcodec copy -i original.avi...
  17. Replies
    8
    Views
    12,987

    [SOLVED] Re: Problem with stripping metadata with ffmpeg

    In fact, the result of ron999's command lead into exactly the same result. I verified this with md5sum.

    More precisely, the following commands are functionally identical:


    ffmpeg -metadata...
  18. Replies
    8
    Views
    12,987

    [SOLVED] Re: Problem with stripping metadata with ffmpeg

    Tried it out:


    denarced@denarced-desktop:~/f/Desktop$ ffmpeg -i original.avi -vcodec copy -acodec copy new.avi
    FFmpeg version 0.6-4:0.6-2ubuntu6, Copyright (c) 2000-2010 the FFmpeg developers
    ...
  19. Replies
    8
    Views
    12,987

    [SOLVED] Re: Problem with stripping metadata with ffmpeg

    More info:



    denarced@denarced-desktop:~/f/Desktop$ cmp -b new.avi original.avi
    new.avi original.avi differ: byte 5, line 1 is 350 M-h 274 M-<
  20. Replies
    8
    Views
    12,987

    [SOLVED] Problem with stripping metadata with ffmpeg

    Hei,

    I have a lot of avis with annoying metadata that show in vlc.
    Since I cannot figure out how to configure vlc in a way that it won't show the tags, ffmpeg should strip the tags.
    This is...
  21. Replies
    0
    Views
    326

    Visual debugging

    Hei,

    I'm trying to achieve visual debugging. I'm not looking for a visual debugger, DDD won't do. I'm thinking more in the lines of taking certain varibles/data and representing it visually. In...
  22. Replies
    1
    Views
    576

    Re: Regular expressions and "counting" ..

    Nobody know this ?
  23. Thread: Indexing

    by denarced
    Replies
    8
    Views
    791

    [SOLVED] Re: Indexing

    Better than what ?
  24. Thread: Indexing

    by denarced
    Replies
    8
    Views
    791

    [SOLVED] Re: Indexing

    Interesting. Not exactly what I was looking for but I didn't know about DBM before.

    This is a prime example why people should reply even if they don't have the exact answer that's needed.
    ...
  25. Thread: Indexing

    by denarced
    Replies
    8
    Views
    791

    [SOLVED] Re: Indexing

    Hmm, I checked map and set. Both have a method called find:

    http://www.cplusplus.com/reference/stl/set/find/
    http://www.cplusplus.com/reference/stl/map/find/

    Both in complexity are equal...
Results 1 to 25 of 178
Page 1 of 8 1 2 3 4