
Recherche avancée
Médias (3)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (75)
-
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (12003)
-
Resources for learning Metal for Video Editing [on hold]
28 septembre 2019, par Andrew SawyerI am trying to build a video editing system in Swift for my iOS app. I assume that Metal would be the best system for this as it is extremely powerful. I am unsure where to start learning about Metal because most resources are related to game development.
In V1 of my app I have used AVFoundation and an AVMutableComposition. However, in this version I need something more complex where I am able to do more effects, layering, etc.
Is Metal the best way to do this or would another method (FFMpeg, Open GL, etc.) be better ?
If so, what are the best resources to learn how to use Metal for this application ?Thank You !
-
ffmpeg : Invalid argument, [NULL @ 0x22e2240] Unable to find a suitable output format for 'ffmpeg'
14 février 2016, par user3788285I am trying to convert video from images wit the music in background
command is working fine in the terminal but while using into php it’s giving error :
this is the command i am trying :
/usr/local/bin/ffmpeg ffmpeg -framerate 1/5 -i image%01d.png -i song.mp3 -c:v libx264 -c:a aac -strict experimental -b:a 192k -r 30 -pix_fmt yuv420p -t 10 output.mp4 2>&1
array(21) {
[0]=>
string(83) "ffmpeg version git-2016-02-13-588e2e3 Copyright (c) 2000-2016 the FFmpeg developers"
[1]=>
string(56) " built with gcc 4.4.7 (GCC) 20120313 (Red Hat 4.4.7-16)"
[2]=>
string(369) " configuration: --enable-shared --extra-libs=-ldl --enable-version3 --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libvpx --enable-libfaac --enable-libmp3lame --enable-libtheora --enable-libvorbis --enable-libx264 --enable-libxvid --disable-ffplay --enable-gpl --enable-postproc --enable-nonfree --enable-avfilter --enable-pthreads --extra-cflags=-fPIC"
[3]=>
string(40) " libavutil 55. 17.100 / 55. 17.100"
[4]=>
string(40) " libavcodec 57. 24.102 / 57. 24.102"
[5]=>
string(40) " libavformat 57. 25.100 / 57. 25.100"
[6]=>
string(40) " libavdevice 57. 0.101 / 57. 0.101"
[7]=>
string(40) " libavfilter 6. 31.100 / 6. 31.100"
[8]=>
string(40) " libswscale 4. 0.100 / 4. 0.100"
[9]=>
string(40) " libswresample 2. 0.101 / 2. 0.101"
[10]=>
string(40) " libpostproc 54. 0.100 / 54. 0.100"
[11]=>
string(39) "Input #0, image2, from 'image%01d.png':"
[12]=>
string(54) " Duration: 00:00:10.00, start: 0.000000, bitrate: N/A"
[13]=>
string(101) " Stream #0:0: Video: png, gray(pc), 1080x494 [SAR 72:72 DAR 540:247], 0.20 tbr, 0.20 tbn, 0.20 tbc"
[14]=>
string(48) "[mp3 @ 0x22dfb00] Skipping 0 bytes of junk at 0."
[15]=>
string(74) "[mp3 @ 0x22dfb00] Estimating duration from bitrate, this may be inaccurate"
[16]=>
string(31) "Input #1, mp3, from 'song.mp3':"
[17]=>
string(59) " Duration: 00:01:45.80, start: 0.000000, bitrate: 127 kb/s"
[18]=>
string(61) " Stream #1:0: Audio: mp3, 44100 Hz, stereo, s16p, 128 kb/s"
[19]=>
string(71) "[NULL @ 0x22e2240] Unable to find a suitable output format for 'ffmpeg'"
[20]=>
string(24) "ffmpeg: Invalid argument"
}
int(1) -
Capture desktop with ffmpeg on Windows virtual machine [closed]
1er octobre 2020, par LiriumI’d like to record what happens on my virtual machine with ffmpeg. My command is the following :


ffmpeg -draw_mouse 1 -r 10 -f gdigrab -i desktop -vcodec libx264 -preset ultrafast -pix_fmt yuv420p -y -an myfile.mp4


My machine is Windows Server 2016 and it runs in the cloud. It works only with RDP connection. Is there any way to fake it ?
I thought about PyVirtualDisplay, but it seems to be a tool for Unix-like OS.