Recherche avancée

Médias (0)

Mot : - Tags -/configuration

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

Autres articles (87)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

Sur d’autres sites (6421)

  • ffmpeg - filter_complex list too long

    2 mars 2016, par Baumi

    Let’s say I want to overlay a clock in the video using special font, color, etc to video that is aprox 30 min long. I end up with command :

    ffmpeg -y -i in.mp4 -filter_complex "
    [0:v]drawtext=fontfile=/var/www/sites/manage/elements/digital-7.ttf:text='00\:00':fontcolor=white@1.0:fontsize=26:x=100:y=65:enable='between(t,0,7)'[tmp];
    [tmp]drawtext=fontfile=/var/www/sites/manage/elements/digital-7.ttf:text='00\:01':fontcolor=white@1.0:fontsize=26:x=100:y=65:enable='between(t,7,8)'[tmp];
    [tmp]drawtext=fontfile=/var/www/sites/manage/elements/digital-7.ttf:text='00\:02':fontcolor=white@1.0:fontsize=26:x=100:y=65:enable='between(t,8,9)'[tmp];
    [tmp]drawtext=fontfile=/var/www/sites/manage/elements/digital-7.ttf:text='00\:03':fontcolor=white@1.0:fontsize=26:x=100:y=65:enable='between(t,9,10)'[tmp];
    [tmp]drawtext=fontfile=/var/www/sites/manage/elements/digital-7.ttf:text='00\:04':fontcolor=white@1.0:fontsize=26:x=100:y=65:enable='between(t,10,11)'[tmp];
    ......."
    -map "[tmp]" -map 0:a -acodec copy -c:v h264 out.mp4

    This clock is not the only overlay I have so finally I have end up with command 216kB long but this I cannot even run in bash because of argument list being too long.

    I wanted to re-encode the video only once. Is there any other way I can do that ?

    Thanks !

  • FFMPEG compilation without non free and without gpl not working properly

    27 décembre 2019, par sarun

    I tried to compile ffmpeg for LGPL (without nonfree and with out gpl).

    I used following commands while configuring as mentioned in many blogs

    configure --prefix=/home/sarun/ffmpeg-build/FFmpeg-release-4.0/build --bindir=/home/sarun/ffmpeg-build/FFmpeg-release-4.0/build/bin --libdir=/home/sarun/ffmpeg-build/FFmpeg-release-4.0/build/lib --shlibdir=/home/sarun/ffmpeg-build/FFmpeg-release-4.0/build/slib --incdir=/home/sarun/ffmpeg-build/FFmpeg-release-4.0/build/include --datadir=/home/sarun/ffmpeg-build/FFmpeg-release-4.0/build/data --mandir=/home/sarun/ffmpeg-build/FFmpeg-release-4.0/build/man --pkgconfigdir=/home/sarun/ffmpeg-build/FFmpeg-release-4.0/build/slib/pkgconfig --disable-static --enable-shared

    after compilation i could still see non free codecs and gpl elements as part of installed libraries
    please help me whether i am missing anything, i want to create LGPL version for my work.

  • FFmpeg and mencoder

    24 juin 2013, par jesper

    Currently i am making 2 videos with this command :

    ffmpeg -loop 1 -r 25 -t 5 -i /home/psafari/public_html/youtube_images/movie_" . $id . ".jpg -q:v 1 -an /home/psafari/public_html/youtube_videos/".$movie1."

    ffmpeg -loop 1 -r 25 -t ".$t." -i /home/psafari/public_html/yy.jpg -q:v 1 -an /home/psafari/public_html/youtube_videos/".$movie2."

    And it also works, but when i will make 2 videos into 1, it only shows 5 seconds of the first video (like the other doesn't comvert also).

    mencoder -ovc copy -o /home/psafari/public_html/final_".time().".avi /home/psafari/public_html/youtube_videos/".$movie1." /home/psafari/public_html/youtube_videos/".$movie2

    Am i doing something wrong ?