
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 (72)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
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 (...) -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (8447)
-
Revision c6b9039fd9 : Restyle code Approximate the Google style guide[1] so that that there's a writt
14 juillet 2012, par John KoleszarChanged Paths : Modify /args.c Modify /args.h Modify /build/make/obj_int_extract.c Modify /example_xma.c Modify /libmkv/EbmlBufferWriter.c Modify /libmkv/EbmlBufferWriter.h Modify /libmkv/EbmlIDs.h Modify /libmkv/EbmlWriter.c Modify /libmkv/EbmlWriter.h (...)
-
Generate EPG (Electronic Program Guide) with FFMPEG re-stream
17 juin 2020, par Airat GaliullinI'll try to describe a situation :
I have Ubuntu server with installed ffmpeg and a streaming service that is creating HLS.



That streaming service for generating HLS need RTMP stream which is generated by ffmpeg from local files in VOD on this server (files are mp4 format).



I need to generate EPG on ffmpeg rtmp re-streaming step. Is it possible or may be other good solution for my situation ?



RTSP generation SH :



while true;
 do
 for file in $(ls -1);
 do
 ffmpeg -re -i "$file" -vcodec copy -bsf:v h264_mp4toannexb -acodec copy -f flv rtmp://localhost/path/for/channel
 done
 done



-
How can I use ffmpeg library with react on client side ? Any guide ? [closed]
6 janvier 2023, par Mehdi SaqlenI have heard about web assembly. Web assembly allows us to use C++ libraries on browsers, so how can I use the FFmpeg library on the client-side with react.js ? If you know how to implement this please share with me what you know about this.


Please share with me how can I learn FFmpeg completely with web assembly ?