
Recherche avancée
Autres articles (101)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
Sur d’autres sites (11155)
-
Revision e15b535791 : Copy PIC handling code from x86_abi_support Change-Id : Ifcd9493802f0c957d7a3b16
28 juillet 2015, par JohannChanged Paths :
Modify /third_party/x86inc/README.libvpx
Modify /third_party/x86inc/x86inc.asm.new
Copy PIC handling code from x86_abi_supportChange-Id : Ifcd9493802f0c957d7a3b16ce641b989e166792f
-
Revision c7e1d25b00 : Remove unused copy src frame function Change-Id : I03798e387a656473b6ec004246e2b
16 juillet 2014, par JohannChanged Paths :
Delete /vpx_scale/arm/neon/vp8_vpxyv12_copysrcframe_func_neon.asm
Modify /vpx_scale/vpx_scale.mk
Remove unused copy src frame functionChange-Id : I03798e387a656473b6ec004246e2b882c8c6bb84
-
FFmpeg re-wrap of a TS-AAC audio transport stream file to M4A-AAC : what happens by default (no "-codec copy" etc.) ?
22 avril 2022, par espWhat happens if you simply do
ffmpeg -i aFile.ts aFile.m4a
as opposed toffmpeg -i aFile.ts -codec copy aFile.m4a
, when the TS file contains only a single stream, namely AAC, and knowing that m4a files also typically contain AAC.

Does ffmpeg - even in the absence of any filters etc. - decode the original AAC and re-encode back to AAC (with whatever default parameters ffmpeg assumes for that - not necessarily matching those of the original) ? Or does it do something else ?


I tried this both with and without "-codec copy" and the results in each case were AAC but the files were significantly different in size (Original TS : 8.5 MB, ffmpeg'd without "-codec copy" 7 MB, ffmpeg'd with latter 5.1 MB.


At https://ffmpeg.org/ffmpeg.html it is stated (under "3.2 Stream copy"...




Stream copy is a mode selected by supplying the copy parameter to the
-codec option. It makes ffmpeg omit the decoding and encoding step for the specified stream, so it does only demuxing and muxing. It is
useful for changing the container format or modifying container-level
metadata.
Implied by the inverse of that situation is that, in the absence of "-codec copy", ffmpeg will carry out the decoding and encoding steps.