Advanced search

Medias (0)

Tag: - Tags -/configuration

No media matches your criterion on the site.

Other articles (34)

  • Configuration spécifique d’Apache

    4 February 2011, by

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 September 2013, by

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo; l’ajout d’une bannière l’ajout d’une image de fond;

  • Gestion générale des documents

    13 May 2011, by

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet; la récupération des métadonnées du document original pour illustrer textuellement le fichier;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP sur (...)

On other websites (6894)

  • Split video stream with FFmpeg and play part with FFplay [closed]

    22 March 2024, by Jan Hein

    I have a video stream send with FFmpeg to a other computer on my local network.
At the receiver computer I want to split the video stream in multiple parts and play them at the receiver computer. How can I do that?

    


    Example:
Stream send form sender to receiver is 1000x1000 pixels.
At the receiver split the 1000x1000 pixel stream into four parts of 500x500 pixels, and play them all four on the receiver in a separate player.

    


    I have tryed it with a multicast stream to the receiver, and played it four times with FFplay, but that was not working correct.

    


    I also hve looked for multiple outputs with FFmpeg and then multiple pipes to FFplay, but could not find a solution.

    


  • vp9: split segmentation map / mvpair references.

    8 March 2015, by Ronald S. Bultje
    vp9: split segmentation map / mvpair references.
    

    This prevents a memcpy if segmentation.update_map == false.

    Signed-off-by: Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/vp9.c
  • Multithreading in avconv to split video in frames

    16 April 2014, by Louis Ayenco

    I would like to split a video in frames using avconv (ffmpeg fork). To speed up the process I want to use multithreading. For this I use "-threads 3" on a VM with 4 cores. I see no difference between "-threads 1" and "-threads 3" in top (always between 100%-130%.

    The command:

    avconv -i video.mp4 frames/frame-%05d.tiff -threads 3

    What can I do to speedup the process?

    Thanks,