Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (111)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Gestion générale des documents

    13 mai 2011, par

    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 d’autres sites (9408)

  • Révision 20443 : report de r20442 / retour sur r18418 : SPIP 3 premium, le SPIP qui vous permet d...

    25 avril 2013, par b b
  • Setting Encoding Codec Profile in Xuggler

    19 octobre 2012, par Alterscape

    I am attempting to transcode video into Apple ProRes 422 Proxy using the prores_kostya codec in ffmpeg, via Xuggler. I can successfully set up a video encoder and encode to the default prores_kostya settings, but I would like to configure the encoder to use the 'proxy' profile (as per the developer's site). I have the following configuration code in my application :

    IMediaWriter writer = ToolFactory.makeWriter(OUTPUT_FILE);

    writer.addVideoStream(0, 0, outputCodec, WIDTH, HEIGHT);
    writer.addAudioStream(1, 2, ICodec.ID.CODEC_ID_PCM_S16LE, 2, 48000);

    IStreamCoder streamCoder = writer.getContainer().getStream(0).getStreamCoder();
    LOGGER.info("profile is: {}", streamCoder.getPropertyAsString("profile"));
    streamCoder.setPixelType(IPixelFormat.Type.YUV422P10LE);
    streamCoder.setFrameRate(IRational.make(30,1));
    streamCoder.setTimeBase(IRational.make(1,30));
    streamCoder.setProperty("profile", "proxy");
    LOGGER.info("profile is: {}", streamCoder.getPropertyAsString("profile"));

    The output of this block of code is below. Note that profile remains -99, and a bizarre error about parens is thrown.

    1637 [main] INFO  n.r.o.corpus.devel.MediaConverter - codec is com.xuggle.xuggler.ICodec@2074329184[type=CODEC_TYPE_VIDEO;id=CODEC_ID_PRORES;name=prores_kostya;]
    1638 [main] INFO  n.r.o.corpus.devel.MediaConverter - profile is: -99
    1639 [main] ERROR org.ffmpeg - [Eval @ 0x10d7d7108] Undefined constant or missing '(' in 'proxy'
    1639 [main] ERROR org.ffmpeg - [prores_kostya @ 0x7faf7c874c00] Unable to parse option value "proxy"
    1639 [main] INFO  n.r.o.corpus.devel.MediaConverter - profile is: -99

    Any idea what's going on here ?

  • H264 profile change using FFMPEG

    16 octobre 2015, par Karthee

    I have H264 Stream with following details

    video stream type     :                 AVC  
    resolution            :             640x368  
    profile:level         :            High:4.0  
    aspect ratio          :          40x23(1:1)  
    chroma format         :               4:2:0  
    interlaced            :                  no  
    frames count          :                  15  
    duration              :        00:00:02.800  
    frame size max        :              80 088  
              avg        :              14 538  
          avg/max (I)    :     28 361 / 80 088  
          avg/max (P)    :       2 444 / 3 196  
          avg/max (B)    :               0 / 0  
              min        :               1 880  

    framerate declared    :               5.000  
             real        :               5.000  

    bitrate type          :                 VBR  
    bitrate declared      :           1 259 968  

    bit allocation max    :           1 126 640  
                  avg    :             581 520  
                  min    :             124 000

    is it possible to convert into Baseline profile using FFMPEG or other tools, or is there a way to do myself ?

    basic idea is to stream this video to android devices.