Recherche avancée

Médias (91)

Autres articles (101)

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

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

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

  • android ffmpeg command lines

    10 avril 2014, par user3509984

    pls provide some tutorial to compile tat command in ffmpeg (sorry for my english) thanks in advance

    i am new android develop.i need to change video color like vintage ,sepia etc .i google many hours at last i found FFMPEG to achieve tat.i had command line for ffmpeg to convert video color ffmpeg -y -i /sdcard/videokit/in.mp4 -strict experimental -vf transpose=1 -s 160x120 -r 30 -aspect 4:3 -ab 48000 -ac 2 -ar 22050 -b 2097k /sdcard/videokit/out.mp4

    i need to know how to compile tat in android. pls provide some tutorial to achieve tat.

    i found one link tat command will work..but it give oly trai version... tat link is http://androidwarzone.blogspot.in/2011/12/ffmpeg4android.html

  • How to capture video of VIEW in android

    18 novembre 2015, par Mayur R. Amipara

    we can take screen-shot of particular VIEW programmatically in android same way i want to capture video of VIEW , is that possible ?

    i successfully run third party library ffmpeg but it doesn’t provide such functionality.

    Another way i tried it by taking so many screenshot of view each-second and combine it with ffmpeg , but it is to expensive and taking soooooo much time.

    FINAL QUESTIONS :

    i want to add text that is animating on video, any idea todo this ?

    currently get idea that i can animating textview in layout above video is playing in activity and capture that part of screen programatically, but i fail !

    iphone have functionality for adding text overlay with animation and it is called by AVComposition in iPhone. so, Android have such type of any functions or method ?... googled it for 5 days but not getting any result !

    sorry for my bad english, any point to suggest or any idea that how can i achieve this ?

  • Join videos without interruption with removing extra scenes automatically

    19 janvier 2014, par RarLines

    I've tens of splitted videos from a video.

    My english is poor so I will try explain with a simple example :

    The original video scenes like so: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14

    But I had never the original video. I've these videos :

    Video_1.part scenes: 1, 2, 3, 4, 5
    Video_2.part scenes: 5, 6, 7, 8, 9 (5 is extra !)
    Video_3.part scenes: 9, 10, 11, 12, 13, 14 (9 is extra !)

    When I try to concatenate (or join, merge, combine...etc) these videos with using ffmpeg, the scenes the output file are liked that :

    The output video scenes: 1, 2, 3, 4, 5, 5, 6, 7, 8, 9, 9, 10, 11, 12, 13, 14

    As you can see, when I watch the output video there are interruptions between videos.

    Is there any technical way to join videos without interruption (or nonstop, continuous...etc) ?

    Please note that, my example is so simple. I'm not sure that the splitted videos have regularly extra scenes. If I was sure, I could crop equally. Maybe the length of extra scenes are equal. But I couldn't check.

    Hope you will show an intelligent method. Thanks