
Recherche avancée
Médias (1)
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
Autres articles (102)
-
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...) -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...)
Sur d’autres sites (7639)
-
Please help me. Overlay filter not full screen
2 juin 2020, par UnlockdtddI have one video, i want to keep 2 second normal, 2 second later crop.



I can use with this command :



"[0:v]scale=1280:720[v1];[v1]crop=156:123:151:164[v2];[0:v]scale=1280:720[v3];[v3][v2]overlay=shortest=1:enable='lt(mod(t,4),2)*gte(t,2)'"




But I try to work with below command, overlay only 1/4 screen and not full ? I attached picture in this post too. I like split filter because i want to work not only [2to4] but also [4to6] v.v.....



ffmpeg -i in -vf "split=2[base][2to4];[2to4]select='between(mod(t\,4)\,2\,3.999)'[v24];[v24]crop=156:123:151:164[v2];[base][v2]overlay=enable='between(mod(t\,4)\,2\,3.999)'"




Please help me fix overlay full screen with split filter. Thanks.





-
ffmpeg keeping full title when encoding
14 mai 2020, par LordFenixNCI am trying to name the audio and sub files in the batch encode using the title tag in the meta data. the issue im running into is if the title says English Commentary it will only grab English or Jap uncut it will only grab Jap.



$audioTracks = ffprobe $f.FullName -show_entries stream=index:stream_tags=title -select_streams a -of compact=p=0:nk=1 
$audioTracks = $audioTracks.split("")
foreach($audio in $audioTracks) {
 $ID = $audio.split("|")[0];
 $audioName = $audio.split("|")[1];
 ffmpeg -i $f.FullName -threads 0 -muxdelay 0 -y -map 0:$ID -codec aac -f segment -segment_time 10 -segment_list_size 0 -segment_list out/$f/audio/audio_"$audioName.m3u8" -segment_format mpegts out/$f/audio/"audio_$audioName%d.ts"



-
avformat/mux : add proper support for full N:M bitstream filtering
18 avril 2020, par Marton Balintavformat/mux : add proper support for full N:M bitstream filtering
Previously only 1:1 bitstream filters were supported, the end of the stream was
not signalled to the bitstream filters and time base changes were ignored.This change also allows muxers to set up bitstream filters regardless of the
autobsf flag during write_header instead of during check_bitstream and those
bitstream filters will always be executed.Signed-off-by : Marton Balint <cus@passwd.hu>