
Recherche avancée
Médias (91)
-
Spoon - Revenge !
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
My Morning Jacket - One Big Holiday
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Zap Mama - Wadidyusay ?
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
David Byrne - My Fair Lady
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Beastie Boys - Now Get Busy
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (94)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
MediaSPIP Player : problèmes potentiels
22 février 2011, parLe lecteur ne fonctionne pas sur Internet Explorer
Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)
Sur d’autres sites (11762)
-
pyglet_ffmpeg loads and plays video in script(.py) but not loading(media load) in executable
24 février 2020, par Mahesh Dilip Salvii am playing full screen video in pyglet application which just plays video as follows, the script(.py) file loads mp4 video(as mediaload) and plays it well (windowed/fullscreen) but after making it executable with pyinstaller command (pyinstaller -w -F .\videoPlay.py) it is not loading media.
*i identified it with ’try-except’ block with help of ctypes.MessageBox
Please assist me by checking following thing.import pyglet, pyglet_ffmpeg
pyglet_ffmpeg.load_ffmpeg()
vidPath = 'm2Vid.mp4'
window = pyglet.window.Window() #fullscreen=True
player = pyglet.media.Player()
source = pyglet.media.StreamingSource()
MediaLoad = pyglet.media.load(vidPath)
player.on_player_eos = window.close
player.queue(MediaLoad)
player.play()
@window.event
def on_draw():
if player.source and player.source.video_format:
player.get_texture().blit(0,0)
pyglet.app.run() -
Missing library files in PyInstaller with FFMPEG
9 mars 2020, par djcmm476I’m quite new to PyInstaller, but I’m trying to get it to build an exe from a little set of scripts I’ve written. Unfortunately, I use a couple of different modules, like FFMPEG (through FFPyPlayer). When I try to build I get :
360570 WARNING : lib not found : avformat-58.dll dependency of c :\users\me\appdata\local\programs\python\python37\lib\site-packages\ffpyplayer\player\player.cp37-win_amd64.pyd
360572 WARNING : lib not found : SDL2_mixer.dll dependency of c :\users\me\appdata\local\programs\python\python37\lib\site-packages\ffpyplayer\player\player.cp37-win_amd64.pyd
360573 WARNING : lib not found : swresample-3.dll dependency of c :\users\me\appdata\local\programs\python\python37\lib\site-packages\ffpyplayer\player\player.cp37-win_amd64.pyd
360578 WARNING : lib not found : avdevice-58.dll dependency of c :\users\me\appdata\local\programs\python\python37\lib\site-packages\ffpyplayer\player\player.cp37-win_amd64.pyd
360580 WARNING : lib not found : swscale-5.dll dependency of c :\users\me\appdata\local\programs\python\python37\lib\site-packages\ffpyplayer\player\player.cp37-win_amd64.pyd
360582 WARNING : lib not found : avfilter-7.dll dependency of c :\users\me\appdata\local\programs\python\python37\lib\site-packages\ffpyplayer\player\player.cp37-win_amd64.pyd
360583 WARNING : lib not found : postproc-55.dll dependency of c :\users\me\appdata\local\programs\python\python37\lib\site-packages\ffpyplayer\player\player.cp37-win_amd64.pyd
360584 WARNING : lib not found : avutil-56.dll dependency of c :\users\me\appdata\local\programs\python\python37\lib\site-packages\ffpyplayer\player\player.cp37-win_amd64.pyd
360586 WARNING : lib not found : avcodec-58.dll dependency of c :\users\me\appdata\local\programs\python\python37\lib\site-packages\ffpyplayer\player\player.cp37-win_amd64.pyd
I couldn’t find these dlls, but I found them on the ffmpeg site and tried to point PyInstaller right at them using —paths, but it doesn’t make a difference.
Does anyone have any suggestions ? They’d be greatly appreciated.
-
ffmpeg concatenate videos - what metadata needs to match [duplicate]
13 juillet 2022, par yarricharI am trying to concatenate videos that can come from a variety of sources.


I was just using the -f concat option, but this runs into issues when the formats don't watch.


I can use the filter_complex option (as described in the wiki - https://trac.ffmpeg.org/wiki/Concatenate) but this is much slower.


What metadata (codec, bitrate, fps, etc) needs to match so that I can use the faster -f concat option to join the videos ? My understanding here is not great atm.