Recherche avancée

Médias (91)

Autres articles (36)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (4385)

  • video concating in FFmpeg from front and back camera creating a video flip [closed]

    27 octobre 2020, par Suraj Lalla

    When concating a video from front camera and back camera in FFmpeg the video from the front camera is flipped 180 degrees, please help ...

    


  • iOS how to transcode mjpeg video to h264 video with ffmpeg ?

    16 août 2016, par J.Duan

    I want to transcode mjpeg format video to h264 video with ffmpeg.
    In fact , i found a ffmpeg based demo to get the goal but the app will crash when I play video with VLC or Vitamin . Does anyone have an iOS video-transcode demo or some ways to play MJPEG-format video except VLC and Vitamin ?

  • How to convert ogv video file into Mp4 video format using Java

    16 février 2016, par Srinivasan Seenu

    I need to convert OGV VIDEO Format into MP4 VIDEO Format.

    • I use this below Java code to convert MP4 VIDEO Format to OGV VIDEO Format it is working fine.
    • For MP4 Format I use audio.setCodec(" AudioAttributes.DIRECT_STREAM_COPY") and video.setCodec("VideoAttributes.DIRECT_STREAM_COPY ").
    • But If I use this same code by change audio.setCodec(" libvorbis") and video.setCodec("mpeg4 ") it is not getting converted from Ogv to Mp4 Format. And also I try some codec in my sample program.

    • I am not able convert from Ogv to Mp4 Format.

    public class VideoConvert {
       public static void main(String[] args) throws IOException {
       File source = new File("D:\\readxml\\videoConvertorProject\\MP4toOGV\\mp4\\Sample1.ogv");
       File target = new File("D:\\readxml\\videoConvertorProject\\MP4toOGV\\ogv\\Sample2.mp4");
       AudioAttributes audio = new AudioAttributes();
       //audio.setCodec("libvorbis");
       audio.setCodec("libfaac");
       //audio.setCodec("libmp3lame");
       //audio.setCodec(AudioAttributes.DIRECT_STREAM_COPY);
       audio.setBitRate(new Integer(128000));
       audio.setSamplingRate(new Integer(44100));
       audio.setChannels(new Integer(2));
       VideoAttributes video = new VideoAttributes();
       video.setBitRate(new Integer(160000));
       video.setFrameRate(new Integer(15));
       //video.setSize(new VideoSize(176, 144));
       //video.setCodec("libtheora");
       video.setCodec("mpeg4");
       //video.setCodec(VideoAttributes.DIRECT_STREAM_COPY);
       EncodingAttributes attrs = new EncodingAttributes();
       attrs.setFormat("mp4");
       attrs.setAudioAttributes(audio);
       attrs.setVideoAttributes(video);
       Encoder encoder = new Encoder();
       try {
           encoder.encode(source, target, attrs);
       } catch (IllegalArgumentException e) {
           e.printStackTrace();
       } catch (InputFormatException e) {
           e.printStackTrace();
       } catch (EncoderException e) {
           e.printStackTrace();
       }
    }