Recherche avancée

Médias (91)

Autres articles (108)

  • Qu’est ce qu’un masque de formulaire

    13 juin 2013, par

    Un masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
    Chaque formulaire de publication d’objet peut donc être personnalisé.
    Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
    Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)

  • Gestion générale des documents

    13 mai 2011, par

    Mé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, 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.

Sur d’autres sites (15909)

  • Right choice to play audio and video content

    22 juin 2012, par deimus

    What I'm doing :

    I need to play audio and video files that are not supported by Apple on iPhone/iPad for example mkv/mka files which my contain several audio channels.

    I'm using libffmpeg to find audio and video streams in media file.
    Video is being decoded with avcodec_decode_video2 and audio with avcodec_decode_audio3
    the return values are following for each function are following

    • avcodec_decode_video2 - returns AVFrame structure which encapsulates information about the video video frame from the pakcage, specifically is has data field which is a pointer to the picture/channel planes.
    • avcodec_decode_audio3 - returns samples of type int16_t * which I guess is the raw audio data

    So basically I've done all this and successfully decoding the media content.

    What I have to do :
    I've to play the audio and video accordingly using Apples services. The playback I need to perform should support mixing of audio channels while playing video, i.e. let say mkv file contains two audio channel and a video channel. So I would like to know which service will be the appropriate choice for me ? My research showed that AudioQueue service might be useful audio playback, and probably AVFoundation for video.

    Please help to find the right technology for my case i.e. video playeback + audio playback with possible audio channel mixing.

  • Need a better understanding of HTML 5 audio/video meta data use and placement

    24 juin 2012, par nicoz

    I have spent a significant amount of time researching HTML 5 audio and video, however I am stuck understandong the encoding of the meta data. It seems that in my research, using programs like Handbrake (ffmpeg) it is recommend to check of "web optimized" (also using this type of setting when say exporting from imovie). I have concluded that this has to do with moving the file's meta data to the beginning of the file. This then gives the player/browser the info it requires to play immediately without having to wait to load the entire file.

    So here is where I am confused and the questions

    Does this only apply to mp4 files ? (I need to also encode/transcode .ogv and .webm)
    Where does the mp4 MOOV atom fit into this or is that what people are referring to, when they say move the meta data to the front of the file ?

  • ffmpeg convert mp4 to mpg which can be played in a dvd player

    17 avril 2014, par Santhosh Yedidi

    I have seen that to convert a file to dvd player format using ffmpeg we use

             ffmpeg -i input.mp4  -target  ntsc-dvd  output.mpg

    the output.mpg will be played from usb in the tv.

    But the bitrate at which ntsc-dvd converts is very high. Because of which the size of the mpg is 5 times bigger than mp4.

    So i tried to convert manually

              ffmpeg -i input.mp4  -c:v mpeg2video  -q:v 5 -c:a ac3 -b:a 60k output.mpg

    the problem is the file gets converted with almost equal size as mp4 but without any sound. The audio codec of output.mpg shows ac3. Why ac3 is not having any sound.