Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (64)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (4946)

  • Changing int main() to JNI interface prototype

    13 mars 2012, par iSun

    I changed ffmpeg.c according following link :

    http://www.roman10.net/how-to-port-ffmpeg-the-program-to-androidideas-and-thoughts/

    He said the change main () to JNI interface prototype. Well, I'm not familiar with JNI interface prototype, but I read an article about JNI and change it accordingly.

    Can anyone look at my code to see is this true or not ?

    JNIEXPORT jint JNICALL Java_com_ffmpegtest_MainActivity_main(JNIEnv *pEnv, int argc, char **argv) {
    int64_t ti;

    av_log_set_flags(AV_LOG_SKIP_REPEATED);

    if(argc>1 && !strcmp(argv[1], "-d")){
    run_as_daemon=1;
    verbose=-1;
    av_log_set_callback(log_callback_null);
    argc--;
    argv++;

    }

    avcodec_register_all();
    #if CONFIG_AVDEVICE
    avdevice_register_all();
    #endif
    #if CONFIG_AVFILTER
    avfilter_register_all();
    #endif
    av_register_all();

    #if HAVE_ISATTY
    if(isatty(STDIN_FILENO))
    avio_set_interrupt_cb(decode_interrupt_cb);
    #endif

    init_opts();

    if(verbose>=0)
    show_banner();

    /* parse options */
    parse_options(argc, argv, options, opt_output_file);

    if(nb_output_files <= 0 && nb_input_files == 0) {
    show_usage();
    fprintf(stderr, "Use -h to get full help or, even better, run 'man ffmpeg'\n");
    ffmpeg_exit(1);
    }

    /* file converter / grab */
    if (nb_output_files <= 0) {
    fprintf(stderr, "At least one output file must be specified\n");
    ffmpeg_exit(1);
    }

    if (nb_input_files == 0) {
    fprintf(stderr, "At least one input file must be specified\n");
    ffmpeg_exit(1);
    }

    ti = getutime();
    if (transcode(output_files, nb_output_files, input_files, nb_input_files,
    stream_maps, nb_stream_maps) < 0)
    ffmpeg_exit(1);
    ti = getutime() - ti;
    if (do_benchmark) {
    int maxrss = getmaxrss() / 1024;
    printf("bench: utime=%0.3fs maxrss=%ikB\n", ti / 1000000.0, maxrss);
    }

    return ffmpeg_exit(0);
    }
  • vdpau/h264 : request MAIN rather than BASELINE VDPAU profile for CBP

    26 octobre 2014, par Rémi Denis-Courmont
    vdpau/h264 : request MAIN rather than BASELINE VDPAU profile for CBP
    

    The H.264 Constrained Baseline Profile (CBP) is a subset of both the
    Main Profile and the Baseline Profile. In principles, a hardware
    decoder that supports either of those can decode CBP content. As it
    happens, Main is supported by all VDPAU drivers, and Baseline is not.

    So favor map CBP to MP for now. Hopefully in the future libvdpau will
    offer an explicit choice for CBP.

    This fixes bug 757.

    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DH] libavcodec/vdpau_h264.c
  • avformat/asfdec_f : factor error checking out of main header parsing loop

    1er juillet 2015, par John Adlum
    avformat/asfdec_f : factor error checking out of main header parsing loop
    

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/asfdec_f.c