Recherche avancée

Médias (91)

Autres articles (66)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • L’utiliser, en parler, le critiquer

    10 avril 2011

    La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
    Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
    Une liste de discussion est disponible pour tout échange entre utilisateurs.

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (5003)

  • Live transcoding and streaming of MP4 works in Android but fails in Flash player with NetStream.Play.FileStructureInvalid error

    23 juillet 2012, par user831052

    Recently I had a task to use ffmpeg as a transcoding as well a streaming tool. The task was to convert the file from a given format to MP4 and immediately stream it, by capturing it from stdout. So far so good. The streaming works well with the native player of android tabs as well as the VLC player. The issue is with the flash player. It gives the following error :

    NetStream.Play.FileStructureInvalid : Adobe Flash cannot import files that have invalid file structures.

    ffmpeg flags used are

    $ ffmpeg -loglevel quiet -i somefile.avi -vbsf h264_mp4toannexb -vcodec libx264 \
    -acodec aac -f MP4 -movflags frag_keyframe+empty_moov -re - 2>&1
  • Ffmpeg error in linux [closed]

    16 février 2016, par NaijaProgrammer

    Any help on how I can solve this error :
    ffmpeg: error while loading shared libraries: libavdevice.so.52: cannot open shared object file: No such file or directory

  • Error using ffmpeg-Sharp

    17 octobre 2012, par NoProblemBabe

    Why does this code throws an MarshalDirectiveException ?
    Obs : I am using ffmpeg-Sharp

    Cannot marshal 'return value' : Pointers cannot reference marshaled
    structures. Use ByRef instead.

    class Program
    {
       unsafe static void Main(string[] args)
       {
           AVCodecContext* ctx =
                    FFmpeg.avcodec_alloc_context();
       }
    }