
Recherche avancée
Médias (91)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (86)
-
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
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 (11216)
-
Access webcam of sleeping Mac in ssh with FFmpeg
10 juillet 2021, par user3783569I am able from my Macbook to ssh my remote Macmini which is ON (logged in and not sleeping) and use my webcam with a command like
ffmpeg -f avfoundation -framerate 30 -i "0:0" out.avi
however, when the remote Macmini is logged out (or/and sleeping) ffmpeg gives me an error that it cannot use the webcamFailed to create AV capture input device: Cannot use PC-LM1E
. Any workaround ? I want to check on my pets while out of my house and would like to keep the Macmini at sleep.

Thanks I advance.


-
How to add watermark text scrollable using ffmpeg vertically from right top to bottom
22 juillet 2015, par JeetendraAm using ffmpeg to transcode the video with text watermark. Below is my command that I am using but it scrolls the text bottom left to right.
ffmpeg -i /usr/home/test.mp4 -vf "drawbox=x=iw-42:y=0:w=42:h=ih:color=black@0.5:t=80,drawtext=fontfile=/usr/share/fonts/truetype/freefont/FreeSerifBold.ttf:text='Hello World':fontcolor=white@1.0:fontsize=16: y=(mod(2*n\,h+th)-th):x=w-tw-10" -codec:v libx264 -codec:a copy -strict -2 /usr/home/out.mp4
But I want vertical scrolling top to bottom.
Can anyone help in this.
Thanks in advance.
-
FFmpeg enabling external packages 'min-gpl' in swift or Xcode steps
2 septembre 2020, par PranavI am working with FFmpeg for iOS swift and added in my project using




pod 'mobile-ffmpeg-full', ' > 4.4'




Whenever I try to compress and convert video using following command it fails with
rc=1


MobileFFmpeg.executeAsync("-i old.mp4 -c:v libx265 -crf 28 -c:a aac -b:a 128k -tag:v hvc1 new.mp4", withCallback:self)



I have searched to add or enable external package
'min-gpl' for x265
to config in Xcode or pods but unable to find steps or anything related to it.

Thanks in advance.