
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (51)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...) -
Submit enhancements and plugins
13 avril 2011If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.
Sur d’autres sites (6870)
-
avcodec/setts_bsf : actually store the current packet's timestamps to be usable by...
3 juillet 2021, par James Almeravcodec/setts_bsf : actually store the current packet's timestamps to be usable by the next
Before this change, the PREV_OUTPTS and PREV_OUTDTS constants always evaluated
to AV_NOPTS_VALUE.Reviewed-by : Paul B Mahol <onemda@gmail.com>
Signed-off-by : James Almer <jamrial@gmail.com> -
Android NDK Build FFMPEG in 2021
19 janvier 2023, par KyrosI'm working on an android app, and I have to convert
webm
files tomp3
.
I really want to make a custom ffmpeg build, because it reduces the ffmpeg executable size to only 2MB.

My library works absolutely fine when running on my PC, but i'm struggling to build it for android... It seems like NDK architecture has changed and tutorials are outdated, and I can't find a proper and recent guide for android compiling...


I also would like to target all architectures (
aarch64
,armv7
,i686
, andx86_64
)...

I've been on this for hours, fixed many errors, but still nothing has worked ><.
Please help me ! :


PS. I'm compiling on Linux, here is my configuration script :


#!/bin/bash

API=31 # target android api

OUTPUT=/home/romain/dev/android/ffmpeg_build

NDK=/home/romain/android-sdk/ndk/23.0.7599858
TOOLCHAIN=$NDK/toolchains/llvm/prebuilt/linux-x86_64
SYSROOT=$TOOLCHAIN/sysroot

TOOL_PREFIX="$TOOLCHAIN/bin/aarch64-linux-android"

CC="$TOOL_PREFIX$API-clang"
CXX="$TOOL_PREFIX$API-clang++"

./configure \
 --prefix=$OUTPUT \
 --target-os=android \
 --arch=$ARCH \
 --cpu=$CPU \
 --disable-everything \
 --disable-everything \
 --disable-network \
 --disable-autodetect \
 --enable-small \
 --enable-decoder=opus,vorbis \
 --enable-demuxer=matroska \
 --enable-muxer=mp3 \
 --enable-protocol=file \
 --enable-filter=aresample \
 --enable-libshine \
 --enable-encoder=libshine \
 --cc=$CC \
 --cxx=$CXX \
 --sysroot=$SYSROOT \
 --extra-cflags="-0s -fpic"

make
make install



-
How can I use libx265 (H.265) in the ffmpeg-python package ?
3 septembre 2021, par kupHow can I use libx265 (H.265) in the ffmpeg-python package ?


I tried using :


(
 ffmpeg
 .input('0.mp4')
 .filter('fps', fps=25, round='up')
 .output('out.mkv', format='h265')
 .run()
)



But it is throwing an error :




format is not recognized




But this works :


(
 ffmpeg
 .input('0.mp4')
 .filter('fps', fps=25, round='up')
 .output('out.mkv', format='h264')
 .run()
)