Recherche avancée

Médias (1)

Mot : - Tags -/blender

Autres articles (106)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 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 (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains 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 ;

Sur d’autres sites (14556)

  • Minimal configure flags to configure png files to mp4 and gif ?

    24 avril 2012, par Jona

    I'm trying to configure and build ffmpeg only with the most minimum libraries needed to read set of images of png type and convert those images into a movie. The movie output support I need are gif and mp4.

    I was able to get mp4 output but gif output I can't get it to work just crashes or exist without errors.

    Could not find input stream matching output stream #1.0

    There might be some extra configure flags that can be removed too...

    Here is my configure :

    ./configure \
    --target-os=linux \
    --prefix=$PREFIX \
    --enable-cross-compile \
    --extra-libs="-lgcc" \
    --arch=arm \
    --enable-gpl \
    --enable-version3 \
    --enable-nonfree \
    --sysroot=$NDK_SYSROOT \
    --extra-cflags="-I../x264 -Ivideokit -O3 -fpic -DANDROID -DHAVE_SYS_UIO_H=1 -Dipv6mr_interface=ipv6mr_ifindex -fasm -Wno-psabi -fno-short-enums  -fno-strict-aliasing -finline-limit=300 $OPTIMIZE_CFLAGS " \
    --extra-ldflags="-L../x264 -Wl,-rpath-link=/usr/lib -L/usr/lib  -nostdlib -lc -lm -ldl -llog" \
    --disable-shared \
    --enable-static \
    --enable-stripping \
    --enable-asm \
    \
    --disable-ffplay \
    --disable-ffprobe \
    --disable-ffserver \
    --disable-doc \
    --disable-network \
    \
    --disable-protocols \
    --disable-demuxers \
    --disable-decoders \
    --disable-encoders \
    --disable-muxers \
    --enable-libx264 \
    --enable-protocol=file \
    --enable-demuxer=image2 \
    --enable-demuxer=image2pipe \
    --enable-demuxer=mjpeg \
    --enable-demuxer=rawvideo \
    --enable-demuxer=yuv4mpegpipe \
    --enable-decoder=png \
    --enable-encoder=libx264 \
    --enable-encoder=png \
    --enable-encoder=mjpeg \
    --enable-encoder=gif \
    --enable-encoder=mpeg4 \
    --enable-encoder=mpeg2video \
    --enable-muxer=image2 \
    --enable-muxer=image2pipe \
    --enable-muxer=mjpeg \
    --enable-muxer=mp4 \
    --enable-muxer=mpeg2video \
    --enable-muxer=rawvideo \
    --enable-muxer=yuv4mpegpipe \
    --enable-muxer=gif \
  • PHP exec() Not Working With ffmpeg

    28 juillet 2016, par Dodinas

    I’m attempting to run the following command in PHP (on Ubuntu) :

    <?php
    if (exec("/home/johnboy/ffmpeg/ffmpeg -i test1.mp4 -acodec aac -ab 128kb -vcodec mpeg4 -b 1220kb -mbd 1 -s 320x180 final_video.mov"))
         { echo "Success"; }
         else { echo "No good"; }

    And I always get "No good" echoed back, and no file created.

    Interestingly, if I run the same exact command in Shell, it works, no problems.

    Also, when I run the same code above, but subsitute "whoami" instead of the ffmpeg stuff, it works. (It echoes back "Success")

    Any ideas on why this wouldn’t be working ? Thanks.

  • Changing Video's rotation metadata without rotating video

    2 décembre 2016, par Arshdeep Singh

    I have two Videos. One is from front camera and one is from back camera. When I concatenate these two. one gets vertically inverted in merged file. Video taken from front camera having rotation metadata 270. And Video taken from back camera having rotation metadata 90. While concatenation one gets inverted, while I don’t want. Please help....