Recherche avancée

Médias (1)

Mot : - Tags -/vidéo

Autres articles (52)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • 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

Sur d’autres sites (8651)

  • installing and using ffmpeg-php in my wamp apache

    6 mars 2016, par sonam Sharma

    enter image description herehey there i am developing a video sharing site and i need to change the video format and get its thumbnail etc i know this can be done by ffmpeg-php library.

    but i have never used any php lib before .
    i have successfully installed ffmpeg to my system (laptop) i can check it by typing library ffmpeg -version to my comand prompt it says something like this

     Microsoft Windows [Version 6.1.7600]
    Copyright (c) 2009 Microsoft Corporation.  All rights reserved.

      C:\Windows\system32>ffmpeg -version
     ffmpeg version N-73818-g9ebe041 Copyright (c) 2000-2015 the FFmpeg developers
       built with gcc 4.9.2 (GCC)
     configuration: --enable-gpl --enable-version3 --disable-w32threads --      enable-avis
     ynth --enable-bzlib --enable-fontconfig --enable-frei0r --enable-gnutls --enable
      -iconv --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --en
    able-libdcadec --enable-libfreetype --enable-libgme --enable-libgsm --enable-lib
        ilbc --enable-libmodplug --enable-libmp3lame --enable-libopencore-amrnb --enable
    -libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable-librtmp --enab
       le-libschroedinger --enable-libsoxr --enable-libspeex --enable-libtheora --enabl
      e-libtwolame --enable-libvidstab --enable-libvo-aacenc --enable-libvo-amrwbenc -
        -enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-
       libx264 --enable-libx265 --enable-libxavs --enable-libxvid --enable-lzma --enabl
      e-decklink --enable-zlib
     libavutil      54. 28.100 / 54. 28.100
     libavcodec     56. 49.101 / 56. 49.101
     libavformat    56. 40.101 / 56. 40.101
    libavdevice    56.  4.100 / 56.  4.100
    libavfilter     5. 25.100 /  5. 25.100
     libswscale      3.  1.101 /  3.  1.101
     libswresample   1.  2.101 /  1.  2.101
      libpostproc    53.  3.100 / 53.  3.100

    but i am having problem with accessing the library by my php code i think i have’t installed it to my php module

    here is what my wamp shows me

     Server Configuration
     Apache Version :
     2.4.9   - Documentation
     PHP Version :
      5.5.12   - Documentation
      Server Software:
       Apache/2.4.9 (Win64) PHP/5.5.12
          Loaded Extensions :
               apache2handlerbcmathbz2calendarcom_dotnetCorectypecurlda
        tedomeregexiffileinfofil[![enter image description here][1]][1]terftpgdgettextgmphashiconvimapjsonlib
         xmlmbstringmcryptmhashmysqlmysqlimysqlndod
         bcopensslpcrePDOpdo_mysqlpdo_sqlitePharReflectio
        nsessionshmopSimpleXMLsoapsocket    sSPLsqlite3standardtokenizerwddxxdebugxmlxmlreaderxmlrpcxmlwriterxslzipzlib
          MySQL Version :
          5.6.17  -  Documentation

    if possible please tell me the next step so that i can access the ffmpeg lib from my php code .
    a little help is also appreciated.
    1.please tell me any link availabe to get the ffmpeg-php module and how to installl it
    2.how to access the module/lib from my code justa small code example.

    THANK YOU.

  • lavc/hevc : rudimentary support for skip_loop_filter.

    23 juillet 2015, par Nicolas George
    lavc/hevc : rudimentary support for skip_loop_filter.
    

    + 9% speed on Core i5 on test sample.

    All frames are treated as ref frames, skipping only applies
    at level "all". The following mail contains information on
    how to improve that :
    http://ffmpeg.org/pipermail/ffmpeg-devel/2015-July/176116.html

    • [DH] doc/decoders.texi
    • [DH] libavcodec/hevc_filter.c
  • Using FFMPEG on AWS lambda

    16 juillet 2015, par Andy Maddio

    I’m trying to use ffmpeg with AWS lambda.
    I followed some guidelines like :

    AWS Lambda making video thumbnails
    or
    https://github.com/binoculars/aws-lambda-ffmpeg

    But still not working on my environment.
    FFMpeg is not found or I can’t run it, and I don’t understand why ...

    I got this kind of error :

    /bin/sh: ffmpeg: command not found

    My folder looks like this :

    -rw-rw-r-- 1 slicer 497 2474        Jul 16 2015     app.js
    -rw-rw-r-- 1 slicer 497 31245520    Jul 15 07:08    ffmpeg
    drwxrwxr-x 4 slicer 497 4096        Jul 16 05:22    node_modules

    In the app.js, I’m calling ffmpeg like this :

    var exec = require('child_process').exec;
    var process = exec('ffmpeg -i "http://..." -filter:v "select=not(mod(n\\,25)),setpts=N/((25/1)*TB)" -vsync 0 -s 1600x900 -f image2 "Thumb_%06d.jpg"', {}, function (error, stdout, stderr) {
       });

    I tried with

    process.env['PATH'] = process.env['PATH'] + "/" + process.env['LAMBDA_TASK_ROOT']

    Same error and the command "ls -l" is not more available ...
    I tried to change the permissions on the ffmpeg file, with chmod 755 but I don’t have the permission "operation not permitted"

    I upload the zip file with Visual Studio 2013 and AWS Toolkit and I downloaded the FFMpeg file on the johnvansickle website

    What I supposed to do ? What’s wrong with my solution ?

    Thank you,