
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (73)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (11012)
-
Using ffmpeg to remove green screen from video
27 mai 2024, par CYADI have a video : https://drive.google.com/file/d/1tiP2fX0Xfc6YjIymcHyEXP8-JqEJrlgG/view


I'm trying to use ffmpeg to remove the green screen but none of the commands I use work. I saved a frame as a png and was able to remove the green from it :


ffmpeg -i green.png -vf chromakey=green:0.1 out.png


but the video edit does nothing.


ffmpeg -i video.mp4 -vf chromakey=DarkGreen:similarity=0.2:blend=0.3 output4.mov


I'm on a windows machine and need to output a format iOS and Android can use, though multiple formats are fine. Any thoughts ?


-
Get current postion from videoview in Time format
4 juin 2015, par Kalai ArasiI am writing an application to trim videos in android using
FFMPEG
. I need to give the values to theFFMPEG
in time units like00:00:10
. Currently I have avideoview
and twobuttons
. The first button isstartTime
and the second button isendTime
. When ever the button is clicked I use thegetCurrentPosition
to get the current position of the video. I also have aMediaController
attached to myvideoview
.Now the problem I am facing is that I get
int
value of the current position which I cannot pass to theFFMPEG
how do I accurately convert this to get the value in Time units, so that I can pass it toFFMPEG
to trim the video. I have given the code below for your reference. Is there any other way to get the current time other than this. Thanks in advance.tVideoView = (VideoView) findViewById(R.id.tVideoView);
startBtn = (Button) findViewById(R.id.tStartBtn);
endBtn = (Button) findViewById(R.id.tEndBtn);
trimBtn = (Button) findViewById(R.id.trimBtn);
tVideoView.setVideoPath(videoPath);
duration = tVideoView.getDuration();
mMedia = new MediaController(this);
mMedia.setMediaPlayer(tVideoView);
mMedia.setAnchorView(tVideoView);
tVideoView.setMediaController(mMedia);
startBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
startTime = tVideoView.getCurrentPosition();
startBtn.setText(String.valueOf(startTime));
}
});
endBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
endTime = tVideoView.getCurrentPosition();
endBtn.setText(String.valueOf(endTime));
}
}); -
Anomalie #4623 : Styles des fieldset dans l’espace privé
17 avril 2021, par cedric -avec un
:last-child-of-type
? ou sinon par defaut pas de border bottom sauf si le fieldset a une classlast
?