-
Notifications
You must be signed in to change notification settings - Fork 4
avformat/segment: Various segment muxer improvements #96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
11124d5 to
88a8dc7
Compare
|
/submit |
|
Submitted as [email protected] To fetch this version into To fetch this version to local tag |
Allows to write segments as temp files (.tmp) which are renamed on completion. Signed-off-by: softworkz <[email protected]>
Example use case: Existing segments 0-30 and 70-99, 31-69 need to be created. This option allows to stop precisely after 69. Otherwise it would start overwriting segment 70 before stopping via 'q' or break signal. Signed-off-by: softworkz <[email protected]>
Use case is to keep early content out of the first segment when not starting from zero. Signed-off-by: softworkz <[email protected]>
Signed-off-by: softworkz <[email protected]>
Signed-off-by: softworkz <[email protected]>
Signed-off-by: softworkz <[email protected]>
88a8dc7 to
cb32675
Compare
|
/submit |
|
Submitted as [email protected] To fetch this version into To fetch this version to local tag |
| char *reference_stream_specifier; ///< reference stream specifier | ||
| int reference_stream_index; | ||
| int64_t reference_stream_first_pts; ///< initial timestamp, expressed in microseconds | ||
| int break_non_keyframes; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
On the FFmpeg mailing list, Michael Niedermayer wrote (reply to this):
--===============8122640100284245730==
Content-Type: multipart/signed; micalg=pgp-sha512;
protocol="application/pgp-signature"; boundary="8AfFfcQwKZvQE1LI"
Content-Disposition: inline
--8AfFfcQwKZvQE1LI
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable
On Sat, Jun 14, 2025 at 12:59:10AM +0000, softworkz wrote:
> From: softworkz <[email protected]>
>=20
> Signed-off-by: softworkz <[email protected]>
> ---
> libavformat/segment.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
should be ok
thx
[...]
--=20
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB
Frequently ignored answer#1 FFmpeg bugs should be sent to our bugtracker. U=
ser
questions about the command line tools should be sent to the ffmpeg-user ML.
And questions about how to use libav* should be sent to the libav-user ML.
--8AfFfcQwKZvQE1LI
Content-Type: application/pgp-signature; name="signature.asc"
-----BEGIN PGP SIGNATURE-----
iF0EABEKAB0WIQSf8hKLFH72cwut8TNhHseHBAsPqwUCaE3eQAAKCRBhHseHBAsP
q266AJ9SI6yx8cvPZxKopJww1UchP4vodwCfYzQTYFxFp6OFaHU9o8q8Oh9eDtQ=
=LqfM
-----END PGP SIGNATURE-----
--8AfFfcQwKZvQE1LI--
--===============8122640100284245730==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
_______________________________________________
ffmpeg-devel mailing list
[email protected]
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
[email protected] with subject "unsubscribe".
--===============8122640100284245730==--
Includes
Allows to write segments as temp files (.tmp) which are renamed on completion
Stop after n segments have been written
Versions
V2
(as per review by Marton - thanks!)
.