Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (76)

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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (7330)

  • 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();
       }
    }