Recherche avancée

Médias (91)

Autres articles (87)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

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

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (7586)

  • 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?