
Recherche avancée
Autres articles (53)
-
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 (...) -
Librairies et logiciels spécifiques aux médias
10 décembre 2010, parPour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)
Sur d’autres sites (4705)
-
Changing Video's rotation metadata without rotating video
2 décembre 2016, par Arshdeep SinghI have two Videos. One is from front camera and one is from back camera. When I concatenate these two. one gets vertically inverted in merged file. Video taken from front camera having rotation metadata 270. And Video taken from back camera having rotation metadata 90. While concatenation one gets inverted, while I don’t want. Please help....
-
Issue with video.js playing AES encrypted video
2 septembre 2021, par r3dgeI'm trying to use video.js to play an encrypted HLS video. The AES 128 encryption has been done using this method : FFmpeg video encryption


Here is the html code :



 
 <source src="http://192.168.56.1/enc/prog_index.m3u8" type="application/x-mpegURL">
</source>

 
 
 

Video.js is loaded using CDN :


<code class="echappe-js"><script src="https://unpkg.com/video.js/dist/video.js"></script>



<script src="https://unpkg.com/@videojs/http-streaming/dist/videojs-http-streaming.js"></script>



The player is loading and appears in the browser but the video can not be played.


I get two warnings in the console :


video.js:159 VIDEOJS : WARN : A plugin named "reloadSourceOnError" already exists. You may want to avoid re-registering plugins !


VIDEOJS : WARN : Problem encountered with playlist 0-http://192.168.56.1/enc/prog_index.m3u8. Trying again since it is the only playlist.


Server side i'm using Apache with Symphony 5. The server return a HTTP 200 status for the first ts file of the video. When i press the play button of the player seems to retry downloading. It get a 200 each time but the video is not played.


Update : i tried to play the same video without encryption and it works. The problem seems to be due to the encryption itself.


Thanks in advance for any help on that issue.


-
ffmpeg video concate not working when one video is generated from a single image
16 décembre 2017, par Sidwhat I am doing is generating a video of 5 secs from a single image using FFmpeg.
for that I’m using the following command :
-loop 1 -i image.jpg -c:v libx264 -t 5 -pix_fmt yuv420p -crf 25 -s 1280x720 Out.mp4.
Now I want to concatenate this video with another one.
I am able to do this for other videos with the following command
-y -i input1.mp4 -i input2.mp4 -strict experimental -filter_complex [0:v]scale=1280x720,setsar=1:1[v0][1:v]scale=1280x720,setsar=1:1[v1] ;[v0][0:a][v1][1:a]
concat=n=2:v=1:a=1 -ab 48000 -ac 2 -ar 22050 -s 1280x720 -r 30 vcodec
mpeg4 -b 2097k output.mp4But when I join the video generated from the image, the videos do not join as the second input does not have an audio because it is generated from the image.So is there any way to join these two videos using
-filter_complex
in FFmpeg ?