Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (83)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

Sur d’autres sites (10505)

  • How to build FFmpeg 2.0 for android on linux ?

    4 août 2013, par Md. Arafat Al Mahmud

    I have downloaded and extracted android-ndk-r9 on my Ubuntu11.04. I want to build FFmpeg latest version which I have downloaded from here
    using git. I followed the procedure described here. I have replaced this script suggested there with this. But I got the following error :

    enter image description here

    How to resolve this issue or can you suggest me a better approach ?

  • ffmpeg output to another device

    16 juin 2017, par Eugene Alexeev

    I have a simple Java application which mapping the videostream from the video and sending it to the ios app over the socket connection. Here’s the ffmpeg command :

    ffmpeg -i 1.mp4 -map 0:0 output.mp4

    So far so good, but I need to cut down the time between convertation the video and getting it in the ios app. And basically my idea is - sending the output of ffmpeg command already onto device. I’m trying to do this by command :

    ffmpeg -i 1.mp4 -map 0:0 -f ffm tcp://192.168.0.106:1112/Documents/output.mp4

    Clearly I’m missing something, but I didn’t find much information for my case in the internet, so I simply don’t really know from what side I should approach this task. I’ve read something about ffserver but I did not get how to use it in my case. Any help and advice would be really appreciated ! Thanks.

  • Convert TS with closed captions into MKV/MP4 with sub title

    28 mars 2017, par Sudheesh

    I am trying to convert a TS file ( with US closed captions ) into MKV ( or MP4 ). Currently I am doing using a three step approach.

    Step-1 : Extract the subtitle in srt format.

    ffmpeg -f lavfi -i "movie=test.ts[out0+subcc]" -map s output.srt

    Step-2 : Transcode the TS into MKV

    ffmpeg i test.ts -vcodec libx264 -acodec copy out.mkv

    Step-3 : Add subtitle back to out.mkv

    ffmpeg -i out.mkv -i output.srt -acodec copy -vcodec copy -scodec copy final.mkv.

    I believe all these three steps can be combined in a single ffmeg command. Is there any way to do this ?.