
Recherche avancée
Médias (3)
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (41)
-
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...) -
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (7959)
-
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.