Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (66)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

Sur d’autres sites (7340)

  • mov : Fix empty edit detection.

    4 juin 2011, par Yusuke Nakamura

    mov : Fix empty edit detection.

  • Docs for V2.97a.20111030

    31 octobre 2011, par Scott Schiller

    m doc/download/index.html m doc/index.html Docs for V2.97a.20111030

  • Video metadata edit with Ffmpeg

    24 septembre 2014, par Ahmet KAPIKIRAN

    I want to change the video metadata.

    Orginal video info(ffmpeg -i video.mp4)

        Metadata:
       major_brand     : mp42
       minor_version   : 0
       compatible_brands: isomavc1mp42
       creation_time   : 2007-11-22 09:11:58
     Duration: 00:00:52.70, start: 0.000000, bitrate: 235 kb/s
       Stream #0:0(und): Audio: aac (mp4a / 0x6134706D), 44100 Hz, stereo, s16, 107 kb/s
       Metadata:
         creation_time   : 2007-11-22 09:11:58
         handler_name    : (C) 2007 Google Inc. v06.24.2007.
       Stream #0:1(und): Video: h264 (Baseline) (avc1 / 0x31637661), yuv420p, 140x96 [SAR 1:1 DAR 35:24], 125 kb/s, 10 fps, 10 tbr, 10k tbn, 20k tbc
       Metadata:
         creation_time   : 2007-11-22 09:11:58
         handler_name    : (C) 2007 Google Inc. v06.24.2007.

    My ffmpeg shell code :

    ffmpeg -i test.mp4 -metadata handler_name="Ahmetka" -i logo.png -filter_complex "overlay=(main_w-overlay_w):(main_h-overlay_h)" output.flv

    Output video info(ffmpeg -i output.flv)

       Input #0, flv, from 'output.flv':
     Metadata:
       major_brand     : mp42
       minor_version   : 0
       compatible_brands: isomavc1mp42
       creation_time   : 2007-11-22 09:11:58
       encoder         : Lavf54.11.100
     Duration: 00:00:53.60, start: 0.000000, bitrate: 212 kb/s
       Stream #0:0: Video: flv1, yuv420p, 140x96, 200 kb/s, 10 tbr, 1k tbn, 1k tbc
       Stream #0:1: Audio: mp3, 44100 Hz, stereo, s16, 128 kb/s

    How can I do ?