
Advanced search
Other articles (19)
-
Keeping control of your media in your hands
13 April 2011, byThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Creating farms of unique websites
13 April 2011, byMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things): implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Submit bugs and patches
13 April 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information: the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
On other websites (5690)
-
avformat/assenc: avoid incorrect copy of null terminator
28 March 2023, by Marton Balintavformat/assenc: avoid incorrect copy of null terminator
When writing a subtitle SSA/ASS subtitle file, the AVCodecParameters::extradata
buffer is written directly to the output. In the case where the buffer is
filled from a matroska source file produced by some older versions of
Handbrake, this buffer ends with a null terminating character, which is then
erroneously copied into the middle of the output file. The change here avoids
this problem by treating it as a string rather than a raw buffer. This way it
is agnostic as to whether the source buffer was null terminated or not.Fixes ticket #10203.
Reported-by: Tim Angus <tim at ngus.net>
Signed-off-by: Marton Balint <cus@passwd.hu> -
oggenc: remove unneeded null check
24 October 2014, by Michael Niedermayer -
How to get null audio packet?
27 May 2022, by dgsgsdgsgdhddhgI want to add null audio stream. In the ffmpeg command line tool I could do:


-re -f lavfi -i anullsrc



But I don't know how to do it in the code. Based on this: https://ffmpeg.org/doxygen/trunk/filter_audio_8c-example.html#a12
I reckon I could create a fake frame, feed it to a filter graph, read the output, use some encoder (?) and maybe I would get it working. But that would seem like a rather ugly workaround.


Edit:


Essentially I just want to create
AVPacket
instance with audio coming from anullsrc filter/input.