
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (32)
-
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
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" (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
Sur d’autres sites (7123)
-
Revision 90874 : revert de 90704 il y a bien une erreur, (merci RastaPopoulos et ...
11 juin 2018, par tofulm@… — Logrevert de 90704
il y a bien une erreur, (merci RastaPopoulos ? et désolé)
Je préfère revenir en arrière pour l’instant et voir par la suite -
Revision 90874 : revert de 90704 il y a bien une erreur, (merci RastaPopoulos et ...
11 juin 2018, par tofulm@… — Logrevert de 90704
il y a bien une erreur, (merci RastaPopoulos ? et désolé)
Je préfère revenir en arrière pour l’instant et voir par la suite -
Using Cut with Fast Seek -ss -to and HH:MM:SS:MS
1er avril 2019, par Matt McManisI’m trying to cut a video using
-ss
and-to
usingHH:MM:SS:MS
time.I’m using
-to
instead of-t
because I want the cut to be "between" a time range and not "up to" time.
I also have to use-to
because it’s needed for another program’s time input textbox I’m using. I won’t be able to use-t
for this case.Example :
https://superuser.com/a/670590
-ss 00:01:00:00 -to 00:02:00:00
cut starts at minute 1, ends at minute 2.
-ss 00:01:00:00 -t 00:02:00:00
cut starts at minute 1, ends at minute 3.https://trac.ffmpeg.org/wiki/Seeking#Cuttingsmallsections
Problem
I’m not able to use Fast Seek,
-ss
before the-i
,-to
after.I’m only able to use Slow Seek,
-ss
and-to
after the-i
.1. Fast
Doesn’t Work
This cuts a minute ahead of what’s in the time.
Cuts from
00:01:00
to00:03:00
, using thefaster
seek.ffmpeg -ss 00:01:00 -i video.mp4 -to 00:02:00 -c copy cut.mp4
2. Slow
Works
I’m trying to do this but with fast seek.
Cuts from
00:01:00
to00:02:00
, using theslower
seek.ffmpeg -i video.mp4 -ss 00:01:00 -to 00:02:00 -c copy cut.mp4
3. Fast
Works (with problems)
-copyts
ruins video time bar in player.Cuts from
00:01:00
to00:02:00
, using thefaster
seek.ffmpeg -ss 00:01:00 -i video.mp4 -to 00:02:00 -c copy -copyts cut.mp4