
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (66)
-
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 -
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 (...)
Sur d’autres sites (6873)
-
Revision 9c061ef506 : Properly validate data size With "show_existing_frame" frames : Minimum data siz
5 janvier 2015, par Yaowu XuChanged Paths :
Modify /vp9/vp9_dx_iface.c
Properly validate data sizeWith "show_existing_frame" frames :
Minimum data size for profile 0 and 1 is 1 byte (8bits)
Minimum data size for profile 2 and 3 is 2 bytes (9bits)Otherwise :
Minimum data size is 8 bytes.This resolves the VP9 failure in fuzzing test build #56.
Change-Id : I146d9d37688f535dd68d24aacc76d464ccffdf04
-
How to save ffmpeg output.mp4 to file
31 mars 2020, par InterestedbutnotknowingI have a very basic question. I combined an .wav and .mp4 file to output.mp4 using ffmpeg in python :
!ffmpeg -i /content/input.mp4 -i audio.wav -c:v copy -c:a copy output.mp4
Now how do I save the output.mp4 to an .mp4 file on my computer ?
Thank you very much in advance -
How to save .flv file from rtsp camera C#
22 juillet 2017, par BlackRootI’m trying to save streamed
rtsp
video from my IP camera using FFmpeg.exe command like thisffmpeg -i rtsp://[source_url_full_file_name] -acodec copy -vcodec copy [local_target_file_name].flv
but it is so hard to manage all process started for each camera so I decided to have an embedded managed thread that do the same thing
I’ve tried many libraries and codes but still no result.
any one have a code or links to achieve that using
C#