
Recherche avancée
Autres articles (99)
-
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 (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ; -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (9411)
-
avformat/westwoodaudenc : Adds muxer for Westwood AUD format.
25 avril 2021, par Aidan Richmondavformat/westwoodaudenc : Adds muxer for Westwood AUD format.
Format is still used by modders of these old games.
Reviewed-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Signed-off-by : Aidan Richmond <aidan.is@hotmail.co.uk>
Signed-off-by : Zane van Iperen <zane@zanevaniperen.com> -
avformat/argo_brp : allow v1.1 ASF streams to have a non-22050 sample rate in certain...
25 septembre 2020, par Zane van Iperenavformat/argo_brp : allow v1.1 ASF streams to have a non-22050 sample rate in certain circumstances
It seems that in files where the BASF block isn't first, v1.1 ASF streams are
allowed to be non-22050. Either this format is really inconsistent, or
FX Fighter and Croc just ignored the sample rate field, requiring the v1.1
restriction in the first place.This bumps the version to 1.2 in these streams so they're not "corrected".
Found in Alien Odyssey games files in :
./GRAPHICS/COMMBUNK/COMADD1,COMM2_1,2,3E,COMM3_2,3,4,5,6,FADE1,2.BRPSigned-off-by : Zane van Iperen <zane@zanevaniperen.com>
-
How to compile ffmpeg in yocto to get a working binary
3 novembre 2020, par Dharma BIn our yocto project,the SDK has default "poky/meta/recipes-multimedia/ffmpeg/ffmpeg_3.3.3.bb" bb file. and this is our bbappend file
meta-qti-bsp/recipes-multimedia/ffmpeg/ffmpeg_%.bbappend


EXTRA_OEMAKE = ""

FILES_${PN} += "/lib/lib*.so.*" FILES_${PN} += "/lib/pkgconfig/*" FILES_${PN}-dev += "/usr/share/*" FILES_${PN}-dev += "/lib/lib*.so"

PACKAGECONFIG = "avdevice avfilter avcodec avformat swresample swscale postproc bzlib gpl theora"

# Support multilib compilation for libav PROVIDES += "${MLPREFIX}libav"

EXTRA_CFLAGS_append += " -fPIC" EXTRA_CFLAGS_append += " ${@ bb.utils.contains('TUNE_FEATURES', 'callconvention-hard', '-mfloat-abi=hard', '', d)}" EXTRA_CFLAGS_append += " ${@ bb.utils.contains('TUNE_FEATURES', 'neon', '-mfpu=neon', '', d)}" EXTRA_CFLAGS_append += " ${@ bb.utils.contains('TUNE_FEATURES', 'armv7a', '-march=armv7-a', '', d)}" EXTRA_CFLAGS_append += " ${@ bb.utils.contains('TUNE_FEATURES', 'cortexa8', '-mtune=cortex-a8', '', d)}"

EXTRA_OECONF_append += " \
 --target-os=linux --sysroot=${STAGING_DIR_TARGET} --arch=${TARGET_ARCH} --disable-mmx \
 --enable-shared --disable-doc --disable-htmlpages --disable-manpages --disable-podpages \
 --disable-txtpages --enable-small --disable-debug --disable-ffserver --disable-ffplay \
 --extra-cflags="${EXTRA_CFLAGS}" --disable-network --disable-zlib \
 --enable-fft --libdir=${base_libdir} --shlibdir=${base_libdir} \
 --enable-muxer=mov --enable-muxer=mp4 --enable-encoders --enable-zlib --enable-encoder=png \
 --prefix=${base_libdir} --incdir=${includedir} \ "

do_install() {
 oe_runmake 'DESTDIR=${D}' install
 # Info dir listing isn't interesting at this point so remove it if it exists.
 if [ -e "${D}${infodir}/dir" ]; then
 rm -f ${D}${infodir}/dir
 fi } NORMAL



with this I could able to get ffmpeg bin. I pushed it on to the device (vr360 chipset : qcs605).
But when I try to invoke any ffmpeg commands say


ffmpeg -ss 00:00:00 -i "input.mp4" -t 00:01:00 "out.mp4"



I'm getting this error




[NULL @ 0xaf61a380] Unable to find a suitable output format for
'out.mp4' out.mp4 : Invalid argument




for all ffmpeg operation related to video/image processing I'm getting the same error.


Is there anything else,do I need to enable ?