
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (102)
-
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
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 (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, 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 (11956)
-
How to fix Non-monotonous DTS error in ffmpeg [closed]
6 juillet 2022, par IAM々UnknownI want to concatenate two
.mp4
files but ffmpeg shows an error all over :

Non-monotonous DTS in output stream 0:0; previous: 484090, current: 481360; changing to 484091. This may result in incorrect timestamps in the output file.



The command I am using is :


ffmpeg -f concat -i list.txt -c copy merged.mp4



and because of the error the
.mp4
file plays one video correctly in themerged.mp4
but when the first video's runtime is over the second one fails to play.

Please suggest a fix or an alternative (I only want to use a script as I want to automate merging of multiple videos fast).


-
Java VLCJ canvas and drawing ontop with transparent background
23 janvier 2013, par DizzleI have spent a bit of time researching about whether it is possible to draw on top of a VLCJ movie within a Java application. I have found a few bits of conflicting advice some saying it is not possible and some referencing articles which have moved on oracle.com.
Can someone clarify if it is or is not possible to draw java2d graphics like rectangles/lines which also have transparent backgrounds so the video stream underneath can be viewed whilst the shapes are present on screen ?
If this is not possible with vlcj what would be a good alternative for a linux and windows compatible media player allowing for annotation over a playing video stream ? Please note i do not have to be limited to java but something where i can get re-use out of developed drawing routines for multiple platforms would be ideal.
-
Ffmpeg "-c copy" alternatives for fast video cutting
4 juin 2020, par xcodesucks123I'm using ffmpeg to cut sections out of a video. I was using this command, as I'd done with previous videos :



ffmpeg -i source.mp4 -ss 00:00:10 -t 00:00:30 -c copy -y output.mp4




However, when I use this, depending on the time, either the first 5 seconds or last 5 seconds of video are blank.
I resorted to removing the copy command and just using :



ffmpeg -i source.mp4 -ss 00:00:10 -t 00:00:30 -y output.mp4




This worked correctly, but is much slower. Is there any fast alternative that will not corrupt the video ?



Thanks