Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (86)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • 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

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

Sur d’autres sites (5307)

  • Use ffmpeg to modify single frame without remux ?

    6 février 2017, par 1337GameDev

    I am curious of a fast way to modify a video, slightly, as to force the video to hash differently than the source. I want to avoid changes to meta tags, as these are parsed from the container file and not the video data itself.

    I will be using a process to compare videos for analytical work, but the process requires the 2 inputs to have differing hashes for the video content (otherwise the analytical process yields odd results). I am testing an improvement on this process, and need to have very similar videos.

    I have currently just used a ffmpeg bash script and filtered a VERY light 2x2 pixel for the first second of the video (90% transparent) and this seems to do the trick as they hash differently, but it requires demux / remux of the video, which takes forever if I want to analyze a lot of videos.

    Is there a way, using ffmpeg, to simple modify a single frame (specified by a time value) and change a single pixel and just copy the rest of the video contents ?

  • FFmpeg single command to decode video by section

    31 juillet 2020, par Jing Wang

    I am new to FFmpeg command and need a single command to decode the whole video to frames separated by video section(0-2, 2-4, 4-6, 6-8, 8-10).

    


    I want to decode the video to yuv frames by 2 seconds section, by when I use the command as following : -ss 0 -i input.webm -t 2 -vf fps=15 -c:v rawvideo -pixel_format yuv420p out_%04d.tif for decoding 0-2 video section.
The above command reads whole video first instead of only process first 2 seconds. So when I do for loop for 0-2, 2-4, 4-6, 6-8, 8-10 sections, it takes a really long time to process.

    


    So I am wondering if there is a single command that directly decode video by section, in which it only needs to read the whole video once and save time for the whole process ?
Or is there a better command to improve speed for decoding only 0-2 section by only reading 0-2 section ?
The above command seems not be efficient enough.

    


  • convert two channels into a single channel with ffmpeg

    12 février 2019, par kutlus

    I have some .wav files and I would like to convert their frequency (fs) and number of channels (nchannels). I am using ffmpeg on a jupyter notebook, python3.6. I used the following command and it works.

    cmd= 'ffmpeg -i %s -ar %d -ac %d %s.wav'%(filepath,fs,nchannel,wavfilename)
    os.system(cmd)

    However, I dont know how does ffmpeg convert two channels into a single channel, probably takes an average of two signal ? I need to take the max of the two channels. I couldn`t see it in ffmpeg documentation. How can I achieve that ? thanks