Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (51)

  • List of compatible distributions

    26 avril 2011, par

    The 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, par

    The 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 2011

    If 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 Almer
    avcodec/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>

    • [DH] libavcodec/setts_bsf.c
  • Android NDK Build FFMPEG in 2021

    19 janvier 2023, par Kyros

    I'm working on an android app, and I have to convert webm files to mp3.&#xA;I really want to make a custom ffmpeg build, because it reduces the ffmpeg executable size to only 2MB.

    &#xA;

    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...

    &#xA;

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

    &#xA;

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

    &#xA;

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

    &#xA;

    #!/bin/bash&#xA;&#xA;API=31 # target android api&#xA;&#xA;OUTPUT=/home/romain/dev/android/ffmpeg_build&#xA;&#xA;NDK=/home/romain/android-sdk/ndk/23.0.7599858&#xA;TOOLCHAIN=$NDK/toolchains/llvm/prebuilt/linux-x86_64&#xA;SYSROOT=$TOOLCHAIN/sysroot&#xA;&#xA;TOOL_PREFIX="$TOOLCHAIN/bin/aarch64-linux-android"&#xA;&#xA;CC="$TOOL_PREFIX$API-clang"&#xA;CXX="$TOOL_PREFIX$API-clang&#x2B;&#x2B;"&#xA;&#xA;./configure \&#xA;    --prefix=$OUTPUT \&#xA;    --target-os=android \&#xA;    --arch=$ARCH \&#xA;    --cpu=$CPU \&#xA;    --disable-everything \&#xA;    --disable-everything \&#xA;    --disable-network \&#xA;    --disable-autodetect \&#xA;    --enable-small \&#xA;    --enable-decoder=opus,vorbis \&#xA;    --enable-demuxer=matroska \&#xA;    --enable-muxer=mp3 \&#xA;    --enable-protocol=file \&#xA;    --enable-filter=aresample \&#xA;    --enable-libshine \&#xA;    --enable-encoder=libshine \&#xA;    --cc=$CC \&#xA;    --cxx=$CXX \&#xA;    --sysroot=$SYSROOT \&#xA;    --extra-cflags="-0s -fpic"&#xA;&#xA;make&#xA;make install&#xA;

    &#xA;

  • How can I use libx265 (H.265) in the ffmpeg-python package ?

    3 septembre 2021, par kup

    How can I use libx265 (H.265) in the ffmpeg-python package ?

    &#xA;

    I tried using :

    &#xA;

    (&#xA;    ffmpeg&#xA;    .input(&#x27;0.mp4&#x27;)&#xA;    .filter(&#x27;fps&#x27;, fps=25, round=&#x27;up&#x27;)&#xA;    .output(&#x27;out.mkv&#x27;, format=&#x27;h265&#x27;)&#xA;    .run()&#xA;)&#xA;

    &#xA;

    But it is throwing an error :

    &#xA;

    &#xA;

    format is not recognized

    &#xA;

    &#xA;

    But this works :

    &#xA;

    (&#xA;    ffmpeg&#xA;    .input(&#x27;0.mp4&#x27;)&#xA;    .filter(&#x27;fps&#x27;, fps=25, round=&#x27;up&#x27;)&#xA;    .output(&#x27;out.mkv&#x27;, format=&#x27;h264&#x27;)&#xA;    .run()&#xA;)&#xA;

    &#xA;