Recherche avancée

Médias (0)

Mot : - Tags -/organisation

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

Autres articles (29)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (4287)

  • ffmpeg syntax has changed

    8 mai 2014, par Budgierless

    Just like what was talked about in this post : FFmpeg cannot recognize a preset even though it does exsist Ubuntu 12.04

    I have help, with deblockalpha which has been depreciated from ffmpeg for along time,
    i am no good with all this coding business, but would like someone to tell me how i can fix this outdated syntax, as i am getting this error :

    Unrecognized option ’deblockalpha’
    Failed to set value ’0’ for option ’deblockalpha’

    please see code below and advise ?

    $ffmpeg -i $input -r 30 -vcodec libx264 -s 512x288 -aspect 16:9 -b 1550k -maxrate 1800k -bufsize 4M -bt 1600k -flags +loop -cmp +chroma -deblockalpha 0 -deblockbeta 0 -refs 1 -coder 0 -me_method full -me_range 16 -subq 5 -partitions +parti4x4+parti8x8+partp8x8 -g 250 -keyint_min 25 -level 30 -trellis 2 -sc_threshold 40 -i_qfactor 0.71 -acodec libfaac -ab 128k -ar 44100 -ac 2 $addpre $output";

    thanks

  • ffmpeg syntax has changed

    8 mai 2014, par Budgierless

    Just like what was talked about in this post : FFmpeg cannot recognize a preset even though it does exsist Ubuntu 12.04

    I have help, with deblockalpha which has been depreciated from ffmpeg for along time,
    i am no good with all this coding business, but would like someone to tell me how i can fix this outdated syntax, as i am getting this error :

    Unrecognized option ’deblockalpha’
    Failed to set value ’0’ for option ’deblockalpha’

    please see code below and advise ?

    $ffmpeg -i $input -r 30 -vcodec libx264 -s 512x288 -aspect 16:9 -b 1550k -maxrate 1800k -bufsize 4M -bt 1600k -flags +loop -cmp +chroma -deblockalpha 0 -deblockbeta 0 -refs 1 -coder 0 -me_method full -me_range 16 -subq 5 -partitions +parti4x4+parti8x8+partp8x8 -g 250 -keyint_min 25 -level 30 -trellis 2 -sc_threshold 40 -i_qfactor 0.71 -acodec libfaac -ab 128k -ar 44100 -ac 2 $addpre $output";

    thanks

  • Alternative to ffmpeg for iOS

    6 mai 2012, par resident_

    I've been trying to implement ffmpeg in my ios app several weeks. And now I can play several avi files, but other files like a flv, wma, mp4... play slow.

    I have spent much time with ffmpeg and opengl and I don't find solution.

    I'm looking other alternatives to play this files on ios device.

    Someone know other libraries, frameworks, ... that I can use to play this files. No matter if they have business licenses.

    Very thanks,

    Edited :

    Init Shader :

    shader = [[GLShader alloc] initWithFileName:@"render" attributes:[NSDictionary dictionaryWithObjectsAndKeys:
                                                                                                [NSNumber numberWithInt:0], @"position",
                                                                                                [NSNumber numberWithInt:1], @"texCoords", nil]
                                            uniforms:[NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithInt:0], @"sampler0",
                                                                                                [NSNumber numberWithInt:0], @"viewProjectionMatrix",nil]];

    render.fsv :

    uniform sampler2D sampler0;
    varying highp vec2 _texcoord;
    void main()
    { gl_FragColor = texture2D(sampler0, _texcoord);}

    render.vsf :

    attribute vec4 position;
    attribute vec2 texCoords;
    varying  vec4 colorVarying;
    varying vec2 _texcoord;
    uniform mat4 viewProjectionMatrix;

    void main()
    {   _texcoord = texCoords;  
    gl_Position = viewProjectionMatrix * position;}

    How I can implement your solution in this code ?