Recherche avancée

Médias (91)

Autres articles (99)

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (15290)

  • lavc/hevc/cabac : do not infer WPP use based on HEVCContext.threads_number

    1er juin 2024, par Anton Khirnov
    lavc/hevc/cabac : do not infer WPP use based on HEVCContext.threads_number
    

    Pass this information explicitly instead.

    • [DH] libavcodec/hevc/cabac.c
    • [DH] libavcodec/hevc/hevcdec.c
    • [DH] libavcodec/hevc/hevcdec.h
  • FFMPEG command for video based on ratio [duplicate]

    21 novembre 2017, par pocek

    I am using ffmpeg (in linux server with php)

    and I want to watermark a png logo on the mp4 file, my problem is that

    I want to scale my logo and change it based on source video size(for example 1/4 of height),

    I have this code bellow :

    shell_exec('ffmpeg -i file.mp4 -i logo.png -filter_complex "overlay=10:10" file-watered.mp4");

    it works on every video.

    For Normal (medium) size image :

    enter image description here

    For Small (medium) size image (which is bad !)

    enter image description here

    Ideal output for this size would be :

    enter image description here

    I’ve changed a little bit my first code like this :

    shell_exec('ffmpeg -i file.mp4 -i logo.png -filter_complex "[0:v]scale=500:-1[bg];[bg][1:v]overlay=(main_w-overlay_w):(main_h-overlay_h)" watered.mp4');

    The main problem is that, I want to change the logo size based on video size.

    How can I do it with ffmpeg ?

  • Speed of the x265 and ffmpeg HEVC based encoding

    10 mai 2015, par userDtrm

    I’m trying to perform a real-time encoding of a video using HEVC with ffmpeg. I’m able to achieve the required performance when running the x265 encoder separately without the support of ffmpeg. This way the my system can perform the encoding at 30 frames per second. However, my requirement is to create a MPEG-TS stream with the encoded content and therefore, the video is encoded with the ffmpeg as follows :

    ffmpeg -s:v 1280x720 -i input.yuv -c:v libx265 -x265-params crf=20:keyint=25:fps=25:preset=ultrafast -f mpegts out.ts

    Strangely, the performance of the encoding is reduced drastically and I’m only able to achieve an encoding performance of just 10 frames per second.

    Is this a problem of the multiplexing process within ffmpeg ?. Could someone please help me to resolve this issue.

    Thanks.