Recherche avancée

Médias (91)

Autres articles (75)

  • 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" ;

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

Sur d’autres sites (7683)

  • Questions about shared objects through multithreading (Feat. FFmpeg)

    24 juillet 2018, par Junburg

    I am now working on the ability to combine cut and cut files every time a user requests a sound recording and a recorded file. Each time a user request comes in, a new thread performs the above process. But FFmpeg can only issue one command at a time, which is a problem.

    Here are some of the reasons I found : Creates a string array for the next command when the thread that is processing the command breaks the finish callback. In the meantime, it seems to be running FFmpeg on another thread. I tried to synchronize the getInstance method of FFmpeg to synchronize, or synchronized to the execute method, but the error was not resolved. How do you handle FFmpeg’s execute ? How do you approach it ?

    If there is anyone you know, I would like to thank you for your encouragement.

    Use open source library : https://github.com/WritingMinds/ffmpeg-android-java

    I can not post the code because of the character limit ...
    The onFinish callback is fired when you run the command to truncate the original mr file. At this time, we also perform a command to cut the voice of the singer. And once again the onFinish callback pops up, the user performs the task of joining the voice singer voice mr. It seems that other threads use FFmpeg between defining the command.

  • How to record/download m3u steam video from url using FFMPEG

    14 juin 2019, par gaurav gajjar

    I am trying to download video from m3u live stream but there is some part of video download

    in this m3u8 url return segments and this segments merge and give video but video length is like one request response segments , i am try to download steam url but only 15 sec video will download.

    how to continue download m3u8 using FFMPEG

    URL i will try to download or record

    http://cshms3.airtel.tv/PLTV/88888888/224/3221226049/index.m3u8

    String[] command = { "-y", "-i", INPUT_FILE,  "-vcodec", "mpeg4", "-b:v", "2097152", "-b:a", "48000", "-ac", "2", "-ar", "22050", dir.toString() + "/yourvideoname1.mp4"};
  • pthread : Remove lock/unlock pairs in worker loop to avoid unexpected state changes.

    22 mars 2012, par Aaron Colwell

    pthread : Remove lock/unlock pairs in worker loop to avoid unexpected state changes.