Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (96)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (7106)

  • FFmpeg + ffplay bad codec ?

    26 avril 2014, par Tomas Lysek

    i am creating video player by using ffmpeg.

    But when i install ffmpeg and use ffplay to any video (for instance clock.avi) i had this result :

    Image with bad video

    Input #0, avi, from 'video.avi':
     Duration: 00:00:12.00, start: 0.000000, bitrate: 55 kb/s
       Stream #0:0: Video: msrle ([1][0][0][0] / 0x0001), pal8, 321x321, 1 fps, 1 tbr, 1 tbn, 1 tbc
     Metadata:
         title           : CLOCK.avi Video #1
    Stream #0:1: Audio: truespeech ([34][0][0][0] / 0x0022), 8000 Hz, mono, s16, 8 kb/s
    Metadata:
     title           : Microsoft Waveform: 12TONEt2.WAV

    I am using latest ffmpeg and ubuntu 12.04. I tried install ubuntu-restricted-extras, but it doesn’t help.

    Any thoughts ? Thanks !

  • openRTSP TCP 100% Cpu

    25 avril 2014, par user1199722

    First thanks for the great work for live media group.
    I am currently facing a problem with OpenRTSP utilizing cpu 100%.
    I am using the following commands to stream from remote ipcamera through internet. It works fine with local cameras.
    But when I try to stream from Internet IP camera (720p), At random times openRTSP start uses 100% cpu and stops output of streaming. The process is not exiting it stay with 100% cpu.

    I have observed that stream stops with a series of "c9c99c999......."
    I am using TCP streaming of rtsp.
    Please find the command that i am using.

    openRTSP -d 60 -v -t -c -b 800000 | /bin/ffmpeg -r 15 -i - -codec copy -hls_list_size 65535 -hls_time 5

    Please provide your suggestions regarding the problem
    Waiting for your valuable pointers.

  • Combine two ffmpeg commands to produce one audio output

    28 novembre 2020, par Martynas Jurkus

    I want to use libopus to augment my audio using this decoder.

    


    I can use it like this :

    


    ffmpeg -i input.wav -c:a libopus -b:a 5.5k -ar 8000 output_550.ogg
ffmpeg -i output_550.ogg -ar 8000 output_550_ogg.wav


    


    But I can't convert directly to wav - I get errors like these :

    


    [wav @ 0x7fa9ac808800] opus codec not supported in WAVE format
Could not write header for output file #0 (incorrect codec parameters ?): Function not implemented
Error initializing output stream 0:0 --


    


    How could I combine these to to get wav with a single command ?