
Recherche avancée
Médias (29)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (76)
-
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 (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (12077)
-
id3 reading from mp3 files
2 octobre 2012, par payali have the below script for reading mp3 files id3.i have checked manually that id3 tags are there in mp3 files but my output always returns for few files
MP3 file does not have any ID3 tag !. i am converting these files from ffmpeg when i run the below code for original files it shows the id3 tags but when i run for converted files (by ffmpeg) it is not showing any id3 tags . i have downloaded both original and converted file and check and found that both files is having exactly same tags but the below code give MP3 file does not have any ID3 tag !. for converted filehere is code
<?php
$mp3 = "4.mp3"; //The mp3 file.
$filesize = filesize($mp3);
$file = fopen("4.mp3", "r");
fseek($file, -128, SEEK_END); // It reads the
$tag = fread($file, 3);
if($tag == "TAG")
{
$data["title"] = trim(fread($file, 30));
$data["artist"] = trim(fread($file, 30));
$data["album"] = trim(fread($file, 30));
$data["year"] = trim(fread($file, 4));
$data["genre"] = trim(fread($file, 1));
}
else
die("MP3 file does not have any ID3 tag!");
fclose($file);
while(list($key, $value) = each($data))
{
print("$key: $value<br />\r\n");
}
?> -
Keep blender rendered high quality images during video creation (ffmpeg)
31 janvier 2021, par TobiI created an animation in Blender and exported each frame as high quality picture. However, putting them together using ffmpeg reduces the quality (I also tried the video export from Blender but I am not an expert in video codecs and all related topics). I converted the single frames into a video by using the following command :


ffmpeg -f image2 -i %4d.png -r 60 -crf 0 -vcodec libx264 blenderVideo.mp4


The resulting frame from the video is given in the picture below. As one can see, the shining rings are clearly visible but in the original picture it is completely smooth. Any idea how to overcome this problem ? Maybe it is stupid to think that I can get the original qualities. Probably, if I upload it somewhere, it gets compressed in any case and it is not worth to investigate into that topic too much. However, I am interested and there are specialists out who can directly tell if it is worth or not.




-
FFmpeg concat protocol and keyframes
11 janvier 2023, par RemsI am trying to use to the concat protocol but I have troubles with keyframes


I use this ffprobe command to visualize the keyframes pts of my videos :


ffprobe -loglevel error -select_streams v:0 -show_entries packet=pts_time,flags -of csv=print_section=0 inout.mp4 | awk -F',' '/K/ {print $1}'


Here is my process : I have the original video, with these keyframes :


0.000000 5.000000 9.760000 14.240000 18.440000 ...


I trim the first 5 seconds, so the output has these keyframes :


0.000000 4.760000 9.240000 13.440000 ...


I create a 5 seconds video by looping an image, with the same parameters/codec... that were used to produce the original video. This video just has one keyframe at 0.000000


Then I concat this video with the trimmed video like this :


ffmpeg -f concat -safe 0 -i list.txt -c copy -shortest output.mp4 -y


But when I look for the keyframes of the output video, I get this :


0.021016 5.035000 9.795000 14.275000 ...


Is this behavior normal ? Should I add a parameter to handle keyframes during concatenation ? Thanks