python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
ffmpeg copies packet pts to frame pts during audio decoding without time base conversion
I have the MKV file. I am taking an audio stream from it and using ffmpeg and its opus decoder to decode audio packets into audio frames.
The problem is that the resulting frames have unexpected prese...

yaskovdev
Votes: 0
Answers: 0
Can I open any file with any extension using python?
I am a new coder and I don't know very much about python. While surfing in Internet I found that you can open files through python. So my question is that can I open any file extension/custom file ext...
Newbie Coder
Votes: 0
Answers: 1
Method to encode a given text using an already constructed Huffman coding tree
Write a method that encodes a given text using an already constructed Huffman coding tree. The fields in the Node class are; String value, Float frequency, Node left, Node
right.
Huffman Node class:
p...
Oğuzhan Atalay
Votes: 0
Answers: 0
Decoding JSON structure in Swift when parent name varies?
I am making an API call which returns the following JSON structure (price info about various cryptocurrencies):
{
"bitcoin": {
"gbp": 34532
},
"ethereum": {
...
TOPCOD3R
Votes: 0
Answers: 2