
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (111)
-
Les statuts des instances de mutualisation
13 mars 2010, parPour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...) -
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
Sur d’autres sites (5547)
-
Cannot view ffmpeg output http video stream
15 juillet 2019, par Connor WoodfordI have ffmpeg re-streaming an mkv to mp4 all while outputting it via http with this command :
ffmpeg -i my.mkv -c:v libx264 -preset medium -maxrate 3500k -bufsize 6000k -pix_fmt yuv420p -g 50 -c:a aac -b:a 160k -ac 2 -ar 44100 -f flv http://localhost:port
It streams fine but when I go to view with ffplay I get this error :
http://localhost:port: Invalid data found when processing input
. I have a simple http server setup with exprees and node.
-
http: honor response headers in redirect caching
10 janvier 2022, par erankorhttp: honor response headers in redirect caching
add a dictionary that maps "src_url" -> "expiry ;dst_url", the dictionary
is checked before issuing an http request, and updated after getting a
3xx redirect response.the cache expiry is determined according to the following (in desc
priority) -
1. Expires header
2. Cache-Control containing no-cache/no-store (disables caching)
3. Cache-Control s-maxage/max-age
4. Http codes 301/308 are cached indefinitely, other codes are not
cached -
Save http stream video android
11 novembre 2013, par ChebTSFor one of my android projects I need to implement saving of video from HTTP stream (right now I am just show live stream video to user).
I google that problem and find some solution, I can use FFmpeg. But FFmpeg is c++ library.
Is there are some easy way to save video from HTTP stream ?