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 (63)

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

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (9923)

  • Read packets from swf using ffmpeg ?

    29 mars 2012, par parvez

    The GetNextVideoPacket() method in ffmpeg allows us to recieve next video packet from the media source.

    ex- packet = source->GetNextVideoPacket() ;

    I would like to know if this works on shockwave file(swf) as well. Thus in above case can source be a swf file. If not then is there any other functionality which allows us to read swf in packets ?

    Thanks in advance.

  • FFMPEG - Audio going out of sync when using Tempo And setPTS

    5 février 2016, par loveforfire33

    Very new to ffmpeg and have been trying all day to get this working. I am trying to slow down a video and its audio at the same time (mp4). I have tried doing the audio and video separately with a very similar version of the code below but still get the same effect.

    The audio slowly goes out of sync with the video after roughly 30 seconds(audio goes faster). Any advice would be appreciated.

    -i "INPUT" -filter_complex "[0:v]setpts=1.1*PTS[v] ;[0:a]atempo=0.9[a]" -map "[v]"" -map "[a]" "OUTPUT"

    Thanks in advance

  • FFMPEG Merging Audio Drops out of source mp4

    23 décembre 2013, par Chris W

    I might be making this a little more complicated then it needs to be. I'd like to overlay a background mp3 over two mp4 files (one with an audio track and one without) The total video is 10 secs (7sec+3sec video). If the Background mp3 is 7 seconds or just long enough to play during the first video, The audio on the second video is clearly audible. If however the background mp3 stretches over the duration of both videos, the second video audio is lost.

    exec('ffmpeg -i intermediate.mp3 -i input.mp4 -filter_complex "amix=inputs=2" output.mp4) ;

    Thanks an advance !