Recherche avancée

Médias (0)

Mot : - Tags -/signalement

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

Autres articles (4)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Monitoring de fermes de MediaSPIP (et de SPIP tant qu’à faire)

    31 mai 2013, par

    Lorsque l’on gère plusieurs (voir plusieurs dizaines) de MediaSPIP sur la même installation, il peut être très pratique d’obtenir d’un coup d’oeil certaines informations.
    Cet article a pour but de documenter les scripts de monitoring Munin développés avec l’aide d’Infini.
    Ces scripts sont installés automatiquement par le script d’installation automatique si une installation de munin est détectée.
    Description des scripts
    Trois scripts Munin ont été développés :
    1. mediaspip_medias
    Un script de (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (1860)

  • How to start multiple FFMPEG on vb.net

    21 août 2014, par M.Yazdian

    I like to stream many webcam from ffmpeg on windows to Flash media server in RTMP protocol.

    I use FFMPEG for stream videos in a background vb.net by ProcessStartInfo , now I have a problem to use multiple FFMPEG for stream at the same time.

    When I run first FFMPEG it is run successfuly and it streams webcam1 correctly on the Media Server, when I want to start webcam2 to stream, the second ffmpegs in not runing.

    This is my codes to start each FFMPEG :

    Dim psi As ProcessStartInfo = New ProcessStartInfo("c:\ffmpeg.exe")
    Dim proc As Process = Process.Start(psi)
    psi.UseShellExecute = False
    psi.CreateNoWindow = True
    psi.Arguments = " -f dshow -i video=""USB Camera"" -threads 1 -preset ultrafast -vcodec     libx264 -b:v 640k -acodec copy -f flv rtmp://12.11.1.6/live/sample1 "
    proc = Process.Start(psi)

    Please advise me to fix this problem

    your help will be appreciated

  • How can I get consistent start times and durations when cutting a video using ffmpeg ?

    21 juillet 2017, par danvk

    I’m trying to slice up a 20 minute video into several 1 minute chunks following this approach, but getting remarkably strange results.

    I first tried writing a loop with -ss after -i.

    for m in $(seq 0 20); ffmpeg -i video.mov -ss $((60 * $m)) -t 60 -vcodec copy video.$m.1min.mov

    I get a mess of different “start” times and video durations :

    $ for f in *.1min.mov; do echo $f $(ffprobe $f 2>&1 | grep Duration); done
    video.0.1min.mov Duration: 00:01:00.01, start: 0.000000, bitrate: 3014 kb/s
    video.1.1min.mov Duration: 00:01:00.00, start: 0.012000, bitrate: 3002 kb/s
    video.2.1min.mov Duration: 00:01:00.00, start: 0.012000, bitrate: 3002 kb/s
    video.3.1min.mov Duration: 00:01:00.00, start: 0.011000, bitrate: 3002 kb/s
    video.4.1min.mov Duration: 00:01:00.00, start: 0.010000, bitrate: 3001 kb/s
    video.5.1min.mov Duration: 00:01:00.00, start: 0.010000, bitrate: 3002 kb/s
    video.6.1min.mov Duration: 00:01:00.00, start: 0.009000, bitrate: 3003 kb/s
    video.7.1min.mov Duration: 00:01:00.00, start: 0.009000, bitrate: 3006 kb/s
    video.8.1min.mov Duration: 00:01:00.00, start: 0.008000, bitrate: 2999 kb/s
    video.9.1min.mov Duration: 00:01:00.00, start: 0.007000, bitrate: 3003 kb/s
    video.10.1min.mov Duration: 00:01:00.00, start: 0.007000, bitrate: 3002 kb/s
    video.11.1min.mov Duration: 00:01:00.00, start: 0.006000, bitrate: 3002 kb/s
    video.12.1min.mov Duration: 00:01:00.00, start: 0.006000, bitrate: 3005 kb/s
    video.13.1min.mov Duration: 00:00:50.57, start: 9.438000, bitrate: 3004 kb/s
    video.14.1min.mov Duration: 00:00:50.57, start: 9.438000, bitrate: 3003 kb/s
    video.15.1min.mov Duration: 00:00:50.57, start: 9.437000, bitrate: 3004 kb/s
    video.16.1min.mov Duration: 00:00:50.57, start: 9.436000, bitrate: 2998 kb/s
    video.17.1min.mov Duration: 00:00:50.57, start: 9.436000, bitrate: 3004 kb/s
    video.18.1min.mov Duration: 00:00:50.57, start: 9.435000, bitrate: 3005 kb/s
    video.19.1min.mov Duration: 00:00:50.57, start: 9.435000, bitrate: 3004 kb/s
    video.20.1min.mov Duration: 00:00:50.57, start: 9.434000, bitrate: 3001 kb/s

    If I instead move the -ss before the -i :

    for m in $(seq 0 20); ffmpeg -ss $((60 * $m)) -i video.mov -vcodec copy -t 60 video.$m.1min.mov

    then I get nice start times but variable lengths :

    $ for f in *.1min.mov; do echo $f $(ffprobe $f 2>&1 | grep Duration); done
    video.0.1min.mov Duration: 00:01:00.01, start: 0.000000, bitrate: 3014 kb/s
    video.1.1min.mov Duration: 00:01:10.00, start: 0.000000, bitrate: 3003 kb/s
    video.2.1min.mov Duration: 00:01:10.00, start: 0.000000, bitrate: 3002 kb/s
    video.3.1min.mov Duration: 00:01:10.00, start: 0.000000, bitrate: 3002 kb/s
    video.4.1min.mov Duration: 00:01:10.00, start: 0.000000, bitrate: 3001 kb/s
    video.5.1min.mov Duration: 00:01:10.00, start: 0.000000, bitrate: 3001 kb/s
    video.6.1min.mov Duration: 00:01:10.00, start: 0.000000, bitrate: 3002 kb/s
    video.7.1min.mov Duration: 00:01:10.00, start: 0.000000, bitrate: 3005 kb/s
    video.8.1min.mov Duration: 00:01:10.00, start: 0.000000, bitrate: 3002 kb/s
    video.9.1min.mov Duration: 00:01:10.00, start: 0.000000, bitrate: 3002 kb/s
    video.10.1min.mov Duration: 00:01:10.00, start: 0.000000, bitrate: 3007 kb/s
    video.11.1min.mov Duration: 00:01:10.00, start: 0.000000, bitrate: 3002 kb/s
    video.12.1min.mov Duration: 00:01:10.00, start: 0.000000, bitrate: 3004 kb/s
    video.13.1min.mov Duration: 00:01:00.57, start: 0.000000, bitrate: 3003 kb/s
    video.14.1min.mov Duration: 00:01:00.57, start: 0.000000, bitrate: 3003 kb/s
    video.15.1min.mov Duration: 00:01:00.57, start: 0.000000, bitrate: 3005 kb/s
    video.16.1min.mov Duration: 00:01:00.57, start: 0.000000, bitrate: 3001 kb/s
    video.17.1min.mov Duration: 00:01:00.57, start: 0.000000, bitrate: 3004 kb/s
    video.18.1min.mov Duration: 00:01:00.57, start: 0.000000, bitrate: 3002 kb/s
    video.19.1min.mov Duration: 00:01:00.57, start: 0.000000, bitrate: 3006 kb/s
    video.20.1min.mov Duration: 00:01:00.57, start: 0.000000, bitrate: 3001 kb/s

    What’s going on here ? How can I get videos with even durations and sensible start times ? Is something strange with my input video ? (I’m unable to share it, sorry !)

  • FFMPEG loop not start immediately

    9 octobre 2018, par Karel B

    I have this drawtext scrolling vertically x=10:y=w-mod(max(t-1\,0)*(w+tw)/30\,(w+tw))

    My problem is that when it scroll over whole video it takes around 10 seconds to start loop again and I need to start loop immediately.

    Can you help me ?