Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (81)

  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

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

  • ffmpeg colorspace conversion speed

    5 mai 2017, par Mikhail Novikov

    I am running 2 ffmpeg commands on a fairly fast, GPU-enabled machine (AWS g2.2xlarge instance) :

    ffmpeg -i ./in.mp4 -s 1280x720 -r 30 -an -f rawvideo -pix_fmt yuv420p - | cat - >/dev/null

    gives 524fps while

    ffmpeg -i ./in.mp4 -s 1280x720 -r 30 -an -f rawvideo -pix_fmt argb - | cat - >/dev/null

    just 101... it just shouldn’t, couldn’t take as much as 8ms per frame on a modern CPU, let alone GPU !

    What am i doing wrong and how can i improve speed of this ?

    PS : Now this is truly ridiculous !

    ffmpeg -i ./in.mp4 -s 1280x720 -r 30 -an -f rawvideo -pix_fmt yuv420p - | ffmpeg -s 1280x720 -r 30 -an -f rawvideo -pix_fmt yuv420p -i - -s 1280x720 -r 30 -an -f rawvideo -pix_fmt argb - | cat - >/dev/null

    makes 275 fps ! which is by far not perfect, but something i can live with.

    why ?

    Thanks !

  • ffmpeg : How to Use Flip, Concat and Speed up Multiple Videos Together ?

    5 août 2021, par ChhengRavy

    Code1 : Merge Videos

    


    ffmpeg -i   input1.mp4 -i input2.mp4 -filter_complex "[0:v] [0:a] [1:v] [1:a] concat=n=2:v=1:a=1 [v] [a]" -vsync 2 -map "[v]" -map "[a]"    output1.mp4


    


    Code2 : Flip and Speed Up Video

    


    ffmpeg -i   outpu1.mp4 -filter_complex "[0:v]hflip,setpts=0.77*PTS;[0:a]atempo=1.3" output2.mp4


    


    How can we combine that codes together ? Please Help Me !!!

    


  • ffmpeg : speed up AND rotate video

    30 juillet 2021, par LFPGaming

    This is my current script that I'm trying to use to speed up the playspeed and rotate my video by 90', but it doesn't work when I include the transpose=1 argument.

    


    "C:\ffmpeg-win64\bin\ffmpeg.exe" -i "C:\video1.mkv" -vf "setpts=PTS/60" "transpose=1" -an -crf 18 "C:\video2.mkv"


    


    Script works without the transpose argument and speeds up my video perfectly, but Script won't run once I try to rotate the video by 90' and outputs an error :

    


    Unable to find a suitable output format for 'transpose=1'
transpose=1: Invalid argument


    


    Can anyone tell me where I'm going wrong ?