Recherche avancée

Médias (91)

Autres articles (38)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • 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

Sur d’autres sites (4805)

  • Server side video merging with FFmpeg through oline form

    1er août 2017, par San007

    I have a difficult problem and not enough knowledge to solve it, therefore I am hoping you guys can give me some advice or redirect me to a professional or professional software which can solve my problem.

    I want something fairly simple but I simply do not know how to begin. I Googled extensively but didnt find any related topics.

    What do I want ?
    I want an online form on my website where people can select different options, which are videos, for example
    Question 1
    1 (1.mp4) / 2 (2.mp4) / 3 (3.mp4)
    Question 2
    X (X.mp4) / Y (Y.mp4) / Z (Z.mp4)
    Question 3
    Email adres :
    Generate

    When the visitor clicks the generator button it should merge the video’s the customer has selected. e.g. 1 and X will result in one video file of 1.mp4 and X.mp4 merged. The system should then after succesfully merging the videos send a download link to the users e-mail adres and ideally delete the video from the server afterwards.

    I know I have not done a whole lot of research because my knowledge simply is not enough to create my own solution, but I hope you guys can send me in the right direction, I do not mind any commercial solution.

  • FFmpeg HLS Live Stream Stuck with iOS 11

    1er novembre 2017, par Lamorun

    I’ve exp with FFmpeg but i recent problem with iOS 11 (Recent release for Apple)

    I used FFmpeg for stream HLS Live Stream for only iPhone and iPad in closed app for online courses. My problem is the next :

    I used this code for HLS Live Stream :

    ffmpeg -i "Input" -preset fast -c:v libx264 -c:a aac -ac 1 -strict -2 -crf 18 -profile:v baseline -maxrate 1000k -bufsize 1835k -pix_fmt yuv420p -b:a 64k -flags -global_header -hls_time 20 -hls_list_size 6 -hls_wrap 10 -start_number 1 /m3u8/test.m3u8

    This work perfect in iOS 8, 9 and 10 devices. But with new version iOS 11, video is stuck after about 30 to 40 seconds, as seen in the image :

    ios11stuck

    I have searched for hours and hours. I have done many tests, but I can not get it out, since it works perfectly with iOS 8,9 and 10 (test in somes devices, even working perfectly on a device with iOS 10, update to iOS 11, and stop working immediately, downgrade to iOS 10 and work again)

    I hope someone can help me out, thank you and greetings to all

  • "Transcode" copying video/audio codec

    22 septembre 2012, par JunCTionS

    I took some very shaky video, and went online to try and find how to stabilize it. I came upon this nice blog that uses transcode for it.
    Following the blog instructions it worked very nice, but the end result had a lot of compression artifacts. This I imagine is mostly due to using xvid as a new codec.

    My intention is reuse the codec the camera originally used which is H.264/AVC but I haven't found a way of doing so (ran into various dead ends using either encoder -y mov... or -y ffpmeg.

    In particular when using -y ffmpeg -F "-vcodec copy -acodec copy" it prints out :

    [export_ffmpeg.so] warning: Video template standard must be one of pal/ntsc

    but running

    ffmpeg -i input.mov -vcodec copy -acodec copy output.mov

    Presents no problem.

    Any idea on how to do this ? or an alternative to stabilize video on linux ?.