Recherche avancée

Médias (0)

Mot : - Tags -/tags

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

Autres articles (46)

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

  • some of google drive mp4 files are not playing in jwplayer

    14 juin 2017, par dev

    I am working on to play the mp4 videos from google drive but I am facing the problem that some mp4 files are playing well while some mp4 files are not playing at all insteal "file not found" error shows.

    This is what I am doing.
    link :

    https://drive.google.com/file/d/0BwnSGB-C8mEGUmY2U1dhcVNiWjQ/view?usp=sharing

    My code is :

    jwplayer("player_embed").setup ({
         file:   "https://docs.google.com/uc?id=0BwnSGB-C8mEGUmY2U1dhcVNiWjQ",
         type:   "mp4",
         primary: "flash",
         image: image_link,
         width:  950,
         height: 370,
         tracks:[{
           file: subtitle_link,
           label: "English",
           kind : "captions",
           default: "true",
         }]
         });

    is there any mime type issue or something else I need to do ?
    is there any other player that can play videos,subtitles,image poster from google drive ?

  • Infrequent ffmpeg in Google Cloud

    17 février 2020, par suztomo

    Which service should I use for my Go program that runs ffmpeg in Google Cloud Platform ?

    The Go program downloads videos from my Google Cloud Storage and runs ffmpeg command to combine them into 5 minutes mp4 file. I use this program only around 10 times in a month.

    I thought of using a compute instance with GPU to get fast ffmpeg processing. However, because of infrequency of the invocation, I don’t want to run the pricey GPU instance for all the time. Cloud Run does not seem to support GPU.

    What service would you choose for such workload ?

  • FFMPEG Wrong color space with ProRes 4444 [closed]

    6 février 2020, par Mirza Kadic

    I’m unable to convert a video with ffmpeg in codec ProRes 4444 without color shift (something to do with colorspace). If I do quicktime png, color space stays the same, no problems with that.
    The only thing that fixes this is -vf colormatrix=bt601:bt709, but then I loose alpha channel, which I need of course.
    Any help would be appreciated.