
Recherche avancée
Médias (1)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (95)
-
Les sons
15 mai 2013, par -
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 (...) -
MediaSPIP en mode privé (Intranet)
17 septembre 2013, parÀ partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)
Sur d’autres sites (11784)
-
FFMpeg convert VOB to H264 and multi language
26 octobre 2016, par gduhI try to convert VOB files to H264. I know it seems to be crazy to do that but the goal is to use it with the Apple TV.
To just converting a VOB file to mp4 with the right audio stream is not really a problem.
The problem is when the VOB file contains multi-sequences in different languages. For example, in the mp4’s file I will have 3 seconds of video including for example a book on the screen in english, then, the same 3 seconds with the book in french and so on...
But with the VOB file I will have only the 3 seconds in the right language.When I check the VOB file, I only see one stream #0.0 for the video.
So my question is, how can I avoid to include the differents videos sequences with these different languages ?
Thx for your help.
-
Add aac single audio to MPEG DASH mpd files
26 avril 2017, par AdminyI am trying to add manually to the .mpd file the following code.
<adaptationset contenttype="audio" segmentalignment="true" bitstreamswitching="true" lang="English">
<representation mimetype="audio/mp4" codecs="mp4a.40.2" audiosamplingrate="44100">
<audiochannelconfiguration schemeiduri="urn:mpeg:dash:23003:3:audio_channel_configuration:2011" value="2"></audiochannelconfiguration>
<segmenttemplate timescale="44100" media="http://localhost/audio.aac" startnumber="1">
</segmenttemplate>
</representation>
</adaptationset>But its not working, Does everything have to be segmented in .mpd files ? or can I have a single .acc file ?
-
FFMPEG - Overlay stop updating after few minutes
27 décembre 2018, par Vincent CarreteroFirst im sorry for my english :-(
I do streaming from RTSP to Facebook live (RTMP).
I overlay PNG file, on the stream left corner, with score information and time (like tv soccer match).After few minutes, the image overlay dont refresh, and i dont know why...
Image is updated by vbscript, and its correctly done.This is my code :
cmd.exe /K ffmpeg.exe ^
-f lavfi -y ^
-i anullsrc -rtsp_transport tcp ^
-i "rtsp://xxx:xxx@xxx:8080/videoMain" ^
-r 1 -loop 1 -f image2pipe -i 762141_marquage.png ^
-filter_complex "[2:v]setpts=PTS-STARTPTS[a];[1:v][a]overlay=10:10" ^
-tune zerolatency -vcodec libx264 -c:v libx264 -crf 30 -preset ultrafast -c:a aac -strict experimental ^
-f flv "rtmp://xxx"Some one can help me ? please :-)