Recherche avancée

Médias (0)

Mot : - Tags -/navigation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (39)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (4781)

  • Encoding video for PS4 Pro using ffmpeg

    16 février 2023, par Calum J Craig

    I'm trying to encode video to watch on my PS4 Pro (so want to be able to handle 4k as well as 1080p).

    


    At first I had success with the default ffmpeg .mp4 command just using this :

    


    ffmpeg -i .mkv .mp4

    


    This was fine for the first batch of 1080p videos I encoded. But, then it started to fail me - the videos would encode but when I tried to watch them on the PS4 the file would start to play with only audio, no video, play for a few seconds then fail and become unusable.

    


    I checked and apparently the PS4 requires the H.264 codec. So, I installed libx264-dev and tried :

    


    ffmpeg -i .mkv -vcodec libx264 .mp4

    


    I got the same result - the video encoded and started to play on the PS4 with only audio then failed.

    


    Any suggestions for what I am missing / doing wrong ? This is the first time for me to use ffmpeg so I am not familiar with its various features / parameters. I'm running Ubuntu 22.04.

    


  • how to add beat and bass effect in video using ffmpeg command ?

    8 avril 2021, par Hit_Var

    i want beat effect on video and i am using ffmpeg command for beat effect i was used this below command for beat effect black and white and original color after 2 sec looping but not this work this command only create black and white video ffmpeg -i addition.mp4 -vf hue=s=0 output.mp4

    


    So please, suggest any solution.

    


    I want make video like youtube.com/watch ?v=7fG7TVKGcqI plaese suggest me

    


    Thanks in advance

    


  • Redirect StandardOutput from a process

    25 décembre 2015, par Prakash M

    I am working on C++/CLI winforms
    how to redirect standard output to textbox ?
    I followed this video, but it didn’t work
    https://www.youtube.com/watch?v=BDTCviA-5M8

    I can see output in console window, but till process finishes GUI freezes !

    ProcessStartInfo ^psi = gcnew ProcessStartInfo("D://ffmpeg.exe", "-y -i D://1.avi D://process.mp4");        
    psi->WindowStyle = ProcessWindowStyle::Hidden;
    psi->UseShellExecute = false;
    psi->RedirectStandardOutput = true;
    process->StartInfo = psi;

    process->Start();
    String^ details = process->StandardOutput->ReadToEnd();
    textBox1->Text = details;
    Console::WriteLine(details);

    Where am I going wrong ?