
Recherche avancée
Autres articles (50)
-
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community. -
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" (...) -
Les notifications de la ferme
1er décembre 2010, parAfin d’assurer une gestion correcte de la ferme, il est nécessaire de notifier plusieurs choses lors d’actions spécifiques à la fois à l’utilisateur mais également à l’ensemble des administrateurs de la ferme.
Les notifications de changement de statut
Lors d’un changement de statut d’une instance, l’ensemble des administrateurs de la ferme doivent être notifiés de cette modification ainsi que l’utilisateur administrateur de l’instance.
À la demande d’un canal
Passage au statut "publie"
Passage au (...)
Sur d’autres sites (6270)
-
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>