Recherche avancée

Médias (91)

Autres articles (37)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

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

  • Installation en mode standalone

    4 février 2011, par

    L’installation de la distribution MediaSPIP se fait en plusieurs étapes : la récupération des fichiers nécessaires. À ce moment là deux méthodes sont possibles : en installant l’archive ZIP contenant l’ensemble de la distribution ; via SVN en récupérant les sources de chaque modules séparément ; la préconfiguration ; l’installation définitive ;
    [mediaspip_zip]Installation de l’archive ZIP de MediaSPIP
    Ce mode d’installation est la méthode la plus simple afin d’installer l’ensemble de la distribution (...)

Sur d’autres sites (6149)

  • Mathematically lossless encoding and decoding of RGB24 image sequence

    25 avril 2013, par curryage

    I am trying to encode a RGB24 image sequence into a mathematically (not merely visually) lossless video. huffyuv was suggested on many online forums so I tried the following.

    ffmpeg -i frames\%06d.png  -vcodec huffyuv test.avi

    The resulting video was then decoded into frames again using ffmpeg

    ffmpeg -i test.avi outframes\%06d.png

    However, the input and output frames are not bit-by-bit identical as promised by huffyuv here. Any idea how I can accomplish this ? My eventual goal is to read the video file using OpenCV but I am willing to cross that bridge later once I obtain a losslessly encoded video file.

    This SO question mentions an attempt to obtain a lossless h264 avi and the summary of responses seems to indicate h264 cannot completely accomplish lossless encoding.

    Once again, to emphasize, I am interested in bit-by-bit identical encoding, not just visually similar. Large file sizes are acceptable as is large compression/decompression time.

  • ffmpeg - i do not add some headers

    27 décembre 2020, par badcode

    I have compiled the FFmpeg library using : https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu

    


    And have built the doc/examples codes and they are working well. There is no problem.

    


    But now I try to add some extra headers to my code

    


    #include "libavformat/avformat.h" // its ok
#include "libavformat/oggdec.h" // fail


    


    but it gives the following error.

    


     No such file or directory
 #include "libavformat/oggdec.h"


    


    And this libavformat dir :

    


    (base) alitokur@ubuntu:~/ffmpeg_sources/ffmpeg/libavformat$ ls | grep ogg
oggdec.c
oggdec.d
oggdec.h
oggdec.o
oggenc.c
oggenc.d
oggenc.o
oggparsecelt.c
oggparsecelt.d
oggparsecelt.o
oggparsedirac.c
oggparsedirac.d
oggparsedirac.o
oggparseflac.c
oggparseflac.d
oggparseflac.o
oggparseogm.c
oggparseogm.d
oggparseogm.o
oggparseopus.c
oggparseopus.d
oggparseopus.o
oggparseskeleton.c
oggparseskeleton.d
oggparseskeleton.o
oggparsespeex.c
oggparsespeex.d
oggparsespeex.o
oggparsetheora.c
oggparsetheora.d
oggparsetheora.o
oggparsevorbis.c
oggparsevorbis.d
oggparsevorbis.o
oggparsevp8.c
oggparsevp8.d
oggparsevp8.o


    


    I cant add other headers btw except "avformat.h". What am I missing ?

    


  • (Cross-platform) FFMPEG based GUI direct stream copy linear video editor [on hold]

    14 octobre 2014, par Fluorescent Hallucinogen

    FFMPEG official site has list of FFMPEG based projects (https://trac.ffmpeg.org/wiki/Projects).

    I use VirtualDub for linear video montage using direct stream copy mode (without recompression). It is GNU GPL licensed, but is designed only for Microsoft Windows and operates only AVI files.

    FFMPEG is excellent cross-platform utility that supports many formats (codecs and containers). It can be used for split and merge video files (not only AVI) using direct stream copy mode, but FFMPEG is console UI application.

    Is there GUI video editor (based on FFMPEG) (cross-platform or maybe only for Linux or maybe only for Windows) that can split and merge video files (not only AVI) using direct stream copy mode and have preview window ?

    Now I use video player, watch the input video file, remember the time for split video to fragments and write console line script for merge these fragments. All work is OK, but it is very inconvenient.

    At the worst, are there players or editors that can generate project file (that contains time markers for split and merge) that can be used with FFMPEG ?