
Recherche avancée
Autres articles (50)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications 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, parCertains 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, parPré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 (5067)
-
Is it feasible to dynamically add specific headers to a single page within an Angular SPA application when served from the server ?
18 octobre 2024, par gokul mI'm concerned that since Angular's routing is handled client-side, this might not be directly possible or is it ?


I attempted to add headers on my local Angular server as follows :




 "options": {
 "headers": {
 "Cross-Origin-Embedder-Policy": "require-corp",
 "Cross-Origin-Opener-Policy": "same-origin"
 }
 }



This resulted in CORS errors for all app resources loading from different origins. Given that Angular routers operate client-side, I'm exploring options to achieve server-side rendering for a specific single page. I need to apply the above headers to that path both locally and when deploying with Cloudflare.


-
How to decode voip audio when G711 and G729 comes together in single stream ?
6 novembre 2015, par MaskI am developing a voip call recording system in c#. I have used ffmpeg.exe to decode the streams.
what i have done till now is that catch all incoming and outgoing rtp packets and write to sepperate files(only the payload part). And by ffmpeg i used to convert into mp3 each then mix both the incoming and outgoing audio.
And now i found out that in single stream both the g729 and g711 codecs are coming. The decoding commands are different for both the codecs.
So i need to decode both seperately. But i dont know how will i overcome this issue.
Can anyone suggest me a solution ?
I am using Wireshark to analyse the packets.
Edit
Below i added filter details
Is there any open source softwares for call recording other than oreca ?
Thank you.
-
Compress multiple video at same time or single process using ffmepg python
3 janvier 2023, par Fraction AnalyticsI create python code to list all mp4 files in a current directory using below code


compress.py


import os
rootdir = 'SUBASH'
extensions = ('.mp4', '.avi', '.wmv')

for subdir, dirs, files in os.walk(rootdir):
 for file in files:
 ext = os.path.splitext(file)[-1].lower()
 print(ext)
 if ext in extensions:
 print (os.path.join(subdir, file))



After listing all
.mp4
files how to compress all file at a time using python andffmpeg


I tried :


ffmpeg -i input.mp4 -vcodec libx265 -acodec copy output.mp4


I tried this method to compress single video at a time but i want to do same thing for all .mp4 files in a current or specific directory