
Recherche avancée
Autres articles (45)
-
Qualité du média après traitement
21 juin 2013, parLe bon réglage du logiciel qui traite les média est important pour un équilibre entre les partis ( bande passante de l’hébergeur, qualité du média pour le rédacteur et le visiteur, accessibilité pour le visiteur ). Comment régler la qualité de son média ?
Plus la qualité du média est importante, plus la bande passante sera utilisée. Le visiteur avec une connexion internet à petit débit devra attendre plus longtemps. Inversement plus, la qualité du média est pauvre et donc le média devient dégradé voire (...) -
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
Sur d’autres sites (7146)
-
Generate 7.1 surround sound file and simultaneously play it on 8 speakers ? [on hold]
16 août 2019, par AnthonyIs 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.
-
MediaPlayer doesn't play second audio track in HLS
9 février 2017, par Yehor NemovDoes 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.m3u8P.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 TI'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



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