Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (80)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

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

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (9912)

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