2

I want to capture live video streams to .mp4 file. I have downloaded H264 DS Filter from http://hax264.sourceforge.net/. I want to generate Graph using GraphEdit utility of DirectShow. Can anyone please help me to achieve this?

Thank you.

Ralf
  • 9,405
  • 2
  • 28
  • 46
Dhaval Kariya
  • 59
  • 2
  • 8

1 Answers1

4

It's not possible with the link you posted:

HAX264 is a DirectShow Video Transform Filter for decoding H264(AVC) video

You can try the x264 DirectShow filter from Monogram or our open source H264 DirectShow source filter that implements limited parts of the H.264 specification.

You may also want to take a look at Geraint Davies' mp4 mux.

Ralf
  • 9,405
  • 2
  • 28
  • 46
  • very useful infromation. – Dhaval Kariya May 07 '12 at 08:20
  • I'd also explicitly mention in the answer that HAX264 is a *decoding* filter, while what is clearly being asked in the question is how to *encode* ("compress") a captured stream [into an MP4 container with a H.264 video track]. – Armen Michaeli Feb 27 '20 at 10:58