Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (43)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

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

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

Sur d’autres sites (8886)

  • Where can I find high-quality videos for testing video processing ?

    15 novembre 2018, par Workman

    Aside from Big Buck Bunny, Sintel, and Elephant’s Dream, what are other high-quality and free sources for high quality video ?

    I’m using these videos internally to test video transcoding options and am not public redistributing. Any suggestions for content that falls under this category ?

  • Shazaam-esque music comparison [closed]

    17 janvier 2021, par Matthew Trip

    I have two files, a Full.mp4 and a Cut.mp4 I do not care about the video. I want to check if Cut appears in Full at any point. I have tried comparing the streams and their byte arrays but Rider keeps showing memory issues without an explanation. What is the general approach I should take ?

    


  • Complex audio volume changes with ffmpeg

    29 juin 2016, par coco

    Using ffmpeg, how much control can we have over the audio levels ? For example, I would like to map an "M" shape over the program’s timeline :

    t0 - t1 : fade in from 0 to 1
    t1 - t2 : play at full volume
    t2 - t3 : fade out to 25%
    t3 - t4 : play at 25% volume
    t4 - t5 : fade in (from 25%) to full volume
    t5 - t6 : play at full volume
    t6 - t7 : fade out from 1 to 0

    Can this be done ? The combinations I’ve tried (of afade and volume, and using timeline editing) have not been successful so far.

    Here is something that is close :

    ina="infile.caf"
    out="outfile.mp3"

    time ffmpeg -i $ina -af \
    "afade=enable='between(t,0,3)':t=in:ss=0:d=3, \
    afade=enable='between(t,7,8)':t=out:st=7:d=1, \
    volume=enable='between(t,8,12)':volume=.25:eval=frame, \
    afade=enable='between(t,12,13)':t=in:st=12:d=1, \
    afade=enable='between(t,15,18)':t=out:st=15:d=3" \
    $out

    .. but at the two middle points (the point where it fades out to 25%, and the point where it fades back in to full volume) there are glitches - audible sound clicks.