Recherche avancée

Médias (0)

Mot : - Tags -/latitude

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (61)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (8973)

  • Anomalie #4504 (Nouveau) : Pas d’installations des tables des plugins avec opcache activé en mutu OVH

    5 juin 2020, par Jacques Bouthier

    Sur un site sur OVH avec opcache activé* les tables des plugins ne s’installent pa*s.
    Version de SPIP 3.3.0-dev, mysql, php 7.2 (Server API : FPM/FastCGI)

    Si j’active un fichier ".ovhconfig" pour désactiver FPM qui contient

    1. <span class="CodeRay">app.engine=phpcgi
    2. app.engine.version=7.2
    3. http.firewall=none
    4. environment=production
    5. container.image=stable
    6. </span>

    Télécharger


    Server API devient : CGI/FastCGI
    (Version de SPIP 3.3.0-dev, mysql, php 7.2)
    Alors les tables des plugins s’installent correctement

  • Révision 22127 : Report de r22126 : Report minimal de r22116 r22118 r22119 : #3418 : Octave utilis...

    10 mai 2015, par cedric -
  • ffmpeg minimal linux build with only one filter [closed]

    31 juillet 2024, par at8993

    I am aiming to compile a minimal build of ffmpeg for Ubuntu 22.04. The application requires only the concat filter for .mp4s using H.264 video encoder.

    &#xA;

    I have followed this guide and used the following commands to include libx264 only :

    &#xA;

    sudo apt-get update -qq &amp;&amp; sudo apt-get -y install \&#xA;  autoconf \&#xA;  automake \&#xA;  build-essential \&#xA;  cmake \&#xA;  git-core \&#xA;  libass-dev \&#xA;  libfreetype6-dev \&#xA;  libgnutls28-dev \&#xA;  libmp3lame-dev \&#xA;  libsdl2-dev \&#xA;  libtool \&#xA;  libva-dev \&#xA;  libvdpau-dev \&#xA;  libvorbis-dev \&#xA;  libxcb1-dev \&#xA;  libxcb-shm0-dev \&#xA;  libxcb-xfixes0-dev \&#xA;  meson \&#xA;  ninja-build \&#xA;  pkg-config \&#xA;  texinfo \&#xA;  wget \&#xA;  yasm \&#xA;  zlib1g-dev&#xA;&#xA;mkdir -p ~/ffmpeg_sources ~/bin&#xA;&#xA;sudo apt-get install libx264-dev&#xA;

    &#xA;

    and for the configure command I have used the following options with a view to only enable what's necessary for concat.

    &#xA;

    cd ~/ffmpeg_sources &amp;&amp; \&#xA;wget -O ffmpeg-snapshot.tar.bz2 https://ffmpeg.org/releases/ffmpeg-snapshot.tar.bz2 &amp;&amp; \&#xA;tar xjvf ffmpeg-snapshot.tar.bz2 &amp;&amp; \&#xA;cd ffmpeg &amp;&amp; \&#xA;&#xA;PATH="$HOME/bin:$PATH" PKG_CONFIG_PATH="$HOME/ffmpeg_build/lib/pkgconfig" ./configure \&#xA;  --prefix="$HOME/ffmpeg_build" \&#xA;  --pkg-config-flags="--static" \&#xA;  --extra-cflags="-I$HOME/ffmpeg_build/include" \&#xA;  --extra-ldflags="-L$HOME/ffmpeg_build/lib" \&#xA;  --extra-libs="-lpthread -lm" \&#xA;  --ld="g&#x2B;&#x2B;" \&#xA;  --bindir="$HOME/bin" \&#xA;  --disable-everything \&#xA;  --enable-filter=concat \&#xA;  --enable-avformat \&#xA;  --enable-avdevice \&#xA;  --enable-avcodec \&#xA;  --enable-decoder=h264 &#xA;  --enable-libx264 &#xA;  --enable-muxer=mp4 &#xA;  --enable-gpl&#xA;&#xA;PATH="$HOME/bin:$PATH" make &amp;&amp; \&#xA;make install &amp;&amp; \&#xA;hash -r&#xA;

    &#xA;

    However running

    &#xA;

    ffmpeg -f concat -i files_to_merge.txt -c copy output.mp4&#xA;

    &#xA;

    returns error

    &#xA;

    ffmpeg -f concat -i files_to_merge.txt -c copy output.mp4&#xA;ffmpeg version N-116445-gb1d410716b Copyright (c) 2000-2024 the FFmpeg developers&#xA;  built with gcc 11 (Ubuntu 11.4.0-1ubuntu1~22.04)&#xA;  configuration: --prefix=/home/user/ffmpeg_build &#xA;--extra-cflags=-I/home/user/ffmpeg_build/include --extra-ldflags=-L/home/user/ffmpeg_build/lib &#xA;--extra-libs=&#x27;-lpthread -lm&#x27; &#xA;--ld=g&#x2B;&#x2B; --bindir=/home/user/bin --disable-everything &#xA;--enable-filter=concat --enable-avformat &#xA;--enable-avdevice --enable-avcodec --enable-decoder=h264&#xA; --enable-libx264 --enable-muxer=mp4 &#xA;--enable-gpl&#xA;  libavutil      59. 30.100 / 59. 30.100&#xA;  libavcodec     61. 10.100 / 61. 10.100&#xA;  libavformat    61.  5.101 / 61.  5.101&#xA;  libavdevice    61.  2.100 / 61.  2.100&#xA;  libavfilter    10.  2.102 / 10.  2.102&#xA;  libswscale      8.  2.100 /  8.  2.100&#xA;  libswresample   5.  2.100 /  5.  2.100&#xA;  libpostproc    58.  2.100 / 58.  2.100&#xA;[in#0 @ 0x555605fab640] Unknown input format: &#x27;concat&#x27;&#xA;

    &#xA;

    I assume this is due to the omission of an enable option in the configure command.

    &#xA;

    Thanks !

    &#xA;