
Recherche avancée
Médias (91)
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Echoplex (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Discipline (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Letting you (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
999 999 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (89)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (9433)
-
Bad quality video after watermarking with ffmpeg with live video
16 juillet 2014, par user3478006Im using ffmpeg to re-stream, only thing is im trying to add a watermark as well, here is my code :
ffmpeg -i - -isync -maxrate 300k -vcodec copy -b 150k -acodec copy -b 48k -s 640x380 -vcodec libx264 -preset veryfast -vf "movie=img.png [watermark] ; [in][watermark] overlay=10:10 [out]" -f flv "rtmp ://xxx.xxx.xxx/live/stream flashver=FME/3.0\20(compatible ;\20FMSc/1.0)"
The problem im getting is that the quality of the stream is terrible, compltetly unwatchable, audio is great but the video quality is madly bad, so how would i improve it please, im useless at this type of thing so if someone could give me the full code id be ever so grateful,
-
Mux audio and video with c api ffmpeg [on hold]
18 juillet 2014, par EricNguyenI just wanna muxing video file. Same as in this link
I’m try to read sample from ffmpeg home page, but it makes me confuse. Can anyone share some more sample about this ?
And i’ve use ffmpeg sample, but the result is a video with all black frames :(
-
OS X uploads .mp4 as quicktime ? [on hold]
15 janvier 2014, par daledI'm running into a rather peculiar issue uploading .mp4 from any browser on OS X. I'm using ffmpeg to convert files and .mp4's uploaded from OS X are causing issues.
First off, the file I'm uploading is not corrupt. Here is the relevant exiftool output on the file I'm uploading. This is the original file on the client.
File Type : MP4
MIME Type : video/mp4
Major Brand : MP4 Base w/ AVC ext [ISO 14496-12:2005]
Minor Version : 0.0.0
Compatible Brands : avc1, isomNow here's the exiftool output on the server for the same file :
File Type : MOV
MIME Type : video/quicktime
Major Brand : Apple QuickTime (.MOV/QT)
Minor Version : 2005.3.0
Compatible Brands : qtFfmpeg will recognize the first file just fine. Everything will work perfectly and I can convert it however I choose. But the second file, I'll get this error :
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x3855180] stream 0, error opening alias: path='/Users/', dir='20130602-113438', filename='GOPR0018.MP4', volume='Macintosh HD', nlvl_from=-1, nlvl_to=-1
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x3855180] stream 1, error opening alias: path='/Users/', dir='20130602-113438', filename='GOPR0018.MP4', volume='Macintosh HD', nlvl_from=-1, nlvl_to=-1Here is the FFmpeg command I am using :
ffmpeg -y -probesize 2147483647 -analyzeduration 2147483647 -i "'.$oldFilename.'" -vcodec libtheora -q:v 0 -acodec libvorbis -q:a 0 "'.$newFilenameOGG.'" 2>&1
This command works fine with every file type besides this file. It seems like ffmpeg is seeing the uploaded file as a corrupt quicktime file instead of a valid mp4 file. So my question is, how is this metadata magically changing ?