Recherche avancée

Médias (91)

Autres articles (68)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (6968)

  • convert videos server side using ffmpeg

    22 janvier 2015, par Edward

    Good evening,

    I am looking for a way to convert any type of video format (avi, mp4, 3gp, ogg, etc..) to .flv, I currently use flowplayer and it only supports flv

    I have installed ffmpeg onto my server just fine, the issue is, when ever I upload any video formatted (for an example an .mp4) file I get the error "could not convert video file"

    How may I fix this issue ?

    what I am trying to accomplish with this, I want to upload videos of any format have ffmpeg convert it to lets say .flv and then have the video played through flowplayer

  • How to add vf="hflip" flag on videos in android

    14 janvier 2015, par Usman Afzal

    I just want to add vf="hflip" flag in video file. I have used the ffmpeg to update the video but it will take much time to flip the video.
    Is there any way to add hflip tag in metadata of video ?

  • Concatenate two videos in shell_exec in php ?

    6 janvier 2015, par Vinodh Kumar

    I am trying to concatenate two videos using ffmpeg in PHP. When I run this command in Terminal it works fine

    ffmpeg -i concat:"1.mp4|2.mp4" -codec copy output.mp4

    Then output is generated. When i try to implement in shell_exec its not working it returns empty string.
    This is my code.

    $s= shell_exec('ls cd /opt/lampp/htdocs/videoapp/ffmpeg/ffmpeg -i concat:"1.mp4|2.mp4" -codec copy output.mp4');
    echo "<pre>$s</pre>";

    Inside the FFMpeg folder I am trying to put concatenated video so I chose the path ffmpeg folder. The remaining string ffmpeg -i concat:"1.mp4|2.mp4" -codec copy output.mp4 for concatenate the video.