Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (32)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • 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.

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (6450)

  • ffmpeg is not working on live server in PHP

    11 mai 2017, par thakur

    I have downloaded the ffmpeg package and set the path of usr/bin of ffmpeg .By this ffmpeg is running on the localhost correctly as shell_exec('ffmpeg -versoin');, but when I run the same code on live server ffmpeg is not working.

    I have also set the correct directory path for live server. The problem is all other commands is running correctly on live server except ffmpeg.

  • When i try to convert live http streams to .flv file i am getting this error

    11 novembre 2014, par user3932031

    C :\Program Files\ffmpeg>ffmpeg -re -i http://82.135.224.134/udp/239.100.2.20:1234 -c:v libx264 -b:v 5M -pix_fmt yuv420p -c:a:0 libfdk_aac -b:a:0 480k -f flv abc.flv

    I am running above command. I am getting folloing error:

    [h264 @ 0154f300]sps_id out of range
    [h264 @ 0154f300]non-existing SPS 32 referenced in buffering period
    [h264 @ 0154f300]non-existing PPS referenced
    [h264 @ 0154f300]sps_id out of range
    [h264 @ 0154f300]non-existing SPS 32 referenced in buffering period
    [h264 @ 0154f300]non-existing PPS 0 referenced
    [h264 @ 0154f300]decode_slice_header error
    [h264 @ 0154f300]no frame!
    .
    .
    .
    .
    .
    [mpegts @ 023c1700]max_analyze_duration reached
    [mpegts @ 023c1700]Estimating duration from bitrate, this may be inaccurate
    Input #0, mpegts, from 'http://82.135.224.134/udp/239.100.2.20:1234':
     Duration: N/A, start: 63180.879433, bitrate: 62 kb/s
     Program 1
       Stream #0.0[0x3e9]: Video: h264, yuv420p, 720x576 [PAR 1:1 DAR 5:4], 38.11 f
    ps, 25 tbr, 90k tbn, 50 tbc
       Stream #0.1[0x3ea]: Audio: aac, 22050 Hz, stereo, s16, 62 kb/s
    Unrecognized option 'c:v'

    How can i solve this error ? Please help me.

  • How to live stream a local video using FFmpeg

    7 mai 2017, par param trivedi

    I am trying to get used to the FFmpeg library, and currently, I have been trying to stream local video on VLC using FFmpeg.

    The command I have been using is :

    $ ffmpeg -i sample.mp4 -v 0 -vcodec mpeg4 -f mpegts udp://127.0.0.1:23000

    I have not been able to stream the file on VLC.

    Any help is appreciated.