Skip to content
Snippets Groups Projects
  1. Aug 19, 2012
  2. Aug 14, 2012
  3. Aug 11, 2012
  4. Aug 10, 2012
  5. Aug 09, 2012
  6. Aug 05, 2012
  7. Aug 04, 2012
    • Nicolas George's avatar
      ffmpeg: insert bitmap subtitles as video in filters. · 88fc1438
      Nicolas George authored
      With this feature, it becomes possible to perform commonly
      requested tasks, such as hardcoding bitmap subtitles.
      
      This will be reverted once libavfilter has proper support
      for subtitles. All the changes have the string "sub2video"
      in them, it makes it easy to spot the parts.
      88fc1438
  8. Aug 01, 2012
    • Clément Bœsch's avatar
      ffmpeg: honor -ss and -t parameters with muxed subtitles. · 53a3748e
      Clément Bœsch authored
      This patch fixes two things:
      
       - in case of subtitles, check_recording_time() is comparing the current
         PTS to the recording time (-t option, set to INT_MAX by default), so
         the -ss option needs to be taken into account. It is not required in
         do_{audio,video}_out() because this adjustment is set while polling
         the filtergraph (see poll_filters()).
      
       - It also adjusts the PTS sent to the encoder (and later transmitted to
         the muxer) so the TS in the output make sense and are not kept
         verbatim.
      
      Note: this only works for muxers honoring the PTS, such as
      lavf/matroskaenc. But for other such as the ASS muxer which just does a
      verbatim copy, or the SubRip muxer which doesn't write the TS in some
      cases, it will not work yet.
      53a3748e
  9. Jul 31, 2012
  10. Jul 30, 2012
  11. Jul 28, 2012
  12. Jul 26, 2012
  13. Jul 25, 2012
  14. Jul 24, 2012
  15. Jul 23, 2012
    • Nicolas George's avatar
      ffmpeg: select input file based on output time. · 1cadab60
      Nicolas George authored
      Filters can change the timings, so input files must not
      necessarily be read at the same rythm. This patch select
      the input file to read based on the timestamp at output
      instead of input. With complex filter graphs, finding the
      input for a given output is done by making a request and
      checking to what buffer source it has been forwarded.
      1cadab60
  16. Jul 20, 2012
    • Nicolas George's avatar
      ffmpeg: probe buffersinks once more after EOF. · bf8ce5a5
      Nicolas George authored
      Reap buffers stored in the buffer sinks even when
      the avfilter_graph_request_oldest() loop only returns EOF.
      
      avfilter_graph_request_oldest() can cause frames to arrive
      to the sinks even when it returns EOF.
      bf8ce5a5
  17. Jul 19, 2012
  18. Jul 18, 2012
  19. Jul 16, 2012
  20. Jul 14, 2012
  21. Jul 13, 2012
  22. Jul 12, 2012
  23. Jul 06, 2012
  24. Jul 04, 2012
    • Nicolas George's avatar
      ffmpeg: rework checks for the -t option. · 2fc354f9
      Nicolas George authored
      This commit is based on libav's implementation and
      makes sure to compare output timestamps together.
      It also reduces the differences with avconv.
      
      The changes to the test reference files are caused
      by an additional packet at the end, the timestamp
      of the frame encoded by this packet is always
      strictly below the limit stated by the -t option.
      2fc354f9
Loading