Recherche avancée

Médias (91)

Autres articles (92)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette 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.

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (6686)

  • ffprobe how to retrieve both audio and video info and output to single line ?

    16 novembre 2018, par gregm

    I can use the following to retrieve the audio and video codec and the video frame height :

    ffprobe -v quiet -show_entries stream=index,codec_name,height -of csv input.mp4

    But the output is on two lines and includes text that I don’t need like so :

    stream,0,h264,720
    stream,1,mp3

    The only output I want is to be in the form of :

    mp3,h264,720

    I’ve tried using -show_entries twice in the same command line, but it ignores the first call every time. I’ve also tried using

    ffprobe -v quiet -select_streams v -show_entries stream=codec_name,height, -select_streams a -show_entries stream=codec_name

    but that doesn’t do anything.

    How can I get the simplified output as specified above ?

  • AVI INFO crashes the Octave GUI every time I try to run the code

    18 mai 2017, par Sulphur

    I am trying to run a code in octave which requires reading frame info of a video file. However, it always crashes when I write the aviinfo. The line goes as this :

    > vInfo = aviinfo('C:\devwork\Octave\boosted\resizedVideos\11-50-48--11-50-58_resized.mp4');

    I realized that I did not have FFmpeg installed on my system. I did install it but still it crashes. Any idea why ? How should I solve it ?

    While looking for solutions I came across this discussion which says there is a possibility of an "unfortunate interplay between the Octave code and the ffmpeg code. But I am unable to figure out why ?

  • mp4 files / SSTS info

    3 avril 2017, par Thomas

    I am trying to find the fastest way to get a list of all I-frames in a movie.

    So far, I tried ffprobe, but it is quite slow and I have been looking for a faster solution.

    The other option I found is using the mp4parser tool ; it outputs a file with this sectio, the SSTS info :

    -------------------------------------------------------------------------
    /moov/trak/mdia/minf/stbl/stss                              @ 0x1c152d8
     Box size: 0x44    version: 0x0    flags: 0x0
     entry_count:              0xd
       sample_number:
        0x1    0x12d    0x259    0x385    ....

    I can see that I have 13 I frames and they’re spaced 300 frames apart (from the 4 values displayed)

    Is the spacing of I frames constant through movies ? or do I need to write my own SSTS parser to get the whole list ?