
Recherche avancée
Médias (91)
-
Les Miserables
9 décembre 2019, par
Mis à jour : Décembre 2019
Langue : français
Type : Textuel
-
VideoHandle
8 novembre 2019, par
Mis à jour : Novembre 2019
Langue : français
Type : Video
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
-
Un test - mauritanie
3 avril 2014, par
Mis à jour : Avril 2014
Langue : français
Type : Textuel
-
Pourquoi Obama lit il mes mails ?
4 février 2014, par
Mis à jour : Février 2014
Langue : français
-
IMG 0222
6 octobre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Image
Autres articles (41)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)
Sur d’autres sites (3538)
-
drawtext video transition is not smooth
7 juin 2020, par Sterpu MihaiEdit : it seems that youtube displays the 00:05 transition smoothly ; however, my local VLC doesn't so I think this must be a VLC issue of some kind.



Take a look at this video : https://youtu.be/47JJnrH_LyM



It's created from a bigger video and it's composed of 3 parts :



part 1: 00:00 - 00:05 original.mp4
part 2: 00:05 - 00:10 original_with_caption.mp4
part 3: 00:10 - 00:15 original.mp4




The caption snippet was created using the following command :



ffmpeg -ss 00:05 -t 5 -i original.MP4 -vf drawtext="fontfile=C\\:/Windows/Fonts/arial.ttf:fontsize=100:fontcolor=white:x=(w-text_w)/2:y=(h-th-100):text='some random text here'" original_with_caption.MP4




The cuts from the original video were made with the following commands :



ffmpeg -y -i D:\temp\0706\caption\original.MP4 -ss 0 -t 5 -c copy D:\temp\0706\caption\ws\original_split_0_5.MP4
ffmpeg -y -i D:\temp\0706\caption\original.MP4 -ss 10 -t 5 -c copy D:\temp\0706\caption\ws\original_split_10_15.MP4




Finally, all 3 have been merged together by creating a concat.txt file containing the following :



file D:\\temp\\0706\\caption\\ws\\original_split_0_5.MP4
file D:\\temp\\0706\\caption\\original_with_caption.MP4
file D:\\temp\\0706\\caption\\ws\\original_split_10_15.MP4




and then executing the command :



ffmpeg -f concat -safe 0 -i D:\temp\0706\caption\ws\concat.txt -c copy D:\temp\0706\caption\ws\output.MP4




The problem I'm facing is that the transition from 00:05 is not smooth whereas the one from 00:10 is.
What do I need to adapt so the transition is smooth ?


-
NodeJS - How to generate video with serise of images using fluent-ffmpeg
18 août 2015, par adeltahirI’m trying to generate video from series of images using
fluent-ffmpeg
library.Following is the coffeescript snippet I’m using.
ffmpeg = require 'fluent-ffmpeg'
ff = ffmpeg()
for file in images
ff.addInput file
ff
.fps 24
.loop 1
.on 'end', ->
console.log 'success'
.on 'error', (err) ->
console.log 'error: ' + err
.save output_fileThis successfully generates video, but each image takes 1 second, thus video is slower 24 times than I expected.
I want each image take 1/24 second.
-
M3U8. Convert all parts to mp4 [closed]
5 juin 2020, par Zikrulloh TolibjonovMy name is Zikrullah. I have the
m3u8
file of the serial. 1m3u8
file contains all parts of the series and all audio languages for the player. The parts in it were saved ints
format for 10 seconds (as far as I understand). When I opened them3u8
file, it contained a link to otherm3u8
files. If I'm not mistaken, these are separatem3u8s
for audio languages. but allm3u8
andts
files related to the video are on a other server. I need to upload all the files to my server while keeping them all in order. Of course usingphp
. I'm sorry if I made a mistake. I don't know English well, but I tried :)