Recherche avancée

Médias (1)

Mot : - Tags -/graphisme

Autres articles (40)

  • 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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

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

  • Convert audo from 2.0 to 5.1 for TVHeadend IPTV from m3ub stream using ffmpeg pipe

    17 mai 2020, par Brad T

    Right now, I have TVHeadend successfully setup to stream an m3ub as an IPTV channel with :

    



    pipe:///usr/bin/ffmpeg -i https://STREAM.m3u8 -c copy -f mpegts pipe:1

    



    but I want to convert the audio from 2.0 to 5.1 where the left and right audio is just copied to all the 5.1 channels. For example, instead of only hearing voice dialog on the center channel I want to hear it on all channels. If you're wondering why, this 5.1 system isn't really for making a surround sound experience so much as it is to bring the voice "closer" to the person.

    



    I'm using a raspberry pi 4 with raspian buster lite.

    


  • Use promise.pipe for jQuery version before v1.8.

    15 mai 2020, par blueimp
    Use promise.pipe for jQuery version before v1.8.
    

    jQuery versions before 1.8 require promise.pipe if the return value is used, as promise.then in older versions has a different behavior, see :
    - https://blog.jquery.com/2012/08/09/jquery-1-8-released/
    - https://bugs.jquery.com/ticket/11010
    - #3435
    Resolves #3536, Resolves #3538

  • AVPlayer does not play MPEGTS stream generated by FFMPEG and gives error while writing to socket 9 : Broken pipe (32)

    29 mars 2020, par Farooq Nasim Ahmad

    If I generate an MPEGTS stream with following command using FFMPEG

    ./ffmpeg  -i test5seconds.mov -g 60 -hls_time 2 -c:v libx264 -profile:v baseline  -level 3.0 -framerate 30  see.m3u8

    It is successfully played by AVPlayer. But if I generate stream through following command send on UDP and then record.

    ./ffmpeg  -i test5seconds.mov -g 60 -framerate 25  -c:v libx264 -profile:v baseline  -level 3.0 -framerate 30 -f mpegts "udp://192.168.8.137:1234?pkt_size=1316"

    The AVPlayer gives following error "Error while writing to socket 9 : Broken pipe (32)".