Recherche avancée

Médias (0)

Mot : - Tags -/signalement

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

Autres articles (64)

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

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (4822)

  • Starting and stopping a system command in C++ based on whether the main program is running

    3 juillet 2018, par zach

    I’m writing a program and I want to use ffmpeg’s x11grab to record the users actions on screen while they interact with the program. I am able to set up the system call to ffmpeg, but I’m not sure how I get it to stop once the program has finished running ?

    Ideally, I would like for the user to hit start (which begins the recording), interact with the main part of the program, hit end, and then have a video file of their session placed somewhere.

    Here’s the code I have so far. This just finds the screen resolution, then calls ffmpeg’s x11grab.

    QRect screen = QApplication::desktop()->screen(QApplication::desktop()->primaryScreen())->geometry();

    int width = screen.width();
    int height = screen.height();

    std::string resolution = std::to_string(width) + "x" + std::to_string(height);
    std::string record_command = "ffmpeg -f x11grab -s  -r 30 -i :0.0 -qscale 0.1 -vcodec huffyuv grab.avi";
    //insert screen resolution into bash command
    record_command.insert(21, resolution);
    std::cout << record_command;
    //bash command to record
    system(record_command.c_str());
  • ffmpeg convert from H.264 (High 4:4:4 Profile) to H.265 (Main Profile)

    30 novembre 2022, par David Alonso Ruiz

    How can I convert a video from H.264 (High 4:4:4 Profile) to H.265 (Main Profile 4:2:0) using ffmpeg ?

    


    I can't do that with this command : ffmpeg -i input.mkv -c:v hevc_nvenc -c:a copy output2.mkv

    


    That'd return an error, does not recognize the source format

    


  • ffmpeg convert from H.264 (High 4:4:4 Profile) to H.265 (Main Profile)

    30 novembre 2022, par David Alonso Ruiz

    How can I convert a video from H.264 (High 4:4:4 Profile) to H.265 (Main Profile 4:2:0) using ffmpeg ?

    


    I can't do that with this command : ffmpeg -i input.mkv -c:v hevc_nvenc -c:a copy output2.mkv

    


    That'd return an error, does not recognize the source format