
Recherche avancée
Médias (91)
-
Spoon - Revenge !
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
My Morning Jacket - One Big Holiday
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Zap Mama - Wadidyusay ?
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
David Byrne - My Fair Lady
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Beastie Boys - Now Get Busy
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (102)
-
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 (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (14211)
-
FFMPEG splitted video from rtmp stream having issue with audio
9 avril 2021, par Shibin Raju MathewUsing ffmpeg, I'm able to split video from rtmp stream into different chunks, but having issue with audio. Each chunk having muted audio at the end. That means last few seconds of video is muted. Here I added the command what is used.


ffmpeg -i rtmp://server-url -ss 00:00:00 -c copy -map 0 -segment_time 00:00:30 -f segment -reset_timestamps 1 %03d_split.mp4



NB : if you can suggest any other library to do the same in java programs then it will be a great helpful. Thanks in advance.


-
divx to mp4 converted videos using avconv are not playing with jwplayer in Firefox
30 mai 2014, par SureshI am trying to convert all format videos to mp4 using libav library. I am using the following command to convert any format to mp4 i.e
"avconv -i input -s 1024x768 -strict 2 -c:v libx264 -c:a copy -f mp4 output.mp4" and it is working fine in chrome and IE where as not working in Firefox and safari.
You can find the issue here https://ppe.maventus.com/player.php?v=721
Note : avi to mp4 is working in all browsers.
Any help to fix this would be much appreciated.
Thanks in advance,
Suresh -
Extract the 0th frame of every second on a live video
14 avril 2020, par geo-freakI have a command to extract the zero-th frame of every second. I got the command from here.



ffmpeg -i input.ts -vf "select=between(mod(n\, 25)\, 0\, 0), setpts=N/24/TB" output-%04d.png




But when I run the above command on live feed, it is extracting more than 100000 frames. The above command is not working on a live recording. Can anyone suggest or help me to extract the very first frame on a live recording ? Thanks in advance.



P.S : For my testing I am running the above command on a tcr video.