Recherche avancée

Médias (91)

Autres articles (67)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (5885)

  • ffmpeg lost quality putting two movies vertically

    5 juillet 2016, par Nir Diamant

    im putting two videos side by side vertically with ffmpeg.

    both of the video are in hight quality. but after i use this command :

    ffmpeg -i input1t.avi -i input2 -filter_complex vstack output.avi

    you can see an screen capture of the output movie here :
    enter image description here

    i loss a lot of quality and the output movie looks very bad

    any one have an idea why ? and how to solve it ?

  • How to write ffmpeg windows command for file path inside double quotes option

    19 février 2021, par Herahadi An

    please help

    


    I want to use ffmpeg for my c # application but an error appears

    


    this is my code

    


    videoPath = @"c:\location\in.mp4";
tempVideoPath = @"c:\another_location\out.mp4";

process.StartInfo.FileName = @"ffmpeg.exe";
    
process.StartInfo.Arguments = "-loop 1 -i \""+tbBGFrame.Text+ "\" -vf \"movie=\""+videoPath+ "\",scale=1900:-1[inner];[in][inner]overlay=70:70:shortest=1[out]\" -y \""+tempVideoPath+"\"";


    


    the problem is inside movie parameter. i have to include video path inputed by user but its give an error because its already double quote exist before.

    


    its successfully if i try on windows cmd like this

    


    > cd "C:\Users\Toshiba\Pictures\test vcp\input_mp4_dir\"
> ffmpeg.exe -loop 1 -i Coronavirus00000000.jpg -vf "movie=input.mp4,scale=1180:-1[inner];[in][inner]overlay=70:70:shortest=1[out]" -y out.mp4


    


    but how i can run that command wihtout change directory to input.mp4 directory ?

    


  • How does ffmpeg use concat of filter in C?

    12 mai 2022, par Jeycri

    It's OK for me to use the command line like this.

    


    ffmpeg -i test1.mp4 -i test2.mp4 -filter_complex "movie='test1.mp4',scale=640:360[v1];movie='test2.mp4',scale=640:360[v2];[v1][v2]concat" testout.mp4


    


    This is my configuration code.

    


    AVFilterInOut* inputs = avfilter_inout_alloc();
AVFilterInOut* outputs = avfilter_inout_alloc();
...
avfilter_graph_parse_ptr(filter->filterGraph, 
"movie='test1.mp4',scale=640:360[v1];movie='test2.mp4',scale=640:360[v2];[v1][v2]concat", 
&inputs, &outputs, NULL)
avfilter_graph_config(filter->filterGraph, NULL)


    


    Reported error

    


    [h264 @ 0000026dfecef780] Application has requested 17 threads. Using a thread count greater than 16 is not recommended.
[h264 @ 0000026dffae9d00] Application has requested 17 threads. Using a thread count greater than 16 is not recommended.
Output pad "default" with type video of the filter instance "in" of buffer not connected to any destination


    


    How can I configure the filter correctly?