Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (79)

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

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

  • Merging audio and video files both in mp4 format in python [duplicate]

    24 janvier 2021, par Anuj Dhillon

    This is my first question here.

    


    I am trying to write a script in python to download videos from reddit. In reddit both videos and audios are downloaded separately in mp4 format. I've managed to download both the audio and video files.

    


    Now I want to merge these files together. I know it can be done in python with ffmpeg but I have no idea how it works when the audio is in mp4 format. Any help would be appreciated.

    


  • How much video data is required to get stream information using ffprobe ?

    21 octobre 2014, par Mayank

    I am using java to download a video file from my cloud. Later on I am using java runtime to execute ffprobe on that video file. The video file size could be in hundreds of MBs. I want to know that can I make only a partial download of the video file (say around 10kb) and run ffprobe on this content and still get all relevant information ? If yes, how much data should be downloaded to guarantee successful ffprobe results ?

  • FFMPEG RTSP Streaming delay

    25 juillet 2016, par Spartan

    I am using FFMPEG with android and saving the RTSP Stream from my IP Camera to directly into local storage using following command :

    ffmpeg -i rtsp://@192.168.241.1:62156 -acodec copy -vcodec copy c:/abc.mp4

    This command is working fine and I am able to store RTSP directly into local storage of device.

    Problem : (The delay in start of the RTSP download)

    This problem mostly occurring with lower end devices and the delay time to start the download RTSP is variably changing(from 0-4 seconds) based upon the configuration of devices. In higher end devices the delay is around 100 to 300 milliseconds and that is okay.

    If somehow I can get the delay time in starting the RTSP download then I can handle my cases. So my question is : Is there any way to get the delay time ?