
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (101)
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
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.
Sur d’autres sites (5337)
-
How to access MP4 tfhd headers
31 juillet 2017, par ArianaThis is a follow-up question from my previous question here. It looks like our video processing software assumes there is
sample_duration
flag (it is set to 1).So my question is how to access the
default_sample_duration
field in thetfhd
as shown below ?Let’s assume I’m in the
traf_box
, and I need to just access theDefault_sample_duration
(I already found the flag is located in thetfhd_flags & 0x8
from here). I just need to add a function in C++ to extract the value of this field :void get_traf_box_index(FILE* inputFile, uint32_t traf_size, vector >& moof_sample_details, vector >& moof_sample_durations, vector<int>& truns_sample_counts, uint32_t& base_media_decode_time) {
uint32_t read_size = 0;
while(read_size < (traf_size - 8)) {
uint32_t box_size = read_box_size(inputFile);
read_size += 4;
uint32_t box_type = read_box_type(inputFile);
read_size += 4;
switch (box_type) {
case TRUN_BOX_TYPE:
get_trun_box_index(inputFile, truns_sample_counts, moof_sample_details, moof_sample_durations);
read_size += (box_size-8);
moof_trun_count++;
break;
case TFDT_BOX_TYPE:
get_tfdt_box_index(inputFile, base_media_decode_time);
read_size += (box_size-8);
break;
//TODO add tfhd
//case TFHD_BOX_TYPE:
default:
read_size += skip_n_bypes(inputFile, (box_size-8));
break;
}
}
}
</int> -
error : Argument 'Creation]/audio_section_working/1.mp3' provided as input filename, but '/e/[Content' was already specified
16 juin 2021, par shank_fab_workerPlease help me out in this problem


Use of this program :


find duration of a video and audio



code :


loc="/e/[Content Creation]/audio_section_working/1.mp3"
echo $(ffprobe -v error -show_entries format=duration /
-of default=noprint_wrappers=1:nokey=1 $loc )



error :


Argument 'Creation]/audio_section_working/1.mp3' provided as input filename, but '/e/[Content' was already specified.



working earlier when no path was given , when i have done git bash on the same directory in which the file was located :


echo $(ffprobe -v error -show_entries format=duration -of default=noprint_wrappers=1:nokey=1 "1.mp3" )



[ as u can see when i am giving path of file to find duration it is giving me error]
[ giving direct path i.e. "1.mp3" is not giving me error ]
[ giving file location path is giving error , why ? ]




-
avformat/mp3dec : avoid early EOF with concatenated gapless mp3s
21 septembre 2014, par wm4avformat/mp3dec : avoid early EOF with concatenated gapless mp3s
Consider a file created with something like :
cat file1.mp3 file2.mp3 > result.mp3
Then if file2.mp3 has gapless information, result.mp3 would stop playing
something in the middle. This happens because the gapless info directs
the decoder to discard all samples after a certain position. To make
matters worse, the gapless info of file2.mp3 will be used when playing
the file1.mp3 part, because the gapless info is located at the end of
the file.While handling concatenated gapless files correctly would be insane and
a lot of effort (especially without scanning the whole file on opening),
it’s easy to prevent at least early EOF. Playback will happen to work,
even if it’s slightly broken.Signed-off-by : Michael Niedermayer <michaelni@gmx.at>