Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
5answers
592 views

md5 decoding. How they do it?

i thought, that it is impossible to decode md5 hashes, but i found tools, which decode them here. but i have no idea, how they do it in such a short period of time(it takes about a second). Help me ...
6
votes
2answers
387 views

How to decode nvarchar to text (SQL Server 2008 R2)?

I have a SQL Server 2008 R2 table with nvarchar(4000) field. Data that stores this table look like '696D616765206D61726B65643A5472' or '303131' ("011"). I see that each char is encoding to ...
6
votes
4answers
6k views

How to decode Unicode escape sequences like “\u00ed” to proper UTF-8 encoded characters?

Is there a function in PHP that can decode Unicode escape sequences like "\u00ed" to "í" and all other similar occurrences? I found similar question here but is doesn't seem to work.
5
votes
2answers
125 views

Which thread to use for audio decoding?

When working with audio playback I am used to the following pattern: one disk (or network) thread which reads data from disk (or the network) and fills a ringbuffer one audio thread which reads data ...
5
votes
8answers
3k views

Free/Open h.264 video decoding libraries? (Non-GPL)

The main players seem to be x264, and xvid, and both are GPL. This means we can't integrate decoding capabilities into a playback application without licensing the whole thing as GPL, so we can't use ...
5
votes
4answers
6k views

Decode gzipped web page retrieved via cURL in PHP

I'm retrieving a gzipped web page via curl, but when I output the retrieved content to the browser I just get the raw gzipped data. How can I decode the data in PHP? One method I found was to write ...
4
votes
2answers
714 views

QR Codes Recognition Algorithm

I need to develop an application which detects QR codes with Visual Studio 2010 and OpenCV. I am very new in this topic. Can someone explain in simple words the steps of the decode algorithm and the ...
4
votes
4answers
214 views

Cross-browser incompatibilities in decoding JPEG files?

Something is puzzling me - why does this image appear different in every browser? Image in IE9 (and Windows Photo Viewer): Image in Firefox (and Photoshop): Image in Chrome (and Irfanview): ...
4
votes
4answers
314 views

Easy way to convert a string of 0's and 1's into a character? Plain C

I'm doing a steganography project where I read in bytes from a ppm file and add the least significant bit to an array. So once 8 bytes are read in, I would have 8 bits in my array, which should equal ...
4
votes
1answer
2k views

Decoding Encoded Audio Data (MP3s, etc) on Android Without Playing It

Short version: What is the best way to get data encoded in an MP3 (and ideally in an AAC/Ogg/WMA) into a Java array or ByteBuffer that I can then manipulate? I'm putting together a program that has ...
4
votes
1answer
2k views

Translating IMAP body based on their encoding

From the manual, I know that there are 6 different transfer encoding in IMAP. At this point, I've created this basic function: function translate_imap_body($body, $encoding) { switch($encoding) { ...
4
votes
1answer
2k views

Unicode Encoding and decoding issues in QRCode

I am trying to generate UTF-8 QRCode so that I can encore accents and Unicode characters. To test it, I am using many decoding solution : http://zxing.org/w/decode.jspx - The zxing project also ...
4
votes
4answers
2k views

Performance issues in FileStream.Write while writing bytes decoded using AsciiEncoding.GetBytes and Convert.FromBase64String

I am facing a performance problem while using the FileStream.Write function. I have a console application that i use to read a Base64 string from a file (~ size is 400 KB) using a StreamReader ...
4
votes
3answers
504 views

Viterbi decoder

Does anyone know for any good resource on the web or book where the explanation for Viterbi decoder or a tutorial on how to decode a received bit sequence by using trellis diagram could be found? ...
3
votes
2answers
112 views

How to decode q-encoding in C?

Is there any library for q-encoding? I need to decode some q-encoded text, such as: **Subject: =?iso-8859-1?Q?=A1Hola,_se=F1or!?=**
3
votes
2answers
110 views

php system, python and utf-8

I have a python program running very well. It connects to several websites and outputs the desired information. Since not all websites are encoded with utf-8, I am requesting the charset from the ...
3
votes
1answer
172 views

converting .mov file to .h264 file

ok, this is the case, i actually want to parse frames from a mov file. get the encoded h264 frames. and i've managed to do so by using ffmpeg but when i try to make a movie again by using ffmpeg -i ...
3
votes
1answer
359 views

UnicodeDecodeError: 'ascii' codec can't decode

I'm reading a file that contains Romanian words in Python with file.readline(). I've got problem with many characters because of encoding. Example : >>> a = "aberație" #type 'str' ...
3
votes
1answer
176 views

simple video decoding in Java / Scala

Is there an easy way to decode video in java/scala? I need just the frames and have to do some computations with them. No need to be fast or real time. I tried processing which worked but not nice ...
3
votes
2answers
117 views

Character Decoders in Java

Where can I find some character decoders for the non-officially supported charsets? I.e. I don't want to reinvent the wheel, surely someone must have already written some decoders for their own ...
3
votes
2answers
205 views

UTF-16 decoder not working as expected

I have a part of my Unicode library that decodes UTF-16 into raw Unicode code points. However, it isn't working as expected. Here's the relevant part of the code (omitting UTF-8 and string ...
3
votes
4answers
723 views

Decoding JSON format in Java

I got a JSON(encoded) format nested Arrays which looks like this; [ [[1234,245,10],[312,234,122],[1234,67788,345],[235,001,332]], ...
3
votes
2answers
147 views

Working with HTML econding in PHP (intelligent way to decode)

from a PHP script I'm downloading a RSS feed like: $fp = fopen('http://news.google.es/news?cf=all&ned=es_ve&hl=es&output=rss','r') or die('Error reading RSS data.'); The feed is an ...
3
votes
9answers
515 views

Decode some injected Javascript?

I had the following injected into the footer of a site of mine and, in an effort of solving the greater mystery ("How" it happened), I'm trying to decode it. Any ideas? Here's the code: ...
3
votes
3answers
1k views

How to decoding the string in iphone

I want to decode my string. I have used parsing and get a string from RSS feed. In a string these special characters are not allowed &,<,> in my app. In server side encoding those characters ...
3
votes
1answer
214 views

Can I turn off implicit Python unicode conversions to find my mixed-strings bugs?

When profiling our code I was surprised to find millions of calls to C:\Python26\lib\encodings\utf_8.py:15(decode) I started debugging and found that across our code base there are many small ...
3
votes
5answers
349 views

MD5 purpose or uses

If we can't decode the MD5 hash string, then what is the purpose of MD5 where can we use MD5.
3
votes
3answers
464 views

what's the current mp3 royalties/licensing situation

So i see a lot of software that has mp3 encoding and/or decoding and I'm pretty sure that they don't pay the royalties to Thomson as required here: http://mp3licensing.com/royalty/software.html So ...
3
votes
3answers
245 views

Query string value having “&”

I have a query string like www.google.com?Department=Education & Finance&Department=Health I have these as li tags and their query string is like this: Education & Finance Health Now ...
3
votes
3answers
232 views

Why does stdout decoding fail when adding carriage return?

The following java code does exactly what is expected: 1 String s = "♪♬♪♪♬♪♪♬♪♪♬♪♪♬♪♪♬♪"; 2 for(int i=0; i < s.length(); i++) 3 { 4 System.out.print(s.substring(i,i+1)); 5 ...
3
votes
5answers
553 views

Two Base64 encodings yield same decoding

Is it expected behavior that two encodings can map to the same decoding? I'm trying to troubleshoot a digital signature issue by doing sanity checks on base64-encoded intermediate strings. For ...
3
votes
5answers
2k views

What type of BarCode is this?

I am starting the process of writing an application, one part of which is to decode bar codes, however I'm off to a bad start. I am no bar code expert and this is not a common bar code type, so I'm in ...
3
votes
3answers
885 views

Decoding problems in Django and lxml

I have a strange problem with lxml when using the deployed version of my Django application. I use lxml to parse another HTML page which I fetch from my server. This works perfectly well on my ...
3
votes
1answer
1k views

Loading an AAC / MP3 file “manually”

For an application I'm creating, I need to be able to read AAC and MP3 files and get the waveform data (not play it directly, I need to manipulate the data before playing). Ideally, I should be able ...
2
votes
0answers
66 views

live streaming from wifi h.264 camera directly to iPhone

I have a standard WiFi h.264 camera that I use as a baby monitor which, in technical terms, means I need it to be as realtime as possible. My initial goal was to encode the stream from the camera as ...
2
votes
1answer
53 views

How to read the direction bit and source or destination of an assembly instruction

So I'm working on some code (for x86) where I need to get the source or destination point of an instruction. For this I need the direction bit which says whether ModRM or REG is the destination or ...
2
votes
3answers
116 views

Detect (or best guess of) incoming string encoding in Java

I was wondering if there are known methods to detect (or give a best guess of) the encoding of a particular string in Java. I know that you always need some additional meta-data to tell what the ...
2
votes
2answers
143 views

Decoding a base64 encoded binary string in C

I am trying to get my decoder code to work. I am using the example 64-bit encoded string from wikipedia, trying to reproduce the text they encoded. #include <stdio.h> //Convert raw binary ...
2
votes
1answer
265 views

Django Decoding UTF characters - \\u0411\\u0435\\u0441\\u0435\\u0434\\u043a\\u0430 - to cyrilic strings

I am using Django 1.3. Would you be so kind and answer me one question. I am reading data from my database, where encoding is set to untf8-unicode settings.py DEFAULT_CHARSET = 'utf-8' file.py # -*- ...
2
votes
1answer
208 views

C# - Create own Encoding for Roman8 charset

The Roman8 charset is not supported by C#, but I need to use it properly (Encoding / Decoding strings), so I want to know what is the best method to create my own Encoding in order to support this ...
2
votes
4answers
218 views

How to receive variables in a post in google app engine that contains string with chars like: õ á?

email = self.request.get('email') name = self.request.get('name') mail.send_mail(sender="myemail", email=email, body=name, subject="sss " + name + "sdafsaã") // added ã: the problem was that ...
2
votes
2answers
577 views

Lua, dealing with non-ascii byte streams, byteorder change

Need to encode & decode byte-stream (containing non-ascii characters possibly), from/into uint16, uint32, uint64 (their typical C/C++ meaning), taking care of endianness. What is an efficient ...
2
votes
2answers
2k views

Android byte[] to image in Camera.onPreviewFrame

When trying to convert the byte[] of Camera.onPreviewFrame to Bitamp using BitmapFactory.decodeByteArray gives me an error SkImageDecoder::Factory returned null Following is my code: public void ...
2
votes
4answers
417 views

How to encode and decode a jpeg file?

i want to encode and decode a jpg file in a windows app with C#. How can I do it this?
2
votes
1answer
302 views

TouchJSON Decoding Issue

I am trying to decode a JSON into an NSDictionary with many string pairs. Some of the returned strings return as &amp; instead of & and some of the non English characters appear as their url ...
2
votes
2answers
164 views

escape character & stopping parsing

I am trying to parse some data using nsxmlparser, whenever there is a &(ampersand) present in the text being received it just stops reading the parsed data. How can I read & normally, similar ...
2
votes
3answers
384 views

What is a good, platform-independend C library for MP3 decoding?

I'm looking for a good, open-source (preferably GPL, BSD or public domain), lightweight, cross-platform (at least Windows and any POSIX-compliant system) C library for MP3 decoding. It doesn't need to ...
2
votes
2answers
280 views

Class for reading MP3 files

I am writing a game that is a bit depending on the soundtrack so I want to read mp3 file and use it's data (like the speed of music, beat and stuff). Is there any class (preferably) I could use or ...
2
votes
5answers
239 views

Wanting to do base64 encoding but can't tolerate “+/=”

I need to encode a string of about 1000 characters that can be any byte value (00-FF). I don't want to use Hex because it's not dense enough. the problem with base64 as I understand it is that it ...
2
votes
2answers
1k views

Perl: utf8::decode vs. Encode::decode

I am having some interesting results trying to discern the differences between using Encode::decode("utf8", $var) and utf8::decode($var). I've already discovered that calling the former multiple ...

1 2 3 4 5