
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (50)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 is the first MediaSPIP stable release.
Its official release date is June 21, 2013 and is announced here.
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 (...)
Sur d’autres sites (8366)
-
avformat/vobsub : do not create empty streams.
24 mai 2014, par Clément Bœsch -
ffmpeg - switch rtmp streams into a single encoded output ?
15 octobre 2015, par Stefan KendallI have
1-5
input streams, each uploading on a slightly different time offset.With rtmp and ffmpeg, I can reliably encode a single stream into an HLS playlist that plays seamlessly on iOS, my target delivery platform.
I know that you can accept multiple input streams into ffmpeg, and I want to switch between the input streams to create a consistent, single, seamless output.
So I want to switch between
rtmp://localhost/live/stream1
..rtmp://localhost/live/stream5
on a regular interval. Sometimes there will be multiple streams, and sometimes there won’t.Is there any way for ffmpeg to rotate between input streams while generating an HLS playlist ? My goal is to avoid running duplicate instances of ffmpeg for server cost reasons, and I think connecting disparately encoded input streams for playback would be difficult if not impossible.
Switching on each segment is the ideal behavior, but I also need to keep the streams in time sync. Is this possible ?
-
How to properly convert RTL subtitles in ffmpeg ?
25 octobre 2020, par HTMHellI'm using the following command to extract subtitles from a video file, and save it as
vtt
.


ffmpeg -i video.mkv -map 0:s:0 subs.vtt 2>&1




It's working and outputs the subtitles file. The problem is with RTL (right to left) languages (Hebrew, Arabic etc.)
The punctuation are being misplaced.



I will show you an English example of what's happening, for your convenience :



Input text :



Is he alive?
-I don't know.




Output text :



?Is he alive
.I don't know-




If you want the original text in Hebrew, there it is :



Input Text :



הוא חי?
-אני לא יודע.




Output text :



?הוא חי
.אני לא יודע-




As you can see, the punctuation marks at the end are going to the start, and vice versa. How can I avoid this behavior ?