Advanced search

Medias (1)

Tag: - Tags -/ogg

Other articles (92)

  • Amélioration de la version de base

    13 September 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 (...)

  • Le profil des utilisateurs

    12 April 2011, by

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

  • Configuration spécifique pour PHP5

    4 February 2011, by

    PHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
    Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
    Modules spécifiques
    Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)

On other websites (5729)

  • FFMPEG dshow format not working Windows 10

    22 October 2016, by Jonathan Beaudoin

    I’d like to use this library for my remote desktop software but it does not seem to be working. It works fine if I run ffmpeg from command line.

    Here is my test class:

    public class FFMPEG {

       public static void main(String[] args) throws Exception {
           FFmpegFrameGrabber grabber = new FFmpegFrameGrabber("video=\"screen-capture-recorder\"");
           grabber.setFormat("dshow");
           grabber.setImageWidth(2560);
           grabber.setImageHeight(1440);
           grabber.start();

           CanvasFrame frame = new CanvasFrame("Screen Capture");
           while (frame.isVisible()) {
               frame.showImage(grabber.grab());
           }
           frame.dispose();
           grabber.stop();
       }

    }

    and here is what I have in my gradle.build

    repositories {
       mavenCentral()
    }

    configurations {
       all*.exclude group: 'org.bytedeco', module: 'javacpp-presets'
    }

    dependencies {
       compile "org.bytedeco:javacv:1.2"
       compile "org.bytedeco:javacpp:1.2.1"

       compile group: 'org.bytedeco.javacpp-presets', name: 'ffmpeg', version: '3.1.2-1.2'
       compile group: 'org.bytedeco.javacpp-presets', name: 'ffmpeg', version: '3.1.2-1.2', classifier: 'windows-x86_64'
    }

    Here is the error I get when running that class:

    Exception in thread "main" org.bytedeco.javacv.FrameGrabber$Exception: avformat_open_input() error -5: Could not open input "video="screen-capture-recorder"". (Has setFormat() been called?)
       at org.bytedeco.javacv.FFmpegFrameGrabber.startUnsafe(FFmpegFrameGrabber.java:437)
       at org.bytedeco.javacv.FFmpegFrameGrabber.start(FFmpegFrameGrabber.java:385)
       at FFMPEG.main(FFMPEG.java:14)
       at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
       at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
       at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
       at java.lang.reflect.Method.invoke(Method.java:498)
       at com.intellij.rt.execution.application.AppMain.main(AppMain.java:147)
    [dshow @ 000000000179c5e0] Could not enumerate video devices (or none found).
    [dshow @ 000000000179c5e0] Could not enumerate video devices (or none found)
  • FFmpeg iOS RTSP Player compile issue

    15 December 2016, by Julien

    I’m trying to compile a project which use FFmpeg libraries in iOS: https://github.com/hackacam/ios_rtsp_player

    This project successfully compile for armv7 architecture but I can’t compile it for arm64 cause FFmpegDecoder.framework has:

    "Undefined symbols for architecture arm64"

    So I tried to recompile the FFmpegDecoder.framework from this project : https://github.com/mooncatventures-group/ffmpegDecoder with the latest build of FFmpeg library: https://downloads.sourceforge.net/project/ffmpeg-ios/ffmpeg-ios-master.tar.bz2

    But I have some headers issues like you can see in my project : https://wetransfer.com/downloads/b1a3fc1438d2464ebeb86f38b08e1dff20161215093957/9b4211

    I don’t know if I use the good way to compile the framework.

    Can you help me to fix this issue ?

    Thanks in advance.

    My configuration:

    macOS 10.12.2
    Xcode 8.1
    FFmpeg 3.2.2
  • FFmpeg iOS RTSP Player compile issue

    15 September 2017, by Julien Chevet

    I’m trying to compile a project which use FFmpeg libraries in iOS: https://github.com/hackacam/ios_rtsp_player

    This project successfully compile for armv7 architecture but I can’t compile it for arm64 cause FFmpegDecoder.framework has:

    "Undefined symbols for architecture arm64"

    So I tried to recompile the FFmpegDecoder.framework from this project : https://github.com/mooncatventures-group/ffmpegDecoder with the latest build of FFmpeg library: https://downloads.sourceforge.net/project/ffmpeg-ios/ffmpeg-ios-master.tar.bz2

    But I have some headers issues like you can see in my project : https://wetransfer.com/downloads/b1a3fc1438d2464ebeb86f38b08e1dff20161215093957/9b4211

    I don’t know if I use the good way to compile the framework.

    Can you help me to fix this issue ?

    Thanks in advance.

    My configuration:

    macOS 10.12.2
    Xcode 8.1
    FFmpeg 3.2.2