Recherche avancée

Médias (91)

Autres articles (111)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (9028)

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

  • 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

    


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