Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (48)

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

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (8984)

  • 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

    


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

  • Generate 7.1 surround sound file and simultaneously play it on 8 speakers ? [on hold]

    16 août 2019, par Anthony

    Is there any software can do something like "receive 8 different audio sources and simultaneously play them on 7.1 surround sound speakers" ?

    Right now, I just use the ffmpeg to combine 8 audio to 1 audio file, but this is a little bit delay and I don’t prefer to generate the file.