Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (50)

  • 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

  • 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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (9969)

  • (PHP5) shell_exec("wine ffmpeg.exe") in ubuntu version 14

    29 juillet 2017, par user235423423424

    How to start wine in php shell_exec("wine ffmpeg.exe") ; ?

    (ubuntu version 14 server)

    install

    sudo apt-get install wine -y

    php5 code :

    $cmd = "wine ffmpeg.exe upload/image.jpg"
    shell_exec($cmd);

    ffmpeg.exe location :
    /var/www/html/

    wine is not starting ?

    Linux version of FFmpeg ?, how to run PHP shell_exec() ?

    Server domain is not on shared hosting

    permissions on www-data could be problem ?

    command ffmpeg successfull in terminal !

    there is a permission issue, just tested and command is correct.
    either ffmpeg.exe or wine have incorrect permissions.

    Command (ffmpeg.exe)

    chmod 755 ffmpeg.exe
    chown www-data ffmpeg.exe

    Command (/usr/bin/wine)

    chmod 755 wine
    chown www-data wine

    sudo service apache2 restart

    still not working, could be more ’wine’ files to apply permissions to.
    I’m not able to output any error, and command to ffmpeg is correct from terminal the problem must be permissions

  • smacker : Check that the data size is a multiple of a sample vector

    15 novembre 2015, par Michael Niedermayer
    smacker : Check that the data size is a multiple of a sample vector
    

    Fixes out of array access
    Fixes : ce19e41f0ef1e52a23edc488faecdb58/asan_heap-oob_2504e97_4202_ffa0df1baed14022b9bfd4f8ac23d0cb.smk

    Bug-Id : CVE-2015-8365
    CC : libav-stable@libav.org

    Found-by : Mateusz "j00ru" Jurczyk and Gynvael Coldwind
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>
    (cherry picked from commit 4a9af07a49295e014b059c1ab624c40345af5892)
    Signed-off-by : Diego Biurrun <diego@biurrun.de>

    • [DBH] libavcodec/smacker.c
  • ffmpeg - "Could not find the codec parameters" (Live Stream)

    8 mai 2017, par Gagandeep Singh

    I am trying to record a live HTTP stream using the following command :

    ffmpeg -analyzeduration 2147483647 -probesize 2147483647  -i "http://mumsite.cdnsrv.jio.com/jioplay.catchup.cdn.jio.com/recordings/H8_S480_H264_MP/2556/1493919000.mp4/init/LIVEPROGRAM_CHANNEL_2556_START_1493919000_END_1493922600?uid=guest_uid&amp;recid=SCHEDULED-A00B00C00D00E00F-_-_-2556_48168092&amp;shard=shard_a&amp;sid=77179867662431494241905&amp;i=2&amp;nwk=WIFI&amp;pk=1&amp;CurrentNetworkType=WIFI&amp;CurrentNetworkType=WIFI" -c copy -absf aac_adtstoasc testing.ts

    Below is a screenshot of the ff-prompt console :

    http://i64.tinypic.com/331d55w.jpg

    It looks like the URL is correct but no data is being saved in the file and these warning messages are shown :

    multiple fourcc not supported

    Could not find codec parameters for stream 1 (Video : none (encv /
    0x76636E65), none, 576x432) : unknown codec

    How do I determine which codec would handle that stream or is the reason something else ?