Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (98)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (8270)

  • How to stop and save recorded video in ffmpeg using java netbeans ?

    15 juillet 2014, par user3451310

    I found some codes in recording video using webcam but im having a problem in stopping and saving the video output. when i stop it from netbeans, the output video doesn’t show anything(it is like a corrupted video). can anyone tell me what is wrong in this code ? tnx so much for the help

    try {  
          OpenCVFrameGrabber grabber = new OpenCVFrameGrabber(0);  
          grabber.start();  
      opencv_core.IplImage grabbedImage = grabber.grab();  
      CanvasFrame canvasFrame = new CanvasFrame("Video recorder");  
      canvasFrame.setCanvasSize(grabbedImage.width(), grabbedImage.height());  
      grabber.setFrameRate(grabber.getFrameRate());  

      FFmpegFrameRecorder recorder = new FFmpegFrameRecorder("D:/Vid/testvideo.mp4", grabber.getImageWidth(), grabber.getImageHeight());
      recorder.setFormat("mp4");  
      recorder.setFrameRate(30);  
      recorder.setVideoBitrate(10 * 1024 * 1024);
      recorder.setVideoCodec(13);


      recorder.start();  
      while (canvasFrame.isVisible() && (grabbedImage = grabber.grab()) != null) {  
        canvasFrame.showImage(grabbedImage);  
        recorder.record(grabbedImage);  
      }  
      recorder.stop();  
      grabber.stop();  
      canvasFrame.dispose();  

    } catch (FrameGrabber.Exception ex) {  
      Logger.getLogger(web.class.getName()).log(Level.SEVERE, null, ex);  
    } catch (FrameRecorder.Exception ex) {  
      Logger.getLogger(web.class.getName()).log(Level.SEVERE, null, ex);  
    }  


    }          
  • fftools/ffplay : stop using AVFrame.pkt_pos

    9 mars 2023, par Anton Khirnov
    fftools/ffplay : stop using AVFrame.pkt_pos
    

    This field is ad-hoc and will be deprecated. Use the recently-added
    AV_CODEC_FLAG_COPY_OPAQUE to pass arbitrary user data from packets to
    frames.

    • [DH] fftools/ffplay.c
  • fftools/ffmpeg_mux : stop logging to AVFormatContext

    14 décembre 2023, par Anton Khirnov
    fftools/ffmpeg_mux : stop logging to AVFormatContext
    

    Only the muxer itself is supposed to do that. Log to OutputStream
    instead.

    Drop now-redundant information from the logged string.

    • [DH] fftools/ffmpeg_mux.c