Recherche avancée

Médias (0)

Mot : - Tags -/logo

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

Autres articles (101)

  • 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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

Sur d’autres sites (8243)

  • avcodec/hevc : remove videotoolbox hack

    4 mai 2018, par Aman Gupta
    avcodec/hevc : remove videotoolbox hack
    

    No longer required since 63d875772d. The equivalent hack
    for h264 was removed in that commit, but this one was missed.

    Signed-off-by : Aman Gupta <aman@tmm1.net>

    • [DH] libavcodec/hevc_refs.c
  • using ffmpeg/ffprobe to create a waveform json using php

    7 mars 2015, par edwardsmarkf

    I have many ogg & opus files on my server and need to generate json-waveform numeric arrays on an as-needed basis (example below).

    recently i discovered the node based waveform-util which uses ffmpeg/ffprobe for rendering a JSON waveform and it works perfectly. i am undecided if having a node process constantly running is the optimum solution to my issue.

    since ffmpeg seems to be able to handle anything i can throw at it, i wish to stick with an ffmpeg solution.

    i have three questions :

    1) is there a php equivalent ? i have found a couple that generate PNG images but not one that generates JSON-waveform numeric arrays

    2) are there any significant advantages of going with the node-based solution rather than a php based solution (assuming there is a php based solution) ?

    3) is there a way using CLI ffmpeg/ffprobe to generate a json-waveform ? i saw all the -show_ options (-show_data, -show_streams, -show_frames) but nothing looked like it produced what i am looking for.

    the json-waveform needs to be in this format :

    [ 0.0002, 0.001, 0.15, 0.14, 0.356 .... ]

    thank you all.

  • encode x264(libx264) raw yuv frame data

    26 juin 2015, par Mohamed El-Sayed

    I am trying to encode an MP4 video using raw YUV frames data, but I am not sure how can I fill the plane data (preferably without using other libraries like ffmpeg)

    The frame data is already encoded in I420, and does not need conversion.

    Here is what I am trying to do :

    const char *frameData = /* Raw frame data */;

    x264_t *encoder = x264_encoder_open(&amp;param);
    x264_picture_t imgInput, imgOutput;
    x264_picture_alloc(&amp;imgInput, X264_CSP_I420, width, height);

    // how can I fill the struct data of imgInput

    x264_nal_t *nals;
    int i_nals;
    int frameSize = x264_encoder_encode(encoder, &amp;nals, &amp;i_nals, &amp;imgInput, &amp;imgOutput);

    The equivalent command line that I have found is :

    x264 --output video.mp4 --fps 15 --input-res 1280x800 imgdata_01.raw

    But I could not figure out how the app does it.

    Thanks.