Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (99)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (10254)

  • Revision cc6117d0f3 : update nestegg + prune some unused files https://github.com/kinetiknz/nestegg.

    14 décembre 2013, par James Zern

    Changed Paths :
     Delete /nestegg/.gitignore


     Add /nestegg/0001-include-paths.diff


     Add /nestegg/0002-ne_read_simple-uninitialized_variable.diff


     Modify /nestegg/AUTHORS


     Delete /nestegg/Makefile.am


     Add /nestegg/README.webm


     Delete /nestegg/configure.ac


     Delete /nestegg/docs/Doxyfile.in


     Delete /nestegg/docs/Makefile.am


     Modify /nestegg/halloc/src/halloc.c


     Modify /nestegg/include/nestegg/nestegg.h


     Delete /nestegg/m4/as-ac-expand.m4


     Delete /nestegg/m4/ax_create_stdint_h.m4


     Delete /nestegg/m4/pkg.m4


     Delete /nestegg/nestegg-uninstalled.pc.in


     Delete /nestegg/nestegg.pc.in


     Modify /nestegg/src/nestegg.c


     Modify /nestegg/test/test.c


     Modify /test/webm_video_source.h


     Modify /webmdec.c



    update nestegg

    + prune some unused files

    https://github.com/kinetiknz/nestegg.git

    commit f46223191d8116a36bf299b5b9793fcb798417b1
    Merge : 0851279 4b0190a
    Author : Matthew Gregan <kinetik@flim.org>
    AuthorDate : Wed Nov 27 13:50:43 2013 -0800
    Commit : Matthew Gregan <kinetik@flim.org>
    CommitDate : Wed Nov 27 13:50:43 2013 -0800

    Merge pull request #15 from shadone/master

    Fix compiler warning.

    Change-Id : I59eecdd68fced1ef61b67d446735539628d81484

  • Yes or no, will ffmpeg api do hardware decoding on iOS ?

    15 janvier 2019, par Fattie

    There seems to be conflicting information on this.

    https://trac.ffmpeg.org/wiki/HWAccelIntro

    notice the first diagram, it firmly marks iOS as “Y” on VideoToolbox

    enter image description here

    however in the comments down the bottom it says

    VideoToolbox. ​VideoToolbox, only supported on macOS. H.264 decoding is available in FFmpeg/libavcodec.

    And in the confusing second diagram it says "Standalone" is not done for VideoToolbox.

    We have found that using ffmpeg compiled in to iOS .... it seems to not use hardware decoding, which is really a pain.

    1. With avcodec_get_hw_config() we get AV_PIX_FMT_VIDEOTOOLBOX, AV_HWDEVICE_TYPE_VIDEOTOOLBOX which is seemingly correct.

    2. But usage and framerates clearly shows everything is being done in CPU. The code is in ff_hevc_hls_residual_coding all the time. (That’s fffmpeg’s software decoder.)

    3. This very diff very long git.videolan.org URL here seems to suggest again it should all be working.

    4. Have tried every iPhone etc. of course

  • sh : ffmpeg : command not found when run command through php

    9 avril 2015, par Ashok

    I have installed successfully installed FFMpeg on root of my Centos 6 machine (https://trac.ffmpeg.org/wiki/CompilationGuide/Centos).

    My workplace of apache/php is /var/www/html

    Now I’m running below command successfully on /var/www/html directory to capture frame from the video file. It’s capturing a frame.

    [root@localhost html]# ffmpeg -i video.mpg -an -ss 30  -t 00:00:01 -r 1 -y -vcodec mjpeg -f mjpeg -s 160x100 frame8  2>&amp;1

    I want to run this command through php and using shell_exec() or exec() php functions. My php code for running the command is :

    $cmd = "/root/bin/ffmpeg -i /project/app/webroot/videos/video.mpg -ss 00:00:14.435 -f image2 -vframes 1 /project/app/webroot/videothumbnails/example-thumb.jpg";
    $locale = 'en_IN.UTF-8';
    setlocale(LC_ALL, $locale);
    putenv('LC_ALL='.$locale);
    echo shell_exec($cmd);

    When I’m trying to run command through above php code, I’m getting below error :

    sh: ffmpeg: command not found

    Please help me to solve out this problem.