Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon.

Pages: 1-

free VOB converter?

Name: Anonymous 2005-08-27 15:00

any one kno were to get a good free VOB to avi/mpeg converter?

Name: Anonymous 2005-08-27 17:57

VOB is superior, you don't want to convert it.

Name: Anonymous 2005-08-27 20:41

yes i do so i can make music videos

Name: Anonymous 2005-08-28 8:21

>>2
VOB is MPEG2 in an industry-controlled standard; therefore it loses.

MPEG4 video + OGG Vorbis audio in a Matroska media file for the win.

Name: Anonymous 2005-08-28 10:13

ur.. yea vobs contain mpeg2 video encrypted with css

you decrypt the vob(smartripper)... frameserve the video out to somewhere(dvd2avi+avisynth), process the frames(vdub), reencode them with some other codec(vdub)

if you want mpeg2s dump the video to the lossless huffyuv codec from vdub then use an mpeg2 encoder such as cce to encode mpeg2s that will fit on your target media

Name: Anonymous 2006-07-07 1:31 (sage)

>>16
if you don't use mplayer change this line:
os.system("mplayer -cache 8192 " + str(streams[selection-1]))

Name: Anonymous 2008-06-16 22:54

bumping broken thread. hehehehe

Name: Anonymous 2008-06-17 1:52

>>6

>> >>16 ?

Name: Anonymous 2008-06-18 19:21

Learned basic C++ from an inadequate tutorial.


#include <iostream.h>
using namespace std; // thanks, joe
void main(int argc, char** argv) {
    cout << "Hello, world!" << endl;

}


Learned basic C++ from a slightly better tutorial.

#include <iostream>
using namespace std;
int main(int argc, char* argv[]) {
    cout << "Hello, world!" << endl;

    return 0;
}


Learned about namespace pollution.

#include <iostream>
int main(int argc, char* argv[]) {
    std::cout << "Hello, world!" << std::endl;

    return 0;
}


Learned about classes.

#include <iostream>
#include <string.h>
class Hello {
private:

    char* msg;
public:
    Hello() {
        this->msg = strdup("Hello, world!");
    }
    ~Hello() {
        delete this->msg;
    }

    char* hello() {
        return this->msg;
    }
};
int main(int argc, char* argv[]) {
    Hello* hello = new Hello();
    std::cout << hello->hello() << std::endl;

    delete hello;
    return 0;
}


Learned about the C++ string container.

#include <iostream>
#include <string>
class Hello {

private:
    std::string msg;
public:
    Hello() {
        this->msg = "Hello, world!";
    }
    std::string hello() {
        return this->msg;

    }
};
int main(int argc, char* argv[]) {
    Hello hello;
    std::cout << hello.hello() << std::endl;
    return 0;
}



Found out about the STL.

/usr/lib/gcc/x86_64-unknown-linux-gnu/4.3.1/../../../../include/c++/4.3.1/bits/ios_base.h: In copy constructor ‘std::basic_ios<char, std::char_traits<char> >::basic_ios(const std::basic_ios<char, std::char_traits<char> >&)’:
/usr/lib/gcc/x86_64-unknown-linux-gnu/4.3.1/../../../../include/c++/4.3.1/bits/ios_base.h:783: error: ‘std::ios_base::ios_base(const std::ios_base&)’ is private

/usr/lib/gcc/x86_64-unknown-linux-gnu/4.3.1/../../../../include/c++/4.3.1/iosfwd:52: error: within this context
/usr/lib/gcc/x86_64-unknown-linux-gnu/4.3.1/../../../../include/c++/4.3.1/iosfwd: In copy constructor ‘std::basic_ostream<char, std::char_traits<char> >::basic_ostream(const std::basic_ostream<char, std::char_traits<char> >&)’:
/usr/lib/gcc/x86_64-unknown-linux-gnu/4.3.1/../../../../include/c++/4.3.1/iosfwd:61: note: synthesized method ‘std::basic_ios<char, std::char_traits<char> >::basic_ios(const std::basic_ios<char, std::char_traits<char> >&)’ first required here

test.cpp: In function ‘int main(int, char**)’:
test.cpp:7: note: synthesized method ‘std::basic_ostream<char, std::char_traits<char> >::basic_ostream(const std::basic_ostream<char, std::char_traits<char> >&)’ first required here
test.cpp:7: error:   initializing argument 3 of ‘_Funct std::for_each(_IIter, _IIter, _Funct) [with _IIter = __gnu_cxx::__normal_iterator<char*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, _Funct = std::basic_ostream<char, std::char_traits<char> >]’

/usr/lib/gcc/x86_64-unknown-linux-gnu/4.3.1/../../../../include/c++/4.3.1/bits/stl_algo.h: In function ‘_Funct std::for_each(_IIter, _IIter, _Funct) [with _IIter = __gnu_cxx::__normal_iterator<char*, std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, _Funct = std::basic_ostream<char, std::char_traits<char> >]’:
test.cpp:7:   instantiated from here
/usr/lib/gcc/x86_64-unknown-linux-gnu/4.3.1/../../../../include/c++/4.3.1/bits/stl_algo.h:3791: error: no match for call to ‘(std::basic_ostream<char, std::char_traits<char> >) (char&)’



Mastered the basic containers of the STL.

#include <iostream>
#include <string>
#include <vector>
int main(int argc, char* argv[]) {
    std::string hello = "Hello, world!";

    std::vector<char> v;
    for (unsigned int j = 0; j < hello.length(); ++j) {
        v.push_back(hello[j]);
    }
    std::vector<char>::iterator i;

    for (i = v.begin(); i != v.end(); ++i) {
        std::cout << *i;
    }
    std::cout << std::endl;
    return 0;
}



Mastered the STL.

#include <iostream>
#include <string>
#include <algorithm>
class printc { public: void operator() (char c) { std::cout << c; } };
int main(int argc, char* argv[]) {

    std::string hello = "Hello, world!";
    std::for_each(hello.begin(), hello.end(), printc());
    std::cout << std::endl;
    return 0;
}


Read the C++ FAQ Lite and realized C++ mastery is impossible.

#include <iostream>

int main(int argc, char* argv[]) {
    std::cout << "Hello, world!" << std::endl;
    return 0;
}


Read the C++ FQA Lite.

#include <stdio.h>

int main(int argc, char* argv[]) {
    printf("Hello, world!\n");
    return 0;
}


Heard of 4chan and wound up in /b/.

HAI
CAN HAS STDIO?
VISIBLE "HAI WORLD!"

KTHXBYE


Found a replacement for /b/ after finding it overrun by ``cancer'' and ``newfags.''

One word, the forced indentation of code.  Thread over.  Also, read SICP!

Read SICP after months of telling people to read SICP.

(display "Hello, world!")
(newline)



Achieved Satori after re-reading SICP every day for many years.

void main() { puts("Hello, world!"); }

Name: Anonymous 2009-03-06 14:55


Don't use fucking string concatenation Instant fail   but it uses   gvim instead of   some faggy latin.

Name: Anonymous 2010-04-10 19:50

   ▄███
  ▄█   █
 ▄█▀  ▄██▄
▄█   ▄██ █▄
▀   ▄██▀ ▀█▄
   ▄██▀   ▀█▄
  ▄██▀     ▀█▄
 ▄██▀       ▀█▄ ▄█
███          ▀██▓
              #▓
              
              #▓
              
              #▓

The Bleeding Lambda

Name: Anonymous 2010-04-10 19:51

``The blood of the lambda is important for your personal salvation.''

   ▄███
  ▄█   █
 ▄█▀  ▄██▄
▄█   ▄██ █▄
▀   ▄██▀ ▀█▄
   ▄██▀   ▀█▄
  ▄██▀     ▀█▄
 ▄██▀       ▀█▄ ▄█
███          ▀██
#█
              #█
              
              #█
              
              #█


The Bleeding Lambda

Name: Anonymous 2010-04-10 19:51

``The blood of the lambda is important for your personal salvation.''

   ▄███
  ▄█   █
 ▄█▀  ▄██▄
▄█   ▄██ █▄
▀   ▄██▀ ▀█▄
   ▄██▀   ▀█▄
  ▄██▀     ▀█▄
 ▄██▀       ▀█▄ ▄█
███          ▀██
              #█
              
              #█
              
              #█


The Bleeding Lambda

Name: Anonymous 2010-04-10 19:53

``The blood of the lambda is important for your personal salvation.''

"   ▄███"
"  ▄█   █
 ▄█▀  ▄██▄
▄█   ▄██ █▄
▀   ▄██▀ ▀█▄
   ▄██▀   ▀█▄
  ▄██▀     ▀█▄
 ▄██▀       ▀█▄ ▄█
███          ▀██"
              #█
              
              #█
              
              #█


The Bleeding Lambda

Name: Anonymous 2013-07-30 18:08

Lain

Don't change these.
Name: Email:
Entire Thread Thread List