Recherche avancée

Médias (0)

Mot : - Tags -/content

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (112)

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (16076)

  • Anomalie #3016 (Fermé) : imagepalettetotruecolor, double définition (en php 5.5 beta)

    18 juin 2013, par Suske -

    Un user avant-gardiste a ramené un conflit "couldnt declare... already declared".

    La fonction concernée est http://be1.php.net/manual/fr/function.imagepalettetotruecolor.php
    SPIP déclare une fonction du même nom (et de même usage si elle est bien nommée ^^) : http://core.spip.org/projects/spip/repository/entry/spip/ecrire/inc/filtres_images_lib_mini.php#L627

    Bon, je sais pas si php5.5 va rapidement devenir un environnement de production mais comme c’est déjà repéré...

  • Revision ccdc448b70 : Remove reset mode_info array per frame The mode_info array was unnecessarily re

    16 décembre 2014, par Jingning Han

    Changed Paths :
     Modify /vp9/common/vp9_entropymode.c



    Remove reset mode_info array per frame

    The mode_info array was unnecessarily reset to zero every frame
    when error resilient mode turned on, given that the mode info
    values per block will be assigned during mode search stage.

    This commit removes this reset operation. It reduces the runtime
    cost on memset operation to 1/3. The overall speed -6 runtime is
    reduced by 2%.

    Change-Id : I32ecb73338d8995cc0c5147de09357364f13d45b

  • Permission denied with JAVE on OSX

    18 octobre 2016, par clankill3r

    I try to convert video to audio using jave on OSX.

    http://www.sauronsoftware.it/projects/jave/manual.php

    As the documentation states

    ...You can even build it by yourself getting the code (and the
    documentation to build it) on the official ffmpeg site. Once you have
    obtained a ffmpeg executable suitable for your needs, you have to hook
    it in the JAVE library. That’s a plain operation.

    I builded ffmpeg, but running the code I get a Permission denied error.
    I even changed all file permissions to 777 recursive.
    Hope someone can help, the documentation and error messages are very unclear.

    public class Mp4ToSoundTest {


       public static void main(String[] args) {
           Mp4ToSoundTest a = new Mp4ToSoundTest();
           a.setup();
       }

       void setup() {

           File source = new File("/Users/doekewartena/Downloads/vids_future_proj/VID_20160523_180100.mp4");

           System.out.println(source.exists());

           FFMPEGLocator my_ffmpeg_locator = new FFMPEGLocator() {
               @Override
               protected String getFFMPEGExecutablePath() {
                   return "/Users/doekewartena/Downloads/ffmpeg-3.1.4";
               }
           };


           File target = new File("/Users/doekewartena/Downloads/vids_future_proj/VID_20160523_180100.mp3");
           AudioAttributes audio = new AudioAttributes();
           audio.setCodec("libmp3lame");
           audio.setBitRate(128000);
           audio.setChannels(2);
           audio.setSamplingRate(44100);
           EncodingAttributes attrs = new EncodingAttributes();
           attrs.setFormat("mp3");
           attrs.setAudioAttributes(audio);
           Encoder encoder = new Encoder(my_ffmpeg_locator);

           // The source file can't be decoded. It occurs when the source file container, the video stream format or the
           // audio stream format are not supported by the decoder. You can check for supported containers and plugged
           // decoders calling the encoder methods getSupportedDecodingFormats(), getAudioDecoders() and getVideoDecoders().
           try {
               String[] r = encoder.getSupportedDecodingFormats();
               System.out.println("a");
               for (String s : r) {
                   System.out.println(s);
               }
               System.out.println("b");

               System.out.println();
               System.out.println(encoder.getAudioDecoders());

           } catch (EncoderException e) {
               e.printStackTrace();
           }



           try {
               encoder.encode(source, target, attrs);
           } catch (EncoderException e) {
               e.printStackTrace();
           }
           System.out.println("done");

       }

    }