
Recherche avancée
Médias (91)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
-
Les Miserables
4 juin 2012, par
Mis à jour : Février 2013
Langue : English
Type : Texte
-
Ne pas afficher certaines informations : page d’accueil
23 novembre 2011, par
Mis à jour : Novembre 2011
Langue : français
Type : Image
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (56)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
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 (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)
Sur d’autres sites (5027)
-
How do I crossfade between scenes in ffmpeg using a complex filter ?
15 mars 2014, par scubedI have ffmpeg 2.1.4 and an input movie in.mkv.
There are effectively 2 different scenes inside of in.mkv. I want to be able to crossfade between the scenes, preferably with just using a complex filter instead of external programs. Essentially, I want to have something like an overlay but with the alpha changing at a specific time.Consider if in.mkv looked like this :
00:00 - 00:05 scene 1
00:05 - 00:10 junk
00:10 - 00:15 scene 2So, I would want an output that had :
00:00 - 00:04 scene 1 (0-4)
00:04 - 00:05 alpha fading between scene 1 (4-5) and 2 (10-11)
00:05 - 00:09 scene 2 (11-15)I see that there's a filter for : overlay, alphamerge, and color, but it's not clear how exactly to do this.
In general, it seems hard to work with pieces of a movie file in ffmpeg. Is there a way to say that I am taking various pieces of the same input file and putting them together without rendering them as separate movies first ?
-
In spring manage threads created by one controller's different instances
14 janvier 2014, par lubovbycI have written a controller to deal with video upload. The hard part for me is to convert the video type to both mp4 and webm. I chose to new a thread in my controller and the thread will new a process which is a video convert software called "ffmpeg".
The problem is that this thread will occupy too much resources(at least 25% CPU usage). So I guess I have to make these threads created by different controller instances execute in a shared queue. It is terrible to have these threads in concurrent execution.
It seems that the taskExecutor in Spring can only manage threads created by one controller instance. And is there any way to manage threads among threads created by one controller class but different instances ? It seems like a public or shared thread pool..
-
How to run multiple ffmpeg command in using && or |
31 janvier 2019, par YadavKI have create an repeated audio track and then merge it with video. so I have used && operator for that but it gives me and error
sample command is like
"-stream_loop 2 -i /storage/emulated/0/Movies/Hard.mp3 -c copy -y /storage/emulated/0/Movies/sfsdf.mp3 && -i /storage/emulated/0/Movies/Vid.mp4 -i /storage/emulated/0/Movies/sfsdf.mp3 -map 0v0 -map 1a0 -y -acodec copy -vcodec copy -preset ultrafast -async 1 /storage/emulated/0/Movies/audio_loop.mp4"the commands are seperated by &&
both the commands run well individually but using && operator it will not work.
Does anybody having idea about it ?refernece link : Run ffmpeg multiple commands
Thanks in advance