
Recherche avancée
Médias (91)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
avec chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
sans chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
config chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (112)
-
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 ;
-
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 (...) -
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)
Sur d’autres sites (9327)
-
Streaming YouTube rtsp :// on iOS
18 mars 2014, par Jason SilbermanI am creating an application where I want to stream
rtsp://
files from YouTube. I have looked at a couple of frameworks (kxmovie), but I cannot find one that is able to streamrtsp://
and use theMPMoviePlayerController
. I could create a webView, but I do not want to present the user with any of the default YouTube embed interface.Does anybody know if this is possible ?
Thanks !
-
youtube, which queue method use for encoding video ? [closed]
9 juin 2012, par Kerberosi would like to develop a uploaded video encoding systems with php like youtube.com on windows platform.
Do you any idea how youtube do this ?
I heard beanstalk'd.
But i guess that doesn't work on windows.
Can beanstalk'd do this job, if yes how ?
Could you sugest me beginner guide for learning ? -
Downloading a specific segment of a YouTube video
18 mai 2018, par BlueStoneI normally download files or parts of them using
ffmepg
command.ffmpeg -ss 00:05:00 -i "video url here " -t 100 -c copy -avoid_negative_ts 1 out.mkv
Now, downloading a YouTube video is not problem using
youtube-dl
, but I want to download specific part of a video (1080p+), I thought I could useyoutube-dl
to grab the link of the video and pass it toffmpeg
to do the cutting with the previous code, but could not figure how to do this.Searched and tried many commands and stuff here and there, but nothing worked.