Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (111)

  • 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

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (9911)

  • MLT Framework. Insert zoomin text on video

    10 mars 2017, par user2455079

    Need to achieve effect something like that : put zoomingIn text on video background (black with some animation) between other videos.
    Demo : https://www.dropbox.com/s/ehqwkjgu5u5e9rp/4%20Cultivar%20Road%20Brampton%2C%20Jessi%20Sandhu.mp4?dl=0

    Trying to make is using dynamictext and affine filter :

    "1.mp4" -mix 7 -mixer luma "2.mp4" -mix 7 -mixer luma "bg.mp4" -attach-clip dynamictext in=0 out=145 "text.txt" -attach-clip affine in=0 out=145 -attach-clip affine valign=middle halign=center scale=1 fill=1 geometry="0=10%,10%:80%x80%:0%;36=0,0:100%x100%:100%;109=-10%,-10%:120%x120%:100%;145=-10%,-10%:120%x120%:0%"

    But i have unexpected results with infinite video and no animation at all...

  • Where to add FilterChain when using with Shell Script

    20 janvier 2016, par senty

    I am trying to get a jpg out of an mp4 video’s middle. I used this line and it works like charm for generating jpg thumbnail in one line :

    ffmpeg -i input.mp4 -vcodec mjpeg -vframes 1 -an -f rawvideo -ss `ffmpeg -i input.mp4 2>&1 | grep Duration | awk '{print $2}' | tr -d , | awk -F ':' '{print $3/2}'` output.jpg

    However, I want to apply scaling and cropping a filter chain (filter:v) with the above line, but where ever I put the filter, I couldn’t make it work.

    -filter:v "scale=720:ih*720/iw, crop=720:720:280:1000".

    Where should I put it ?

    The errors I receive :

    At least one output file must be specified

    Invalid duration specification for ss: -filter:v

    Please note that this works :

    ffmpeg -i fkj.mp4 -vcodec mjpeg -filter:v "scale=720:ih*720/iw, crop=720:720:280:1000" -vframes 1 -an -f rawvideo -ss 4  output.jpg

  • ffmpeg : properly cleanup filter graph on init failure

    2 mars 2017, par wm4
    ffmpeg : properly cleanup filter graph on init failure
    

    The filter field is often used to check whether a filter is
    configured. If configuring the filter actually fails somewhere in
    the middle of it, these fields could still be set to non-NULL, which
    lead to other code accessing the half-configured filter graph, which
    in turn could lead to crashes within libavfilter.

    Solve this by properly resetting all fields.

    This was triggered by a fuzzed sample after the recent changes. It’s
    unknown whether this behavior could be triggered before that.

    • [DH] ffmpeg_filter.c