Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (83)

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

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

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

Sur d’autres sites (11930)

  • lavf/dashenc.c : Fix creating audio-only HLS playlists

    20 mai 2021, par Przemysław Sobala
    lavf/dashenc.c : Fix creating audio-only HLS playlists
    

    With audio/video HLS playlists, audio chunklists are treated as
    alternative renditions for video chunklists. This is wrong for
    audio-only HLS playlists.

    fixes : 9252

    • [DH] libavformat/dashenc.c
  • Separate Audio and Video in android

    13 février 2014, par Manoj

    I am beginner to Android application development,The aim of my project is to separate a audio and video from video file. after surfing in internet i came to know that, using FFmpeg we can do it.

    ffmpeg -i input.mkv # show stream numbers and formats
    ffmpeg -i input.mkv -c copy audio.m4a # AAC
    ffmpeg -i input.mkv -c copy audio.mp3 # MP3
    ffmpeg -i input.mkv -c copy audio.ac3 # AC3
    ffmpeg -i input.mkv -an -c copy video.mkv
    ffmpeg -i input.mkv -map 0:1 -c copy audio.m4a # stream 1

    separated video file wouldn't contain any audio it must be contain only video type.
    whether this option too possible in ffmpeg ?
    is any other alternative option there ?.

  • how to create a thumbnail, at the time of video upload ? [php / codeigniter]

    19 mai 2016, par Amol Phad sudhakar

    I am trying to create a thumbnail for my uploading video. searching for easiest way to generate thumbnail at the time of video upload itself. i think if some provide the code without using ffmpeg will be life saving for me. because i’m running my code on windows wamp or any other alternative welcomed too thank you.

    my real code is in CodeIgniter, not able to figure out how to do it.

    $postname = $this->input->post('post-name');

               $configVideo['upload_path'] = './video';
               $configVideo['max_size'] = '1000000024';
               $configVideo['allowed_types'] = 'avi|flv|wmv|mp4';
               $configVideo['overwrite'] = TRUE;
               $configVideo['remove_spaces'] = TRUE;
               $ext = get_mime_by_extension($_FILES['video']['name']);
               $video_name = str_replace(' ', '_', $postname);
               $configVideo['file_name'] = $video_name;

               $this->load->library('upload', $configVideo);
               $this->upload->initialize($configVideo);

               if (!$this->upload->do_upload('video')) {

                   $msg = $this->upload->display_errors();
                   $this->session->set_flashdata('error', $msg);


               } else {
                   $videoDetails = $this->upload->data();