Page 1 of 1
Question about packetization in VLC
Posted: 04 Jan 2011 18:47
by happyboy
Hi all, I am analyzing how vlc packetize the file is.
Can anyone tell me which module or function is doing packetizer?
Thanks
Re: Question about packetization in VLC
Posted: 04 Jan 2011 21:57
by RĂ©mi Denis-Courmont
modules/packetizer/*
Re: Question about packetization in VLC
Posted: 10 Jan 2011 15:05
by happyboy
modules/packetizer/*
May I ask what copy.c, dirac.c and flac.c do?
Re: Question about packetization in VLC
Posted: 10 Jan 2011 18:05
by Jean-Baptiste Kempf
packetize for FLAC, Dirac and copy the input simply.
Re: Question about packetization in VLC
Posted: 10 Jan 2011 21:59
by happyboy
I am working on a project which stream the video to one P2P system and then stream out to another client PC.
Before streaming the video data to the P2P system, I need to packetize the video file to appropriate packet size.
May I ask which function I need so that I can packetize the file? I want to know how to use the libvlc.lib and libvlccore.lib function in my project( in my player).
The flow of my project:
stream the video file in my player( using libvlc.lib and libvlccore.lib) -> packetize the video file to appropriate packet size -> stream the packet to P2P system ->
depacketize the file packet and group together -> play the video in other client PC.