Recherche avancée

Médias (91)

Autres articles (53)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (5888)

  • 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 ?

  • How to stream frames from ffmpeg to a process ?

    7 mars, par Vorac

    I would like to encrypt camera frames before transmitting. For that purpose the encrypting process needs to get the raw frames through some mode of IPC. I tried reading through the steaming API docs but got lost. This is an "what approach" question instead of a "working solution" one.