Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (67)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

  • 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 (...)

Sur d’autres sites (6821)

  • Extracting videos in mp4 format from SWF files

    24 mai 2017, par Mradula

    I am working on swf files which are actually video getting played on browser. I can’t work directly on them. The input for my Python code is video in .mp4 or .mov format. How to convert or extract video from those swf files ? I tried out using FFMPEG but I am getting only audio not visual part after conversion.

    The ffmpeg command that I am using is :

    ffmpeg -i source.swf out.mp4

    I am writing code in Python and my OS is Windows 2007.

  • avcodec_encode_video2 coding gets H264 video frames, sent through live555 services, VLC playback, unable to display

    2 mars 2018, par donghui.R

    avcodec_encode_video2 encoding to get AVPacket H264 video frames, live555 RTSP stream service sent, client VLC play, can not be displayed. But the direct preservation of AVPacket H264 video frames is H264 files, which can be played with VLC, but it is very fast. Do not know if I need to deal with H264 video frames more closely ??

  • How to make video created with FFMPEG compatible to vlc media player as well

    4 mars 2020, par Junaid Farooq

    I am making a mp4 video while using this command from downloaded jpegs, everything is working fine but the video is not being played in VLC but in Media Player, default one of Ubuntu.

    ffmpeg -y -framerate 6 -i #{path}%d.jpg -i #{evercam_logo} -filter_complex '[1]scale=iw/2:-1[wm];[0][wm]overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10' -pix_fmt yuv420p -c:v h264_nvenc -preset slow -bufsize 1000k #{path}#{id}.mp4

    I have tried multiple formats but the results are same. what Am I missing here ? any help would be wonderful thank you.