Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (53)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

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

  • ffmpeg reverts audio volume even after removing the audio track

    7 avril 2023, par DniweTamp

    I tried making a simple batch file that separates and normalizes audio track, and merges it with the reencoded video track afterwards, but whenever I try to add the edited audio track back the volume just goes back to the original level.

    


    It happens specifically when I try to add the audio back to video, the volume level stays normalized if I reencode said audio to .aac or .ogg files, but when I try to add it to the video, even using -c:a copy, the volume just reverts to the original level

    


    Below is an image that shows the volume levels of audio tracks

    


    I detach audio, normalize it (result is top track), add it back to the video, and it becomes what's on the bottom (which is also the same volume as the original video's audio)
Normalized and quiet volume levels

    


    Here's the contents of my batch file, expected result was a reencoded video, with normalized audio

    


    I tried removing audio track with both -an and -map 0 -map -0:a, same result

    


    I can confirm that the normalize program does its job correctly, by checking volume levels in audacity

    


    ffmpeg -i %1 -y temp.wav
normalize.exe temp.wav
ffmpeg -i %1 -c:v libx264 -map 0 -map -0:a -profile:v main -pix_fmt yuv420p -movflags +faststart -preset medium -crf 22 -map_metadata -1 -y video.temp.mp4
ffmpeg -i %1 -i temp.wav -c:v copy -y video.h264.mp4
del temp.wav
del video.temp.mp4


    


    Edit : and here's the video file I tried this on.

    


  • ffserver select stream dynamically based on available streams

    11 octobre 2018, par prateekjain

    i have multiple feed and stream in ffserver.conf file. I have multiple live cameras. I want to select a stream from a list of available streams. I am using node.js and angularjs.

  • ffmpeg volume levels

    14 avril 2021, par josh joyer

    I AM USING WINDOWS

    


    I did recording camera,microphone and system sounds each separately with ffmpeg.

    


    ffmpeg -f dshow -i video="USB2.0 PC CAMERA" output.mkv


    


    Above code for camera recording.

    


    ffmpeg -f dshow -i audio="@device_cm_{33D9A762-90C8-11D0-BD43-00A0C911CE86}\wave_{5B4DB0B5-B645-4AFA-930D-4710AAF753DB}" output.wav


    


    And above for microphone.

    


    ffmpeg -f dshow -i audio="@device_cm_{33D9A762-90C8-11D0-BD43-00A0C911CE86}\wave_{ADECEC1D-C3CC-4BAE-8516-752251B8B63F}" output.mkv


    


    And above for system audio.

    


    I mixed system audio with microphone like below :

    


    ffmpeg -f dshow -i audio="@device_cm_{33D9A762-90C8-11D0-BD43-00A0C911CE86}\wave_{5B4DB0B5-B645-4AFA-930D-4710AAF753DB}" -f dshow -i audio="@device_cm_{33D9A762-90C8-11D0-BD43-00A0C911CE86}\wave_{ADECEC1D-C3CC-4BAE-8516-752251B8B63F}" -filter_complex amerge=inputs=2 stream.mp3


    


    BUT there is still issue to volume levels. How do I adjust sound volume levels
for each input or output file ?