Search:

Type: Posts; User: Norm

Search: Search took 0.20 seconds.

  1. Re: Splitting large video files into small chunks and combining them

    You should contact the authors of the software about that.
  2. Re: Splitting large video files into small chunks and combining them

    You need to add a call to the printStackTrace() method in the catch block to get the full text of the error message.
  3. Re: Splitting large video files into small chunks and combining them

    I'd go with the breaking the huge file into parts, sending the parts and then putting them back together, instead of trying to send Gigabytes.

    Otherwise contact the authors of the code you are...
  4. Re: Splitting large video files into small chunks and combining them

    Define a custom protocol for sending the blocks. Add a header that has a block number and size before the bytes being sent.
  5. Re: Splitting large video files into small chunks and combining them

    My suggestion has nothing to do with the contents of the file. It is strictly byte by byte.
    Copy the first n bytes to a file
    copy the next n bytes to another file
    etc

    Then read the short files...
  6. Re: Splitting large video files into small chunks and combining them

    You could write a utility program to split the large file into smaller chunks to be sent and then to join the chunks back together into the single file.

    (I have a project like that in mind for...
Results 1 to 6 of 6