Home
last modified time | relevance | path

Searched refs:MP4 (Results 51 – 75 of 2186) sorted by relevance

12345678910>>...88

/dports/multimedia/Bento4/Bento4-1.6.0-639/Documents/MkDocs/src/developers/dash/
H A Dsubtitles.md5 …e encapsulated in MP4 tracks, just like audio and video frames, or may be stored in a separate, st…
27 This is the simplest mode to support, as no MP4 encapsulation is necessary, so a simple WebVTT text…
28 When the subtitles are in non-MP4 external files, the input filenames must be prefixed with an inpu…
45 ## MP4-Encapsulated Subtitles
46 MPEG- 4 Part 30 (ISO/IEC 14496-30) defines a way to carry IMSC1-conformat TTM XML in MP4 tracks. Th…
47 When the subtitles are encapsulated in MP4 tracks, you must specify the `--subtitles` command line …
49 !!! example "Example: single MP4 input file that contains video, audio and subtitles tracks"
54 !!! example "Example: separate MP4 file for video/audio and subtitles"
H A Dindex.md9 * ISO/IEC 23001-7 specifies the Common Encryption for MP4 fragments
10 …3 specifies the extensions to 14496-12 that are necessary to support DASH with fragmented MP4 media
45MP4 content, you need to start with fragmented MP4 files. The input files you will be working with…
46 …if an MP4 file is fragmented or not: here’s an example of what you would see in the `Movie:` part …
57 If you have non-fragmented MP4 files, you can use the mp4fragment tool to fragment them.
66MP4 files, and as such can be used as input to `mp4dash`. However, most legacy tools (encoder and …
67 …roblem by refragmenting your ISMV and ISMA files into compliant fragmented MP4 files, using the `m…
104MP4 files to work with as input, you can generate a DASH presentation, including an MPD and media …
109 !!! example "Example: single MP4 input file"
117MP4 files that have been encoded with closed GOPs (Group Of Pictures) with equal durations. Also, …
[all …]
/dports/multimedia/musique/musique-1.10.1/src/tags/
H A Dmp4utils.h11 void load(TagLib::MP4::Tag *tag, Tags *tags) { in load()
12 const TagLib::MP4::ItemListMap &map = tag->itemListMap(); in load()
15 TagLib::MP4::Item::IntPair intPair = map["trkn"].toIntPair(); in load()
20 TagLib::MP4::Item::IntPair intPair = map["disk"].toIntPair(); in load()
34 TagLib::MP4::ItemListMap::ConstIterator it = map.find("aART"); in load()
/dports/audio/taglib/taglib-1.12/
H A DNEWS8 * Added support for 'cmID', 'purl', 'egid' MP4 atoms.
22 * Fixed parsing MP4 mdhd timescale.
23 * Fixed reading MP4 atoms with zero length.
26 * Fixed handling of 'rate' atoms in MP4 files.
130 * Fixed crash when parsing corrupted MP4 files.
133 * Added TagLib::MP4::Tag::isEmpty().
134 * Added accessors to manipulate MP4 tags.
155 * Added TagLib::MP4::Properties::codec().
201 * Support for MP4 and ASF is now enabled by default.
303 * Support for parsing the obsolete 'gnre' MP4 atom.
[all …]
/dports/multimedia/p5-MP4-Info/MP4-Info-1.13/
H A DREADME4 MP4::Info - Fetch info from MPEG-4 files (.mp4, .m4a, .m4p, .3gp)
15 The MP4::Info module can be used to extract tag and meta information
25 use MP4::Info;
34 my $mp4 = new MP4::Info $file;
53 http://search.cpan.org/~jhar/MP4-Info/
/dports/multimedia/quodlibet/quodlibet-4.3.0/quodlibet/formats/
H A Dmp4.py9 from mutagen.mp4 import MP4, MP4Cover
82 audio = MP4(filename)
115 audio = MP4(self["~filename"])
162 tag = MP4(self["~filename"])
182 tag = MP4(self["~filename"])
204 tag = MP4(self["~filename"])
222 tag = MP4(self["~filename"])
/dports/devel/py-cclib/cclib-1.7.1/data/Molpro/basicMolpro2018/
H A Dh2o_mp4.out217 MP4(T) terms to be evaluated (factor= 0.000)
248 MP4(DQ): -0.21172788 -76.23661778 -0.00169764
249 MP4(SDQ): -0.21246409 -76.23735399 -0.00073621
261 MP4(SDQ) singlet pair energy -0.140153172592
262 MP4(SDQ) triplet pair energy -0.071574709010
263 MP4(SDQ) correlation energy -0.212464093449
268 MP4(SDQ) total energy -76.237353989717
269 !MP4(SDTQ) total energy -76.240439044545
295 PROGRAMS * TOTAL MP4 HF-SCF INT
305 MP4/cc-pVDZ energy= -76.240439044545
[all …]
/dports/multimedia/musikcube/musikcube-0.96.7/src/plugins/taglib_plugin/taglib-1.11/
H A DNEWS7 * Added support for 'cmID', 'purl', 'egid' MP4 atoms.
13 * Fixed reading MP4 atoms with zero length.
16 * Fixed handling of 'rate' atoms in MP4 files.
90 * Fixed extraction of MP4 tag keys with an empty list.
117 * Fixed crash when parsing corrupted MP4 files.
120 * Added TagLib::MP4::Tag::isEmpty().
121 * Added accessors to manipulate MP4 tags.
142 * Added TagLib::MP4::Properties::codec().
188 * Support for MP4 and ASF is now enabled by default.
290 * Support for parsing the obsolete 'gnre' MP4 atom.
[all …]
/dports/security/keybase/client-v5.7.1/go/chat/giphy/
H A Dsearch.go28 if len(img.MP4) == 0 && len(img.URL) == 0 {
31 if len(img.MP4) == 0 {
38 return img.MP4, true, nil
43 return img.MP4, true, nil
54 if len(img.MP4) == 0 && len(img.URL) == 0 {
57 if len(img.MP4) == 0 {
60 return adorn(img.MP4, true, img), nil
/dports/multimedia/musique/musique-1.10.1/src/
H A Dcoverutils.cpp156 TagLib::MP4::File f((TagLib::FileName)filename.toUtf8()); in coverFromMP4()
159 TagLib::MP4::Tag *tag = static_cast<TagLib::MP4::Tag *>(f.tag()); in coverFromMP4()
162 TagLib::MP4::ItemListMap itemsListMap = tag->itemListMap(); in coverFromMP4()
163 TagLib::MP4::Item coverItem = itemsListMap["covr"]; in coverFromMP4()
164 TagLib::MP4::CoverArtList coverArtList = coverItem.toCoverArtList(); in coverFromMP4()
165 TagLib::MP4::CoverArt coverArt = coverArtList.front(); in coverFromMP4()
/dports/audio/mixxx/mixxx-2.3.0/src/track/taglib/
H A Dtrackmetadata_mp4.h15 const TagLib::MP4::Tag& tag);
19 const TagLib::MP4::Tag& tag);
22 TagLib::MP4::Tag* pTag,
/dports/devel/py-cclib/cclib-1.7.1/data/Molpro/basicMolpro2012/
H A Dh2o_mp4.out215 1PROGRAM * MP4 (Closed-shell) Authors: C. Hampel, H.-J. Werner, 1991, M. Deegan, P.J. Knowles, …
220 MP4(T) terms to be evaluated (factor= 0.000)
251 MP4(DQ): -0.21172788 -76.23661778 -0.00169764
252 MP4(SDQ): -0.21246409 -76.23735399 -0.00073621
264 MP4(SDQ) singlet pair energy -0.140153172663
265 MP4(SDQ) triplet pair energy -0.071574709111
266 MP4(SDQ) correlation energy -0.212464093519
271 MP4(SDQ) total energy -76.237353989787
272 !MP4(SDTQ) total energy -76.240439044647
299 PROGRAMS * TOTAL MP4 HF INT
[all …]
/dports/multimedia/handbrake/HandBrake-1.4.2/macosx/ru.lproj/
H A DHBSummaryViewController.strings13 … frames. May improve audio/video sync for broken players that do not honor MP4 edit lists."; Objec…
14 …ронизацию аудио/видео для сломанных проигрывателей, которые игнорируют списки редактирования MP4.";
19 /* Class = "NSButton"; ibShadowedToolTip = "Optimize MP4 for progressive download. After encoding, …
20 "lUi-Oc-208.ibShadowedToolTip" = "Оптимизировать MP4 для прогрессивной загрузки. После кодирования,…
31 /* Class = "NSButton"; ibShadowedToolTip = "Add a special MP4 marker to allow playback on vintage i…
32 "QKv-GR-d2g.ibShadowedToolTip" = "Добавить специальный MP4-маркер для возможности воспроизведения н…
/dports/audio/mpz/mpz-1.0.19/app/coverart/
H A Dembedded.cpp66 TagLib::MP4::File f(filepath.toUtf8().constData()); in m4a()
67 TagLib::MP4::Tag* tag = f.tag(); in m4a()
69 TagLib::MP4::ItemMap itemsListMap = tag->itemMap(); in m4a()
70 TagLib::MP4::Item coverItem = itemsListMap["covr"]; in m4a()
71 TagLib::MP4::CoverArtList coverArtList = coverItem.toCoverArtList(); in m4a()
73 TagLib::MP4::CoverArt coverArt = coverArtList.front(); in m4a()
/dports/audio/sayonara/sayonara-player-5bbf1399332d5d59362ad03bf625f9132be72206/src/Utils/Tagging/
H A DTaggingCover.cpp123 else if(tagType == Tagging::TagType::MP4) in writeCoverToTag()
125 auto frame = MP4::CoverFrame(parsedTag.mp4Tag()); in writeCoverToTag()
150 else if(parsedTag.type == Tagging::TagType::MP4) in readCoverFromTag()
152 return readCoverFrame(MP4::CoverFrame(parsedTag.mp4Tag())); in readCoverFromTag()
250 case Tagging::TagType::MP4: in hasCover()
251 return isCoverFrameAvailable(MP4::CoverFrame(parsedTag.mp4Tag())); in hasCover()
279 (parsedTag.type == Tagging::TagType::ID3v2 || parsedTag.type == Tagging::TagType::MP4); in isCoverSupported()
/dports/multimedia/handbrake/HandBrake-1.4.2/macosx/fr.lproj/
H A DHBSummaryViewController.strings13 … frames. May improve audio/video sync for broken players that do not honor MP4 edit lists."; Objec…
14 …hronisation audio/vidéo pour les lecteurs cassés qui ne respectent pas les listes de montage MP4.";
19 /* Class = "NSButton"; ibShadowedToolTip = "Optimize MP4 for progressive download. After encoding, …
20 "JNB-kV-52S.ibShadowedToolTip" = "Optimiser MP4 pour le téléchargement progressif. Après le codage,…
22 /* Class = "NSButton"; ibShadowedToolTip = "Optimize MP4 for progressive download. After encoding, …
23 "lUi-Oc-208.ibShadowedToolTip" = "Optimiser MP4 pour le téléchargement progressif. Après le codage,…
37 /* Class = "NSButton"; ibShadowedToolTip = "Add a special MP4 marker to allow playback on vintage i…
38 "QKv-GR-d2g.ibShadowedToolTip" = "Ajoute un marqueur MP4 spécial permettant la lecture sur les anci…
/dports/multimedia/handbrake/HandBrake-1.4.2/macosx/it.lproj/
H A DHBSummaryViewController.strings19 … frames. May improve audio/video sync for broken players that do not honor MP4 edit lists."; Objec…
20 …izzazione audio/video su riproduttori non conformi che non rispettano gli elenchi di modiche MP4.";
25 /* Class = "NSButton"; ibShadowedToolTip = "Optimize MP4 for progressive download. After encoding, …
26 "JNB-kV-52S.ibShadowedToolTip" = "Ottimizza MP4 per il download progressivo. Dopo la codifica, i da…
28 /* Class = "NSButton"; ibShadowedToolTip = "Optimize MP4 for progressive download. After encoding, …
29 "lUi-Oc-208.ibShadowedToolTip" = "Ottimizza MP4 per il download progressivo. Dopo la codifica, i da…
43 /* Class = "NSButton"; ibShadowedToolTip = "Add a special MP4 marker to allow playback on vintage i…
44 "QKv-GR-d2g.ibShadowedToolTip" = "Aggiungi un marcatore MP4 speciale per consentire la riproduzione…
/dports/multimedia/handbrake/HandBrake-1.4.2/macosx/de.lproj/
H A DHBSummaryViewController.strings19 … frames. May improve audio/video sync for broken players that do not honor MP4 edit lists."; Objec…
20 …-Synchronisation bei manchen defekten Abspielgeräten verbessern, die keine MP4-Bearbeitungslisten …
25 /* Class = "NSButton"; ibShadowedToolTip = "Optimize MP4 for progressive download. After encoding, …
26 "JNB-kV-52S.ibShadowedToolTip" = "Optimiert MP4 für den schrittweißen Download. Nach der Encodierun…
28 /* Class = "NSButton"; ibShadowedToolTip = "Optimize MP4 for progressive download. After encoding, …
29 "lUi-Oc-208.ibShadowedToolTip" = "Optimiert MP4 für den schrittweißen Download. Nach der Encodierun…
43 /* Class = "NSButton"; ibShadowedToolTip = "Add a special MP4 marker to allow playback on vintage i…
44 "QKv-GR-d2g.ibShadowedToolTip" = "Fügt einen speziellen MP4-Marker hinzu um das Abspielen auf alten…
/dports/audio/easytag/easytag-2.4.3/src/tags/
H A Dmp4_header.cc35 const TagLib::MP4::Properties *properties; in et_mp4_header_read_file_info()
62 TagLib::MP4::File mp4file (&stream); in et_mp4_header_read_file_info()
87 case TagLib::MP4::Properties::AAC: in et_mp4_header_read_file_info()
90 case TagLib::MP4::Properties::ALAC: in et_mp4_header_read_file_info()
93 case TagLib::MP4::Properties::Unknown: in et_mp4_header_read_file_info()
/dports/devel/py-cclib/cclib-1.7.1/data/Molpro/basicMolpro2006/
H A Dh2o_mp4.out24MP4 !fourth-order Moel…
214 1PROGRAM * MP4 (Closed-shell) Authors: C. Hampel, H.-J. Werner, 1991, M. Deegan, P.J. Knowles, …
219 MP4(T) terms to be evaluated (factor= 0.000)
249 MP4(DQ): -0.21172788 -76.23661778 -0.00169764
250 MP4(SDQ): -0.21246409 -76.23735399 -0.00073621
262 MP4(SDQ) singlet pair energy 0.000000000000
263 MP4(SDQ) triplet pair energy 0.000000000000
268 MP4(SDTQ) triples contribution -0.003085054983
269 !MP4(SDTQ) STATE 1.1 ENERGY -76.240439045439
290 PROGRAMS * TOTAL MP4 HF INT
[all …]
/dports/audio/py-mutagen/mutagen-1.42.0/docs/api/
H A Dmp4.rst1 MP4 chapter
6 MP4 section in MP4
9 .. autoclass:: mutagen.mp4.MP4
/dports/devel/upp/upp/uppsrc/Core/
H A DCallbackN.i36 #define classP class P1, class P2, class P3, class P4, class MP1, class MP2, class MP3, class MP4
37 #define MP_ MP1, MP2, MP3, MP4
45 …s P1, class P2, class P3, class P4, class P5, class MP1, class MP2, class MP3, class MP4, class MP5
46 #define MP_ MP1, MP2, MP3, MP4, MP5
/dports/multimedia/quodlibet/quodlibet-4.3.0/tests/
H A Dtest_formats_mp4.py46 tag = mutagen.mp4.MP4(self.f)
53 tag = mutagen.mp4.MP4(self.f)
107 tag = mutagen.mp4.MP4(self.f)
110 tag = mutagen.mp4.MP4(self.f)
137 tag = mutagen.mp4.MP4(self.f)
151 tag = mutagen.mp4.MP4(self.f)
/dports/multimedia/handbrake/HandBrake-1.4.2/macosx/pt-BR.lproj/
H A DHBSummaryViewController.strings19 … frames. May improve audio/video sync for broken players that do not honor MP4 edit lists."; Objec…
20 …orar a sincronização de áudio/vídeo para jogadores quebrados que não honram listas de edição MP4.";
25 /* Class = "NSButton"; ibShadowedToolTip = "Optimize MP4 for progressive download. After encoding, …
26 "JNB-kV-52S.ibShadowedToolTip" = "Otimize MP4 para download progressivo. Após a codificação, os dad…
28 /* Class = "NSButton"; ibShadowedToolTip = "Optimize MP4 for progressive download. After encoding, …
29 "lUi-Oc-208.ibShadowedToolTip" = "Otimize MP4 para download progressivo. Após a codificação, os dad…
43 /* Class = "NSButton"; ibShadowedToolTip = "Add a special MP4 marker to allow playback on vintage i…
44 "QKv-GR-d2g.ibShadowedToolTip" = "Adicione um marcador MP4 especial para permitir a reprodução em d…
/dports/audio/faad/faad2-c626366/
H A Din_mpeg4aac.nsi1 Name "AudioCoding.com MP4 Winamp plugin"
6 ComponentText "This will install the AudioCoding.com MP4 Winamp plugin on your computer."
17 Section "AudioCoding.com MP4 Winamp plugin"

12345678910>>...88