
Recherche avancée
Médias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Paul Westerberg - Looking Up in Heaven
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Le Tigre - Fake French
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Thievery Corporation - DC 3000
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Dan the Automator - Relaxation Spa Treatment
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Gilberto Gil - Oslodum
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (55)
-
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
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. -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (6406)
-
Anomalie #4703 : Critère {select ...}
25 mars 2021, par cedric -Oui mais JLuc ne dit pas tout, ce qu’il veut c’est pouvoir utiliser ensuite ce champ calculé comme un champ de tri dynamique, ce que tu ne peux pas faire avec une expression SQL.
Mais justement, c’est là que le bât blesse : il ne faut pas seulement faire un select, il faut que le compilateur comprenne que ça génère un champ
fin_titre
pour l’exemple de JLuc, ce qui semble assez peu propice à la syntaxe proposée qui nécessiterait de parser l’expression SQL, et il faut ensuite que ce champ soit utilisable comme un champ normal, via une balise ou dans un autre critère.C’est donc très loin d’être simple et pour cette raison ça va surement attendre longtemps :)
-
ffmpeg - How to change the filter-paramaters depending on time oder framenumber ?
2 mars 2020, par LookAndSeeHallo to all userse and helpers here in this forum ! Thank you, i am new and i have found allready a lot of solutions.
Now I want to ask, if someone can help me :
I have a Movie about 30 seconds made of 1 image.
Now I want to pixelate depending on time or framenumber - every time a litlle bit less.
My code so far :ffmpeg -i in.mp4 -vf scale=iw/n:ih/n,scale=niw:nih:flags=neighbor out.mp4
where n should be the framenumber 1 to 900.
this scould also be t+1 for slower change.the stars are gone - so i mean n times iw:n times ih :
error-massage :
undefined constant or missing ’(’ in ’n’
error when evaluating the expression ’ih/n’
maybe the expression for out_w :’w/n’ or for out_h :’ih/n’ is self-referencing.
failed to configure output pad on paresed_scale_0
error reinitializing filters !
failed to inject frame into filter network : invalid argument
error while processing the decoded data for stream #0:0Do you have some suggestion plaese - Thank you in Advance
-
How to use sexagesimal syntax in arguments of FFmpeg or if impossible how to convert it in Windows CMD shell
6 décembre 2020, par Link-akroQuestion updated 2020-12-06 to enlarge the scope without discarding the prior answer which applies to both prior and larger cases.


I had trouble to provide a sexagesimal time (
HH:MM:SS.mm
) to a filter option that was not an expression. For instancetrim
filter.
It happens there is an escaping rule i did not know yet when i first asked, and was addressed in the first comment by @Gyan.

The problem is universal, but the solution may depend on the shell if we go the scripting route... and i am currently stuck with Windows's CMD.exe.


For instance the following skips one minute and 4 tenths of seconds in all streams as accurately as it can seek each, then invokes the trim filter to keep the segment between one and two minutes of the remaining duration, and do so with two different syntaxes. This example happens to be compatible with both CMD and BASH shells so no escaping hell.


ffmpeg -ss "1:00.4" -i INPUT -vf "trim=start='1\:00':end='120'" OUTPUT



Then how do we achieve the same in the expressions within the filters ?
If we cannot avoid using the scripting of the shell, i am looking for a Windows CMD solution.
I had posted one answer with a piece of script to convert a textual sexagesimal time to a textual decimal fractional time in seconds, which was not useful for the original case, but may apply to more generic cases and in particular to the expressions.


Example of failed attempt with one expression in the
select
filter.

ffmpeg -ss "1:00.4" -i INPUT -vf "select='between(t,1\:00',120)'" OUTPUT



The sexagesimal notation seems to not be supported by ffmpeg filter expressions as i found no reference of it in the documentation nor in SO/web.


I browsed through the list of functions defined in ffmpeg expression library but did not find any way to parse the sexagesimal input there yet, nor any way to use text in its semantics.


However i found some unrelated example that hard-coded some arithmetical expression to provide the numerical decimal amount of seconds equivalent to what was intended, such as
2*60+2
to mean2:02
.

The polynome used above to compute seconds may use preprocessing of shell variable, whichever shell it is, but we need to parse the components of
HH:MM:SS.mm
to put them in those variable first. You know, using bash$var
or cmd%var%
/%~1
styles. Otherwise we may compute the polynome completely in the shell instead of the expression but it is so much trouble for little gain.

So while CMD still exists like an undead and becomes really dead , and while i do not have the opportunity yet to replace it, i wish for an answer that either :


- 

- does not need the shell/script at all, OR
- provide a solution in Windows CMD, although relying on it as little as possible.






Reminder and clarification, the use case assumes that we are given a textual sexagesimal time as input and intend to use it in an expression of ffmpeg filter with as little shell dependency as possible or otherwise satisfy Windows CMD.