~timo-jyrinki/ubuntu/trusty/pitivi/backport_utopic_fixes

« back to all changes in this revision

Viewing changes to help/C/importingmpegts.page

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Bicha
  • Date: 2011-08-15 02:32:20 UTC
  • mfrom: (1.5.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20110815023220-x2n5l0i4deiqn7dn
Tags: 0.14.2-0ubuntu1
* New upstream version.
  - New Mallard format help
* debian/control:
  - Add gnome-doc-utils to build-depends
  - Bump pygtk minimum to 2.24
* debian/patches/01_lpi.patch
  - Move LPI items below User Manual in Help menu
* debian/watch: Watch for 0.14.* tar.bz2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<page xmlns="http://projectmallard.org/1.0/"
 
2
      xmlns:e="http://projectmallard.org/experimental/"
 
3
      type="topic"
 
4
      id="importingmpegts">
 
5
 
 
6
  <info>
 
7
    <link type="seealso" xref="importing"/>
 
8
    <link type="seealso" xref="gstreamer"/>
 
9
    <revision pkgversion="0.14" version="0.1" date="2011-06-05" status="complete"/>
 
10
    <credit type="author">
 
11
      <name>Jean-François Fortin Tam</name>
 
12
      <email>nekohayo@gmail.com</email>
 
13
    </credit>
 
14
    <desc>
 
15
      How to convert .mts and .m2ts files to a format that can be parsed by GStreamer and PiTiVi.
 
16
    </desc>
 
17
    <license>
 
18
      <p>Creative Commons Share Alike 3.0</p>
 
19
    </license>
 
20
  </info>
 
21
    <!-- TODO: remove this manual page when gstreamer supports mpeg-ts files !-->
 
22
    <title>Dealing with AVCHD / MPEG-TS files</title>
 
23
 
 
24
     <p>At the time being, MPEG Transport Stream files (usually with file extensions such as .mts, .m2ts and sometimes .mpg or .mpeg), such as those used by some HD camcorders, cannot be played reliably with <app>GStreamer</app>. As such, you may want to remux them in a different container format by using <app>ffmpeg</app>. To convert losslessly to an MPEG4 container, you can use the following command:</p>
 
25
    <code>ffmpeg -i your_clip.MTS -vcodec copy -acodec copy -sn test.mp4</code>
 
26
 
 
27
</page>