Recherche avancée

Médias (91)

Autres articles (70)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Le plugin : Gestion de la mutualisation

    2 mars 2010, par

    Le plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
    Installation basique
    On installe les fichiers de SPIP sur le serveur.
    On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
    On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
    < ?php (...)

Sur d’autres sites (6029)

  • How to provide video streaming option for different formats on website

    3 avril 2014, par kami998

    In my website users can upload different video formats and i need to provide streaming for those formats (for example : mkv, avi, mp4, 3gp, wmv), but on web only mp4 format can be played by flash players.

    My videos are hosted on amazon s3 server while my webserver is on different location, what i do is receive stream from s3 and transmit to client, so what i need is to convert the video format to mp4 on the fly

    So, is there any possibility to perform this functionality ( i am using asp.net mvc webapi as streaming service )

    Any sort of help is appreciable...

  • How to convert large videos in aws using php and ffmpeg [on hold]

    14 novembre 2016, par Nick Lynch

    I would like to be able to convert mov and avi to MP4 using Amazon web services with php and elastic beanstalk.
    However if you try and convert a large video using ffmpeg the server will time out, and the video will not save. I want to know if there is a way to do this. Possibly involves splitting the larger video into small pieces and converting each of the pieces, then combining the pieces. However even this takes too long to actually do on the server.

    Any help you can give would be greatly appreciated.

    Thank you !

  • Issue with running ffmpeg command using python in AWS Lambda function

    24 juillet 2021, par Puneet Pandey

    My use case is to concatenate the files using ffmpeg. I do it by specifying the S3 URLs (in a text file /tmp/files.txt) of the files to be concatenated.

    &#xA;

    Below is the command and and the way I run it using Python :

    &#xA;

    ffmpeg_cmd = "ffmpeg -f concat -safe 0 -protocol_whitelist file,http,https,tcp,tls -i /tmp/files.txt -c copy /tmp/output.mp4"&#xA;subprocess.run(ffmpeg_cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)&#xA;

    &#xA;

    The same Python file works perfectly fine when I run it on my Windows machine. But when it is run on AWS Lambda function, it fails. Please find below the error I get :

    &#xA;

    &#xA;

    "errorMessage" : "[Errno 2] No such file or directory : 'ffmpeg -f&#xA;concat -safe 0 -protocol_whitelist file,http,https,tcp,tls -i&#xA;/tmp/files.txt -c copy /tmp/output.mp4'", "errorType" :&#xA;"FileNotFoundError"

    &#xA;

    &#xA;

    Am I doing it the right way ? I suppose yes, as it works just fine on my Windows PC.

    &#xA;

    If someone faced this issue and fixed it, please help me with this issue.

    &#xA;