Recherche avancée

Médias (91)

Autres articles (47)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (6701)

  • ffmpeg stops generating mp4 1.5 seconds before end

    26 septembre 2016, par Alex Konetchy

    I’m no ffmpeg expert. I’m trying to generate a video with a matching image overlapped on top to create a cinemagraph effect. For the basic test I run this, but it stops creating frames about 1.5 seconds before the end of the output video is complete.

    ffmpeg -ss 10.0000 -t 15.00000 -i waterfall.mp4 -loop 1 -i output.png -an output1.mp4

    Could anyone point me in the right direction for why this might be occurring ? All help is appreciated !

  • Can I make this FFMPEG animation smoother ?

    21 mai 2021, par mrmaker12345

    I have a basic ffmpeg command which zooms an images from 150% to 100% and overlays onto a stretched and blurred version of itself. All works great, except the zoom effect is very shaky. Is there any way to make this animation smoother ?

    


    ffmpeg -y -loop 1 -i image.jpg -filter_complex "[0:v]scale=1920:1080,boxblur=10:10,setsar=1[bg];[0:v]scale=-1:(ih*1.5)-(ih*1.5)*n/900:eval=frame[fg];[bg][fg]overlay=x=(W-w)/2:y=(H-h)/2[out]" -map "[out]" -t 10 -r 60 "out.mp4"


    


  • Need help concatenating multiple 2 part .mp4s

    9 septembre 2016, par Jay Ford7

    Basically, I have about 200 2-part videos that I would like to concatenate as 100 individual files.

    All the files are labeled with the same file name but with part 1 and part 2 on the end, ie "Video Name Part 1...Video Name Part 2"

    Through basic searching I understand how to combine two videos into one video manually with ffmpeg, but is there a way for ffmpeg to recognize the naming structure and do a batch concatenation ?

    EDIT : I should’ve said I was on Windows !

    Thanks !