
Recherche avancée
Médias (1)
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
Autres articles (111)
-
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
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 (...) -
Que fait exactement ce script ?
18 janvier 2011, parCe script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
Installation de dépendances de MediaSPIP
Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...)
Sur d’autres sites (7727)
-
How to get Authorized Access for this particular situation ?
16 octobre 2018, par Shivam Singh RajawatI want to download some videos (basically stream videos) from https://store.adda247.com using ffmpeg
so I ran this command :
[ffmpeg -i "https://videotest.adda247.com/demo/updated/files2?key=4-SSC-MAINS/MATHS/PERCENTAGE/BASIC/PERCENTAGE_BASIC_PART-1/hls1000k.m3u8&bucket=video-streaming-dest&pkgId=667&id=1199"
-bsf:a aac_adtstoasc -vcodec copy -c copy -crf 50 output.mp4][1]**Fortunately this worked fine, I don’t know why may be just because of it’s a demo video.
Similarly,
When I tried to download other video I got this error :
Server returned 401 Unauthorized (authorization failed)
I had used this for another video :
ffmpeg -i "https://videotest.adda247.com/updated/files2?key=4-SSC-MAINS/MATHS/ALLIGATION/ALLIGATION_BASIC_FUNDAMENTALS/hls1500k.m3u8&bucket=video-streaming-dest&pkgId=667&id=1301"
-bsf:a aac_adtstoasc -vcodec copy -c copy -crf 50 output2.mp4**I have valid account credentials but do not know how to use it with ffmpeg..
Please help me solve this issue.
Here’s the screenshot :
-
FFmpeg can't access file in Dropbox on Ubuntu 12.04
30 juin 2015, par afterglowleeI have installed FFmpeg on Ubuntu 12.04. When I use
ffmpeg -i
command to check some video file online, it works :ffmpeg -i http://techslides.com/demos/sample-videos/small.mp4
However, when I check a public file hosted in my Dropbox it gives ’No such file or directory error’ :
ffmpeg -i https://dl.dropboxusercontent.com/u/51617581/bigbuck.webm
and the error is :
https://dl.dropboxusercontent.com/u/51617581/bigbuck.webm : No such
file or directoryand here is the version info of the ffmpeg installation :
ffmpeg version 0.8.17-4:0.8.17-0ubuntu0.12.04.1, Copyright (c)
2000-2014 the Libav developers built on Mar 16 2015 13:26:50 with
gcc 4.6.3I have also tried both files on my Mac 10.10 laptop, and both of them work fine. Could anyone suggest where is the problem ? Many thanks.
-
How do I access / stream an IP Camera (RTSP, ONVIF) from iOS using Swift
24 avril 2015, par EuropeanI am a beginning Swift programmer with no Objective-C experience. I would like to create a UIView subclass which displays a video stream from an IP camera (RTSP, ONVIF).
It looks like I will need to use the ffmpeg library http://sourceforge.net/projects/ffmpeg-ios/
I did find one ffmpeg tutorial in Japanese ;-) http://qiita.com/tottokotkd/items/d9d376d5993961627aec
Does anyone know of a tutorial on streaming an IP camera using Swift ?