Recherche avancée

Médias (0)

Mot : - Tags -/interaction

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

Autres articles (97)

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

  • MediaPlayer doesn't play second audio track in HLS

    9 février 2017, par Yehor Nemov

    Does anybody know how properly play (via Android MediaPlayer) or convert media file with 1 video track and 2 audio tracks to enable 2nd audio playback ?

    Conversion is done with FFMPEG utility :

    ffmpeg -i sample.mp4 -map 0:0 -map 0:1 -map 0:2 \
       -vcodec h264 -acodec:0 aac -acodec:1 aac \
       -strict -2 -f hls -hls_list_size 0 sample.m3u8

    P.S. Media conversion is checked manually with VLC media player (audio tracks are presented and available to be switched).

  • is it possible to play FFplay video on QVideoWidget ?

    8 octobre 2022, par Eswar T

    I'm trying to build a video editing software in which before rendering we need to show the video to user so i though of using ffplay to do it and it worked for me(opening in a new window) but now i want to place in a fixed QVideoWidget so the output will be displayed their

    


    A basic GUI image will be added below
enter image description here

    


    a code to display a simple video and it works fine now i want add

    


    ffplay input.mp4


    


    So it plays video even editing videos

    


    self.player = QtMultimedia.QMediaPlayer(None, QtMultimedia.QMediaPlayer.VideoSurface)
file = os.path.join(os.path.dirname(__file__), "Input.mp4")
self.player.setMedia(QtMultimedia.QMediaContent(QtCore.QUrl.fromLocalFile(file)))
self.player.setVideoOutput(self.widget)
self.player.play()


    


    Currently, my application plays video like this in a separate window but I want to play it in that black box Hope now its a bit clear
enter image description here

    


  • How to play videos that only contain P frames (no I frames) on iOS ?

    9 septembre 2016, par Clement Wang

    I am trying to play a raw .264 file on iOS that only contains P frames (no keyframes included), but it fails to play with multiple open source FFmpeg video players such as kxmovie or ijkplayer.

    The error log shows non-existing PPS 0 referenced, however the SPS and PPS information is already embedded in the frames. I am wondering if it is possible to play P-frame only videos with a modified version of FFmpeg or any other open source library/player.