
Recherche avancée
Autres articles (99)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
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
Sur d’autres sites (10232)
-
video hosting with PHP api or PHP script for social network project
17 avril 2014, par al404ITI have a project for a small social network where user can upload their videos, video should not be longer than 1 or 2 minutes but they need to be private and related to user that uploaded.
Since uploaded video may be in many different format I have two options :
-
upload video and use ffmpeg to process them, can i find any PHP script that does that ? PROS I have my files on my server and I'm not dependent from third party CONS I guess is a real intensive task and I may need a quite good noting plan since the beginning of this project
-
use a video hosting service that provide API to upload and process video, i actually find vzaar.com that may seems to do what I need. PROS Scalable CONS I rely on third party for my contents
since the project is a small social network it may be interesting this too opusphp.com, but i never user or read about
can Vimeo PRO suite my needs ? Other suggestions ?
In future it may be necessary to add a basic video editing function to trim uploaded video setting starting and ending point -
-
How concat files URL of S3 using Lambda, Ffmpeg
4 juillet 2021, par Tính Ngô QuangI am trying to concat webm files into 1 file, Then upload file new video to S3
Using S3, ffmpeg/lambda-layer


import subprocess
import shlex
import boto3

def lambda_handler(event, context):
 ffmpeg_cmd = "ffmpeg -safe 0 -f matroska concat"
 ffmpeg_cmd += " -i https://s3demo.s3.ap-northeast-1.amazonaws.com/archives/input/record/mask/ep_1.webm"
 ffmpeg_cmd += " -i https://s3demo.s3.ap-northeast-1.amazonaws.com/archives/input/record/mask/ep_2.webm"
 ffmpeg_cmd += " -c:v copy -af aresample=async=1:first_pts=0 -"

 command1 = shlex.split(ffmpeg_cmd)
 p1 = subprocess.run(command1, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
 print(p1.stdout)
 print(p1.stderr)
 # resp = s3_client.put_object(Body=p1.stdout, Bucket=s3_source_bucket, Key=s3_destination_filename2)



I get error message :




concat : Read-only file system




According to the article below, using directory storage but still the same error.
https://stackoverflow.com/a/47323443/2949104


ffmpeg_cmd += " -vcodec copy -acodec copy /tmp/output.webm -y"



-
Revision 67228 : On surcharge un define de la librairie afin de permettre la création des ...
28 octobre 2012, par eric@… — LogOn surcharge un define de la librairie afin de permettre la création des fichiers temporaires dans le répertoires des archives dont on sait qu’il est toujours accessible en écriture (spipfactory pour la remontée du problème en mutu)