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

« back to all changes in this revision

Viewing changes to help/de/importingmpegts.page

  • Committer: Package Import Robot
  • Author(s): Sebastian Dröge
  • Date: 2014-04-05 15:28:16 UTC
  • mfrom: (6.1.13 sid)
  • Revision ID: package-import@ubuntu.com-20140405152816-6lijoax4cngiz5j5
Tags: 0.93-3
* debian/control:
  + Depend on python-gi (>= 3.10), older versions do not work
    with pitivi (Closes: #732813).
  + Add missing dependency on gir1.2-clutter-gst-2.0 (Closes: #743692).
  + Add suggests on gir1.2-notify-0.7 and gir1.2-gnomedesktop-3.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
      <email>nekohayo@gmail.com</email>
11
11
    </credit>
12
12
    <desc>
13
 
      How to convert .mts and .m2ts files to a format that can be parsed by GStreamer and PiTiVi.
 
13
      How to convert .mts and .m2ts files to a format that can be parsed by GStreamer and Pitivi.
14
14
    </desc>
15
15
    <license>
16
16
      <p>Creative Commons Share Alike 3.0</p>
17
17
    </license>
 
18
  
 
19
    <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
 
20
      <mal:name>Mario Blättermann</mal:name>
 
21
      <mal:email>mariobl@freenet.de</mal:email>
 
22
      <mal:years>2010, 2011</mal:years>
 
23
    </mal:credit>
 
24
  
 
25
    <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
 
26
      <mal:name>Marcel Tiede</mal:name>
 
27
      <mal:email>marcel.tiede@yahoo.de</mal:email>
 
28
      <mal:years>2014</mal:years>
 
29
    </mal:credit>
 
30
  
 
31
    <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
 
32
      <mal:name>Benjamin Steinwender</mal:name>
 
33
      <mal:email>b@stbe.at</mal:email>
 
34
      <mal:years>2014</mal:years>
 
35
    </mal:credit>
 
36
  
 
37
    <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
 
38
      <mal:name>Christian Kirbach</mal:name>
 
39
      <mal:email>christian.kirbach@gmail.com</mal:email>
 
40
      <mal:years>2014</mal:years>
 
41
    </mal:credit>
18
42
  </info>
19
43
    <!-- TODO: remove this manual page when gstreamer supports mpeg-ts files !-->
20
44
    <title>Umgang mit AVCHD- und MPEG-TS-Dateien</title>
21
45
 
22
46
     <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>
23
 
    <code>ffmpeg -i your_clip.MTS -vcodec copy -acodec copy -sn test.mp4</code>
 
47
    <code>ffmpeg -i clip.MTS -vcodec copy -acodec copy -sn test.mp4</code>
24
48
 
25
49
</page>