Recherche avancée

Médias (91)

Autres articles (53)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • 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

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

Sur d’autres sites (7100)

  • Use output of one ffmpeg command in another

    12 juin 2017, par Biraj B Choudhury

    I am using ffmpeg to transcode a file into mpegts and use the output of that command as input to segment them into ts files and the m3u8 file. I am using the following command to achieve this

    ./ffmpeg -y -benchmark -i big_buck_bunny_720p_5mb.mp4 -s 854x480 -ss 0  -vcodec libx264 -level:v 3.0 -profile:v baseline -f mpegts  -async 2 -acodec libmp3lame -ar 44100 -r 24.00 -b:v 703k -maxrate 703k -bufsize 703k -r 24.00 -b:a 96.0k -  | ./ffmpeg -i -  -hls_time 10 -hls_segment_filename test-%03d.ts -hls_playlist_type vod test.m3u8

    However I want to achieve the same with named output such as given below, but it doesn’t work, can someone point out what am I doing wrong.

    ./ffmpeg -y -benchmark -i big_buck_bunny_720p_5mb.mp4 -s 854x480 -ss 0  -vcodec libx264 -level:v 3.0 -profile:v baseline -f mpegts  -async 2 -acodec libmp3lame -ar 44100 -r 24.00 -b:v 703k -maxrate 703k -bufsize 703k -r 24.00 -b:a 96.0k test.mpegts  | ./ffmpeg -i test.mpegts  -hls_time 10 -hls_segment_filename test-%03d.ts -hls_playlist_type vod test.m3u8
  • avfilter : take_samples : do not directly return frame when samples are skipped

    18 mai 2017, par Muhammad Faiz
    avfilter : take_samples : do not directly return frame when samples are skipped
    

    Modifying data pointer when skipping samples may make it unaligned.
    Workaround for Ticket6349.

    This should fix the crash of ticket's testcase and a crash/regression
    with avxsynth (reported by Michael Niedermayer).

    Also change frame->nb_samples < max to frame->nb_samples <= max.
    This improves performance. Benchmark :
    ./ffmpeg -filter_complex "aevalsrc=0:n=1166,firequalizer=fixed=on" -f null null
    old :
    25767 decicycles in take_samples, 1023 runs, 1 skips
    25422 decicycles in take_samples, 2047 runs, 1 skips
    25181 decicycles in take_samples, 4095 runs, 1 skips
    24904 decicycles in take_samples, 8191 runs, 1 skips

    new :
    550 decicycles in take_samples, 1024 runs, 0 skips
    548 decicycles in take_samples, 2048 runs, 0 skips
    545 decicycles in take_samples, 4096 runs, 0 skips
    544 decicycles in take_samples, 8192 runs, 0 skips

    Reviewed-by : Nicolas George <george@nsup.org>
    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Muhammad Faiz <mfcc64@gmail.com>

    • [DH] libavfilter/avfilter.c
    • [DH] libavfilter/framequeue.c
    • [DH] libavfilter/framequeue.h
  • Merge commit ’effc1430b2fe5997d9d55bf28dc507c27125eb27’

    4 avril 2017, par James Almer
    Merge commit ’effc1430b2fe5997d9d55bf28dc507c27125eb27’
    

    * commit ’effc1430b2fe5997d9d55bf28dc507c27125eb27’ :
    Revert "checkasm : vp9dsp : Benchmark the dc-only version of idct_idct separately"

    Merged-by : James Almer <jamrial@gmail.com>

    • [DH] tests/checkasm/vp9dsp.c