Recherche avancée

Médias (0)

Mot : - Tags -/masques

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (83)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • MediaSPIP en mode privé (Intranet)

    17 septembre 2013, par

    À partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
    Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
    Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (10340)

  • ffmpeg : Could not find codec parameters for stream 0 (Video : h264) unspecified size [on hold]

    15 février 2014, par dempap

    I try to convert a video from .raw to .mp4. For this reason I did download, build and install both x264 and ffmpeg. However, command :

    ffmpeg -f h264 -i output.raw -vcodec copy output.mp4

    fails with error (shown in picture below). Is there any way to fix this ?

    enter image description here

  • Making a video with opencv and ffmpeg. How to find the right color format ?

    19 décembre 2014, par luc

    I have a webcam video recorder program built with python, opencv and ffmpeg

    It works ok except that the color of the video is more blue than the reality. The problem seems to come from color format of images.

    It seems that OpenCv is giving BGR images and ffmpeg+libx264 is expecting YUV420p. I’ve read that YUV420p correspond to YCbCr.

    opencv has no conversion from BGR to YCbCr. It only has a conversion to YCrCb.

    I have made some searchs and tried different alternatives to try converting opencv image to something that could be ok for ffmpeg+libx264. None is working. At this point, I am a bit lost and I would appreciate any pointer that could help me to fix this color issue.

  • ffmpeg : Unable to find a suitable output format, libfaac

    29 juin 2013, par StackOverflowNewbie

    I just downloaded "FFmpeg git-070b0e1 32-bit Static (Latest)" from http://ffmpeg.zeranoe.com/builds/. I extracted the files on my Vista machine and then updated my PATH to point to presets and bin folders.

    The first command I ran was this :

    ffmpeg -i C:/a.avi  -vcodec libtheora  -qscale 6  -acodec libvorbis  -ab 128k  -vf scale="480:-1"   C:/a.ogv

    I got this error :

    Please use -q:a or -q:v, -qscale is ambiguous
    [NULL @ 0200F800] Unable to find a suitable output format for 'C:/a.ogv''
    C:/a.ogv': Invalid argument

    The second command I ran was this :

    ffmpeg -i C:/a.avi  -vcodec libx264  -preset slow  -profile main  -crf 20  -acodec libfaac  -ab 128k  -vf scale="480:-1"   C:/a.mp4

    I got this error : Unknown encoder 'libfaac'

    Questions :

    1. I'm trying to convert an input video (I don't know what the MIME type is) and output it as ogv and mp4 so I can play it on a website. Of course, I'm looking for highest possible quality at the lowest possible file size. I've pieced my commands from what I can find on the net. Am I on the right track ? What can I do to improve ?

      1. Any ideas how to address the errors I'm getting ?