Recherche avancée

Médias (91)

Autres articles (105)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

Sur d’autres sites (11985)

  • Is it possibel extract thumbnails and save them on website using youtube video. (by front-end users)

    24 octobre 2013, par Jaewook Koh

    I read blog about print youtube video on "http://www.labnol.org/internet/print-youtube-video/28217/".

    I have a self-hosted video site.

    But video hosting makes too many traffic.

    So I decideed another plan for site.

    It's to generate thumbnails of external video. Is it possible ?

    I found making thumbnails using ffmpeg, but there are a lot of videos in external platform(Like Youtube, Vimeo, etc)

    After I saw Amit Agarwal's blog("print youtube video"), I was very impressed.

    Anyway if it is impossible, I should find another way.

    Thanks-

  • Cannot display ffprobe information from youtube properly

    31 janvier, par Krishnaap

    I am trying to grab information from youtube streams using ffprobe and python. I could display offline video information properly on python, cannot do the same from youtube live streams.

    


    
os.system("ffprobe -hide_banner -stats -v quiet -pretty -show_entries format=size,duration:stream=filename,index,codec_type,codec_name,profile,bit_rate,width,height -of compact -i https://www.youtube.com/watch?v=QzsfLSP6hkI")


    


    showing an error

    


    


    Argument 'https://www.youtube.com/watch?v=QzsfLSP6hkI' ; provided as input filename, but 'quiet' was already specified.

    


    


  • Creating thumbnail using ffmpeg for video downloaded from youtube

    24 septembre 2015, par akhila

    Thanks in advance. I have trouble creating thumbnail for videos downloaded from youtube . I have downloaded videos using the youtube downloader extension and saved to mp4 format , When I upload a video to my site I use ffmpeg to create the thumbnail of the videos , For other mp4 videos it works perfectly fine but for youtube videos. Youtube videos are uploaded to the site and thumbnail creation not working. Here goes my code.

        system('ffmpeg -i '.$saveimgpath1.' -ss 00:00:00.010 -vframes 1 '.$thumbpath);

    The path given is correct as it works for other videos.Any help will be greatly appreciated .