Recherche avancée

Médias (0)

Mot : - Tags -/médias

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

Autres articles (35)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

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

Sur d’autres sites (4564)

  • UnsatisfiedLinkError for ffmpegutils in Android project

    6 octobre 2017, par Sandeep

    I have placed my libffmpegutils.so file inside :
    libs->armeabi

    Now when I try to process videos and the first thing I need to is load the ffmpeg and for that I have the code line :

    System.loadLibrary("ffmpegutils");

    And for that I get the crash :

    java.lang.RuntimeException:
     at android.os.AsyncTask$3.done (AsyncTask.java:309)
     at java.util.concurrent.FutureTask.finishCompletion (FutureTask.java:354)
     at java.util.concurrent.FutureTask.setException (FutureTask.java:223)
     at java.util.concurrent.FutureTask.run (FutureTask.java:242)
     at android.os.AsyncTask$SerialExecutor$1.run (AsyncTask.java:234)
     at java.util.concurrent.ThreadPoolExecutor.runWorker (ThreadPoolExecutor.java:1113)
     at java.util.concurrent.ThreadPoolExecutor$Worker.run (ThreadPoolExecutor.java:588)
     at java.lang.Thread.run (Thread.java:818)
    Caused by: java.lang.UnsatisfiedLinkError:
     at com.video.converter.util.VideoEngine.convertvideo (Native Method)
     at video.format.converter.view.ViewVideo$CompressTask.doInBackground (ViewVideo.java:384)
     at video.format.converter.view.ViewVideo$CompressTask.doInBackground (ViewVideo.java:1)
     at android.os.AsyncTask$2.call (AsyncTask.java:295)
     at java.util.concurrent.FutureTask.run (FutureTask.java:237)

    What does that mean and how to fix that crash ?

  • doc/ffmpeg : refine program title

    31 mars 2023, par Anton Khirnov
    doc/ffmpeg : refine program title
    

    It is a media converter, not just a video converter.

    • [DH] doc/ffmpeg.texi
  • ffmpeg add watermark by output part count (watermark1.png for part 1, ...)

    12 octobre 2020, par Steapy

    I have currently following code (not optimized yet !) :

    


    converter.StartInfo.Arguments = @"-i video.mp4 -i watermark.png -filter_complex ""overlay = x = (main_w - overlay_w) / 2:y = (main_h - overlay_h) / 2"" output%03d.mp4";


    


    This renders all my parts with the same "watermark.png" file as a watermark. But now i want to do something like this :

    


    converter.StartInfo.Arguments = @"-i video.mp4 -i watermark%03d.png -filter_complex ""overlay = x = (main_w - overlay_w) / 2:y = (main_h - overlay_h) / 2"" output%03d.mp4";


    


    "output000.mp4" has "watermark000.png" as a watermark,
"output001.mp4" has "watermark001.png" as a watermark,
"output002.mp4" has "watermark002.png" as a watermark, ...

    


    I need it in only one line, as if i would type it in cmd and it should work in c# with UseShellExecute=false.

    


    Any idea ?