
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (73)
-
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 -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)
Sur d’autres sites (10697)
-
scalable video editing for backend in azure [on hold]
5 juillet 2015, par TotalWarwhat are my options in azure in order to achieve scalability.I will have several hundred people cutting/splitting and converting videos at the same time.
I am currently using ffmpeg in a virtual machine but i fear in the near future i will have too many users and virtual machine wont work anymore.
-
Is there a way to detect if a video is of poor quality with ffmpeg ? [on hold]
29 avril 2015, par Daniela CarrascoI am working on a project where I am tracking the amount of time someone spends looking at a video.
There are some videos in the mix that lag horribly and so it makes it seem as if the person is looking for longer than they actually are because the image is frozen with their eyes still looking at it, even though in real time, they aren’t looking.
I thought that using frames per second would help me detect this but it seems to be inconsistent. I am using VCode and FFmpeg as well as FFprobe to try and figure this out.
-
Evolution #4548 : Améliorer _request et set_request pour prendre en compte les champs qui sont des...
9 septembre 2020Je ne suis pas favorable à prendre en compte
_request('tableau[index]')
; ce genre d’écriture n’a pas beaucoup de sens, et ça va être chiant ; à la rigueur _request(’tableau/index’) comme on fait à différents endroits. Dans un PHP récent (7+),_request('tableau')['index'] ?? ''
fait très bien la chose...Plus globalement _request est juste un mapping vers
$_REQUEST
et je ne suis pas sûr que le modifier soit une bonne chose.Par contre, intégrer un conteneur HTTP Requests me paraîttrait plus pertinent. Synfony HTTP Fondation ($request = Request::createFromGlobals()), mais il ne semble pas gérer les tableaux comme tu le souhaites. Mais par contre Laravel Request qui l’étend https://laravel.com/docs/7.x/requests a quelque chose de proche
$name = $request->input(’products.0.name’) ; $names = $request->input(’products.*.name’) ;