
Recherche avancée
Autres articles (94)
-
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 (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
Sur d’autres sites (8444)
-
Can FFMpeg load codec at runtime ?
14 juin 2015, par Léon PelletierThere is a specific case - Cisco OpenH264 - where to have Cisco paying for the MPEG LA royalties, one must uses a released version of the library. In other words, the lib needs to be downloaded, not compiled.
Is there a way to have FFmpeg download it instead of refering to it ?
Ex. ffmpeg -i input.mpeg -lib openh264.so -o result.mp4 ?
-
Read id3 tag from ffmpeg-converted mp3 files
14 octobre 2012, par payalI have the below script for reading the
id3
tag for mp3 files. I have checked manually thatid3
tags are there in mp3 files but my output always returns for a 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 the script for converted files (by ffmpeg), it is not showing anyid3
tags . I have downloaded both original and converted files and checked them and found that both files have exactly the same tags but the below code gives the error message anyway.Here is the 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");
}
?> -
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");
}
?>