Recherche avancée

Médias (0)

Mot : - Tags -/content

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (34)

  • 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

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

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

Sur d’autres sites (3719)

  • ffmpeg - make video for online web players (flowplayer, jw player) [on hold]

    7 janvier 2016, par Ba Ta

    Im restreaming a link in ffmpeg using this command line

    -vcodec copy -c:a libmp3lame -ab 48k -ar 22050

    so if i play in flowplayer (web PLayer) i just listen audio perfect and video has problems "so i just see images insteand of video" its very slow and it blocks

    When i play same video link on pc on vlc player its working perfect and in video codec i see

     H264 - MPEG-4 AVC (avc1)     MPEG Audyo layer 3 (mp3)

    so how to convert this stream so i can watch on web players like flowplayer or jw player

  • Upload a photo into an online video [on hold]

    17 juillet 2015, par jennie788

    Id like to allow my online users to upload their photo onto my web server. Then I want their photo to be embedded into an online video.

    The idea is to make it look as if their photo appears in an empty frame on a shelf for example. I want them to be the hero of the video.

    I’d also like them to be able to view the final video with their uploaded photo seconds after the upload.

    I know how to do this in flash but what other tools can i use to achieve this please ?

    I thought about using ffmpeg to add the picture on the fly. Is it the right approach ?

    All I need is somebody to point me in the right direction. What tool should I use to do this.

    Thanks

    Jennie

  • sh : ffmpeg : command not found using php in online

    7 mai 2015, par Intrepid Uliyar

    I have using ffmpeg for generating thumbnail from video.it’s working fine in local host.but not generated in online, it just throw "sh : ffmpeg : command not found".

    I have check the ffmpeg.exe, and also given video file path, and image destination path..what’s wrong with me..

    $ffmpeg="ffmpeg.exe";

    //time to take screenshot at
       $interval1 = 2;

       //screenshot size
       $size = '320x240';

    $cmd1 = "$ffmpeg -i $video -deinterlace -an -ss $interval1 -f mjpeg -t 1 -r 1 -y -s $size $image1 2>&1";