
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (111)
-
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 (...) -
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. -
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 (9658)
-
No Working C Compiler Found
1er décembre 2014, par Rajendran AmbikaI just downloaded it from here to try it :
http://www.videolan.org/developers/x264.html
I ran ./configure. It complained that I didn’t have an assembler and suggested I ran ./configure —disable-asm. Then all seemed to compile OK.
How did you install gcc ? From the repositories ?
After i check the GCC version by using (gcc —version) command in terminal. The log is
i686-apple-darwin11-llvm-gcc-4.2
(GCC) 4.2.1 (Based on Apple Inc. build 5658)
(LLVM build 2336.11.00)how can i solve this issue ..? I want to make compile and install.
-
Player for Android SmartPhone and Android TV, live stream using m3u/m3u8 playlist with MPEG-2 TS channels
30 mai 2016, par ot0I want to have a player (like IPTV) that can play the .m3u playlist channels.
I have found ExoPlayer should support live-streaming. I want to be able to see the code because I want to add the player inside my own App and embed in my own GUI.I downloaded the open source github project of exoplayer github.com/google/ExoPlayer and appended the URL for our .m3u playlist (containing mpeg2-ts channels) in the demo but unfortunately it couldn’t play. Inside the
Samples.java
I added a Test channel :public static final Sample[] HLS = new Sample[] {
new Sample("Apple AAC media playlist",
"devimages.apple.com.edgekey.net/streaming/examples/bipbop_4x3/gear0/"
+ "prog_index.m3u8", Util.TYPE_HLS),
new Sample("Apple ID3 metadata", "devimages.apple.com/samplecode/adDemo/ad.m3u8",
Util.TYPE_HLS),
....
new Sample("Test", "ipaddress.com/channels.m3u", Util.TYPE_OTHER)
};I also tried to just paste the URL of one of the mpeg2-ts channels from the playlist but it didn’t work either
The .m3u looks like :
#EXTM3U
#EXTINF:-1 group-title="Random" tvg-logo="xx.com/pic/channel1.jpg",Channel1
ipaddress.com:7777/channel1
..
#EXT-X-ENDLISTDoes anyone have some recommendations ? It is not possible to play IPTV encapsulated in MPEG-2 TS using ExoPlayer ? If not, do we have alternatives ? I am mostly for an open source project where the player is already implemented so that I only need to add visual elements inside it. Otherwise API to other apps will also be useful
-
Adding text to movie using ffmpeg
23 août 2014, par microspaceI use
git
to track*.ass
subtitle files.
Here is example of*.ass
file :[Script Info]
; Script generated by Aegisub 3.1.2
; http://www.aegisub.org/
Title: Default Aegisub file
ScriptType: v4.00+
[V4+ Styles]
Format: Name, Fontname, Fontsize, PrimaryColour, SecondaryColour, OutlineColour, BackColour, Bold, Italic, Underline, StrikeOut, ScaleX, ScaleY, Spacing, Angle, BorderStyle, Outline, Shadow, Alignment, MarginL, MarginR, MarginV, Encoding
Style: Default,Arial,20,&H00FFFFFF,&H000000FF,&H00000000,&H00000000,0,0,0,0,100,100,0,0,1,2,2,2,10,10,10,1
Style: titr,DejaVu
Sans,20,&H007DDBFA,&H000000FF,&H00000000,&HFF000000,0,0,0,0,100,100,0,0,1,2,2,1,10,10,10,1
[Events]
Format: Layer, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text
Dialogue: 0,0:00:00.46,0:00:11.22,Default,,0,0,0,,Если это можно было бы
Dialogue: 0,0:00:03.44,0:00:08.96,titr,,0,0,0,,{\pos(20,240)\fad(600,600)}бывший министрAfter commit I burn subtitles into video :
ffmpeg -i video.avi -vf "ass=subtitle.ass" out.avi
My goal is to show commit date for 10 second at the start of movie. This should be done automatically.
1) It can be easily done with by modifying
subtitle.ass
itself, but I can’t do it after commit and there are other reasons.2) It can be done by
ffmpeg
from command line : How to use ffmpeg to add a text to avi video ?Problem is that in this case text will be shown for the whole lenght of movie.
3) I can copy *.ass file to temporary directory, insert date, render and delete *.ass file.
Is there a simpler way ?