Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (75)

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

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

    5 septembre 2013, par

    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 ;

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

Sur d’autres sites (9257)

  • FFmpeg split multiple files with logo overlay

    25 juillet 2014, par Onur Öztürk

    i want to add logo overlay in video. and also i want to split videos multiple mp4 files

    i can add logo with below code

    ffmpeg -i in.mp4 -i logo.png -filter_complex "[0:v][1:v]overlay=0:620" out.mp4

    also i can split the video to multiple files with below code

    ffmpeg -i in.mp4 -vcodec copy -acodec copy -ss 0.05 -t 20 out1.mp4 -vcodec copy -acodec copy -ss 20 -t 15 out2.mp4

    but i want to add logo and split them with one ffmpeg code

    i use below code but i get error

    ffmpeg -i in.mp4 -i logo.png -filter_complex "[0:v][1:v]overlay=0:620" -vcodec copy -acodec copy -ss 0 -t 20 out1.mp4 -vcodec copy -acodec copy -ss 20 -t 15 out2.mp4

    How can i do two jobs with one ffmpeg code

  • x86 : hevc_mc : split differently calls

    24 août 2014, par Christophe Gisquet
    x86 : hevc_mc : split differently calls
    

    In some cases, 2 or 3 calls are performed to functions for unusual
    widths. Instead, perform 2 calls for different widths to split the
    workload.

    The 8+16 and 4+8 widths for respectively 8 and more than 8 bits can’t
    be processed that way without modifications : some calls use unaligned
    buffers, and having branches to handle this was resulting in no
    micro-benchmark benefit.

    For block_w == 12 (around 1% of the pixels of the sequence) :
    Before :
    12758 decicycles in epel_uni, 4093 runs, 3 skips
    19389 decicycles in qpel_uni, 8187 runs, 5 skips
    22699 decicycles in epel_bi, 32743 runs, 25 skips
    34736 decicycles in qpel_bi, 32733 runs, 35 skips

    After :
    11929 decicycles in epel_uni, 4096 runs, 0 skips
    18131 decicycles in qpel_uni, 8184 runs, 8 skips
    20065 decicycles in epel_bi, 32750 runs, 18 skips
    31458 decicycles in qpel_bi, 32753 runs, 15 skips

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

    • [DH] libavcodec/x86/hevcdsp_init.c
  • Revision fee045d13a : Disable adaptive pred filter for non-split mode If sf->disable_split_mask is DI

    24 février 2014, par Yunqing Wang

    Changed Paths :
     Modify /vp9/encoder/vp9_encodeframe.c


     Modify /vp9/encoder/vp9_onyx_if.c



    Disable adaptive pred filter for non-split mode

    If sf->disable_split_mask is DISABLE_ALL_SPLIT, disable
    sf->adaptive_pred_interp_filter to avoid unnecessary operations.

    Change-Id : Icb59174b2f4e9a3c3c16a696deb8018e5bd999eb