Recherche avancée

Médias (0)

Mot : - Tags -/upload

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

Autres articles (74)

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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (12943)

  • ffmpeg, -shortest does not work when overlaying PNG sequence on a still

    27 août 2014, par Aviator Addis

    How do you make this work ?

    ffmpeg -loop 1 -i emma.jpg -r 29.97 -i source\source_%%05d.png -filter_complex overlay -r 29.97 -pix_fmt yuv420p -y -shortest sample_source.mp4

    It seems the -shortest option does not work and it just keeps encoding with no stop on the last frame. I’m using the latest static 8-27-2014 64 bit build on windows 8.1 If I assigned -t value it will stop at the specified length, but I need it’s output length set to whatever the sequence might happen to be (at it will vary).

  • ffmpeg - Have troubling syncing up audio and video together

    15 février 2017, par zyeek

    I have a webcam and a separate mic. I want to record what is happening.

    It almost works, however the audio seems to play quickly and parts missing while playing over the video.

    This is the command I am currently using to get it partially working

    ffmpeg -thread_queue_size 1024 -f alsa -ac 1 -i plughw:1,0 -f video4linux2 -thread_queue_size 1024 -re -s 1280x720 -i /dev/video0 -r 25 -f avi -q:a 2 -acodec libmp3lame -ab 96k out.mp4

    I have tried other arguments, but unsure if it has to do with the formats I am using or incorrect parameter settings.

    Also, the next part would be how to stream it. Everytime I try going through rtp it complains about multiple streams. I tried doing html as well, but didn’t like the format. html html://localhost:50000/live_feed or rts rts://localhost:5000

    edit :

    I am running this on a rpi 3.

  • FFMPEG on Heroku worker dynos takes too long - runs into timeout error

    26 janvier 2021, par John

    I am encoding a large video file that on my 5-year-old laptop runs at 7X and finishes in about 5 minutes. But with 2X worker dynos on heroku it cant even finish before the 4 hour background job time limit. I didn't have any issues until 2 days ago and now its causing lots of probelms. If I run heroku run rails console and run the job manually, I see it start at 7X but then quickly go down to 2X and then 0.5X speed. Anyone know what is causing this issue ?

    


    I'm encoding a VP8 webm file to MP4. If anyone knows a faster way to do this that might also fix this issue that would be great too !

    


    ffmpeg -y -i #{temp_webm_file.path} -movflags faststart -preset ultrafast #{temp_mp4_file.path}