Recherche avancée

Médias (0)

Mot : - Tags -/albums

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

Autres articles (84)

  • 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" (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (7663)

  • How can I use a FFmpeg filter with discord-music-system ? [closed]

    29 septembre 2020, par Michał Letkiewicz

    I created and modified discord-music-system on NPM a bit, and I wanted to use the apulsator FFmpeg filter on the output. Is this possible ?

    


  • std::system stops when I tries to change jpg to mp4

    19 août 2021, par StevePark

    I'm trying to use mediapipe Iris and I needed to make jpg to mp4 to use iris.

    


    When I use image that has a person's face in it, system has no problem changing jpg to mp4 as below
enter image description here

    


    However, if I put an image with no face or just an image as a background,
it stops and doesn't run to the other function anymore.
enter image description here

    


    my code is

    


    std::string Img2Vid(int i) {
  std::string input_path = FLAGS_input_video_path + "/" + std::to_string(i) + ".jpg";
  std::string output_path = FLAGS_input_video_path + "/" + std::to_string(i) + ".mp4";
  std::string s = "ffmpeg -loop 1 -f image2 -t 0.07 -i " + input_path + " " + output_path;
  std::cout << output_path << std::endl;
  char ch[100];
  std::strcpy(ch, s.c_str());
  std::system(ch);
  return output_path;
  }


    


    specifically, it should return output_path after changing jpg to mp4 like picture1, but it stucks at system(ch) when I run with image with no face.

    


    Is there other way to change jpg to mp4 or to solve this problem ?

    


  • lavfi/tonemap_vaapi : Add support for HDR to HDR tone mapping

    18 mars 2024, par Xinpeng Sun
    lavfi/tonemap_vaapi : Add support for HDR to HDR tone mapping
    

    Usage example :
    ffmpeg -y -hwaccel vaapi -hwaccel_output_format vaapi -i hdr.mp4 \
    - vf "tonemap_vaapi=display=7500 3000|34000 16000|13250 34500|15635 16450|500 10000000:extra_hw_frames=64" \
    - c:v hevc_vaapi output.mp4

    Signed-off-by : Xinpeng Sun <xinpeng.sun@intel.com>
    Signed-off-by : Haihao Xiang <haihao.xiang@intel.com>

    • [DH] doc/filters.texi
    • [DH] libavfilter/vf_tonemap_vaapi.c