
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (58)
-
Publier sur MédiaSpip
13 juin 2013Puis-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 -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ; -
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.
Sur d’autres sites (9467)
-
Why FFMPEG PNG image compression output file bigger than input file ?
8 janvier 2018, par Nuwan ChamaraI have tested following ffmpeg against several images following code for compression.
C:\ffmpeg\bin\ffmpeg -y -i .\ff.png .\ff_out.png
for jpg images its reduces the file size but for some png images it gives output file larger than input file. i got smaller output file only for image which bit depth = 8.
-
Opening a video file from local drive as buffer and write it into new file
19 avril 2017, par laslavincoI have multiple broken video files of one same video I need to join them together as one video again but when I tried this
import os
path = 'C:/temp/test'
files = os.listdir(path)
for file in files:
mainFile = open('C:/temp/main.mp4','ab')
with open(path+'/'+file,'rb') as read:
print (read)
mainFile.write(read)
mainFile.close()It threw an Error saying
TypeError: must be string or buffer, not file
So I don’t know how do I make a video file buffer. I tried googling it and I found something called ffmpeg but it’s a third party app. All I need is buffer of a file.
-
Encoding sounds to play in a Google Hangouts app with ffmpeg
12 mai 2014, par user3463570I have a Google Hangouts app and I am trying to let the user play a sound that I provide.
Google has this covered, with its Audio Resource, but it only accepts specifically encoded sound files, PCM 16 wav files.
I have been trying to encode my files using ffmpeg, but it does not seem to be working.
Any idea as to what I am doing wrong ?Here is my ffmpeg command line :
ffmpeg -i sound.mp3 -map_metadata -1 -flags bitexact sound.wavThanks for your help