
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 (111)
-
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...)
Sur d’autres sites (5028)
-
Anomalie #3086 : Installation aléatoire des tables des plugins avec php 5.5
8 novembre 2013, par cedric -Bon, le patch dans ecrire_fichier() est trop brutal : cela revient à invalider le opcode cache à chaque hit, puisqu’on log à chaque hit quasi.
Je pense que la modif dans ecrire_fichier_php est bien, et je serai d’avis de nous en tenir là et voir si on a encore des bugs. On pourra dans ce cas essayer d’ajouter le cas ecrire_fichier_securise() mais je pense pas que ce soit nécessaire car c’est un faux fichier PHP qui n’est pas compilé en opcode car pas executé (il est juste lu).
-
C++ Realtime OpenGL videogame streaming library
23 août 2013, par MufasaI need to select a video encoder and library to take raw RGB frames in realtime from a videogame and send them to a remote client. The remote client is sending back mouse events. Right now I have a setup where the server is using
glReadPixels
to read frame data, then sending information in the form of 16x16 tiles with runlength encoding that have changed since the last read. (The videogame has a lot of solid color areas). My client works to control the game. But the transmission of frames to the client, and mouse events from the client, is too slow. Both use a TCP socket to communicate.I'm looking into using ffmpeg or x264 to encode into H.264 video ; do you think this could reduce latency ? I'm on windows and I can't figure out how to set up x264 libraries in Visual Studio, but I have got ffmpeg libraries installed.
Another name I have heard is live555 but I don't know much about that.
Do you have any recommendations ?
-
How to convert bunch of videos into H.264 AAC ffmpeg with conditions using python ? [closed]
21 octobre 2020, par Sathish KumarI have bunch of videos on my Ubuntu server in a nested sub folder, say around 2 TB. It has all types of video formats ( mkv,flv,ts,mov,mp4...and others).


Problem : I want to transcode it into (mp4,h.264,aac). I don't want to re-encode the videos which already has (mp4,h.264,aac) it needs to be same. Just those are not in that profile should get converted into (mp4,h.264,aac) without downscaling.


How to effectively handle this / any high level idea / any github repo for this problem ?


Input folder :


Folder1
--sub_folder
---video1.mkv
---video2.ts
---video3.mp4
Folder2
---cat.mkv
---mouse.ts
---train.mp4



Output folder :


Folder1
--sub_folder
---video1.mp4
---video2.mp4
---video3.mp4
Folder2
---cat.mp4
---mouse.mp4
---train.mp4



The input output folder structure should follow the same. it should be automatically created.