Recherche avancée

Médias (0)

Mot : - Tags -/xml-rpc

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

Autres articles (53)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

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

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (7814)

  • FFMPEG - Run Multiple Commands - Processing more videos at once

    26 août 2015, par APP RAILY

    I’ve to process multiple videos at once with FFMPEG.
    The videos i’ve to process are theese :

    ffmpeg -loop 1 -y -i 1.jpg -i 1.mp3 -shortest video8.mp4
    ffmpeg -loop 1 -y -i 2.jpg -i 2.mp3 -shortest video3.mp4
    ffmpeg -loop 1 -y -i 3.jpg -i 3.mp3 -shortest video4.mp4
    ffmpeg -loop 1 -y -i 4.jpg -i 4.mp3 -shortest video5.mp4
    ffmpeg -loop 1 -y -i 5.jpg -i 5.mp3 -shortest video6.mp4
    ffmpeg -loop 1 -y -i 6.jpg -i 6.mp3 -shortest video7.mp4

    I’ve tried with this :
    ffmpeg -loop 1 -y -i 1.jpg -i 1.mp3 -shortest video8.mp4 \
    ffmpeg -loop 1 -y -i 2.jpg -i 2.mp3 -shortest video3.mp4
    ffmpeg -loop 1 -y -i 3.jpg -i 3.mp3 -shortest video4.mp4
    ffmpeg -loop 1 -y -i 4.jpg -i 4.mp3 -shortest video5.mp4
    ffmpeg -loop 1 -y -i 5.jpg -i 5.mp3 -shortest video6.mp4
    ffmpeg -loop 1 -y -i 6.jpg -i 6.mp3 -shortest video7.mp4

    and this :
    ffmpeg -loop 1 -y -i 1.jpg -i 1.mp3 -shortest video8.mp4 null 2>&1 &
    ffmpeg -loop 1 -y -i 2.jpg -i 2.mp3 -shortest video3.mp4 null 2>&1 &
    ffmpeg -loop 1 -y -i 3.jpg -i 3.mp3 -shortest video4.mp4 null 2>&1 &
    ffmpeg -loop 1 -y -i 4.jpg -i 4.mp3 -shortest video5.mp4 null 2>&1 &
    ffmpeg -loop 1 -y -i 5.jpg -i 5.mp3 -shortest video6.mp4 null 2>&1 &
    ffmpeg -loop 1 -y -i 6.jpg -i 6.mp3 -shortest video7.mp4 null 2>&1 &

    i’ve also tried with >/dev/null 2>&1 & at the end...

    But nothing seems to work...
    How can i process all thees videos at once ?!

  • Which video processing technology is used by TikTok [closed]

    14 juin 2020, par NizNsm

    I am on developing one video editing application for Android. I am well aware of FFMPEG and already implemented for trimming, merging and some text/image overlay effects. It takes a lot time for processing/encoding. I am a big fan of TikTok video editor. I want to implement something very similar to TikTok(Face detection, Magic effects,..etc), So kingly help me to figure out this.

    


  • avformat/mov : fix regression in processing .aax files

    31 juillet 2015, par Vesselin Bontchev
    avformat/mov : fix regression in processing .aax files
    

    Commit 0a551cbe introduced "activation_bytes" option, and not specifying
    this option (while calling ffmpeg / ffprobe) causes the program to quit
    early. Before this commit, ffprobe was capable of processing metadata in
    .aax files.

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/mov.c