Hi,
Is it possible to send the output of the x265 encoder using MPEG2 TS, encapsulated with both audio and encoded video?
Thank you.
+ Reply to Thread
Results 1 to 9 of 9
-
-
No, x265 itself does only handle video. It's a video encoder.
If you want audio&video handling you should use something like ffmpeg, which supports and is compiled with libx265.
(Or you need to process audio&video separately and demux, decode, encode, mux them in separate steps.)users currently on my ignore list: deadrats, Stears555, marcorocchini -
@selur thanks for your reply..
Now i am using ffmpeg. I managed to get the webcamera input and encode them using libx265. And the code is now working. My new requirment is to get the audio as well. But its not clear to me how to sync the hevc encoded video and say aac encoded audio after decoding them. Is there a perticular way to do this?? And also is libx265 support decoding as well??
Thank you. -
Is there a perticular way to do this??
Without really knowing what your command line look like at least I can't really advise more than to read some of the ffmpeg documenations out in the web.
And also is libx265 support decoding as well??
@moderators: Since this is the official x265 encoder thread, could someone separate athukoralakasuns requests/questions into a separate thread, since they are not really about the x265 encoder, but more a general usage problem.users currently on my ignore list: deadrats, Stears555, marcorocchini -
Actually i am trying to write a code rather than using the CLI program to do this... my requirement is to send aac encoded audio and hevc encoded video through a TS link and decode them at the other end.. at the moment i hav done the hevc encoding.. i need to figure out how to sync the audio and video at the decoder end..
Hope som1 can point me in the right direction. .
Thank you..