
Recherche avancée
Autres articles (86)
-
Publier sur MédiaSpip
13 juin 2013Puis-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 -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (6187)
-
WriteToUDP only works on local machine
26 mai 2017, par Anderson Scouto da SilvaThis script captures a flow entry by ffmpeg and writes to a UDP address.
The error is that it does not go to the internet, it only stays on the local machine.
It is not a problem in my internet network, because I made a stream through VLC and opened in another PC and it works normally, with the same parameters, but in this my script is only in the local PC.
Follow the pictures to help with the question :
package main
import (
"os/exec"
"io"
"net"
"log"
"fmt"
)
func main() {
// UDP connections
conn, err := net.ListenUDP("udp", &net.UDPAddr{IP: net.IPv4zero, Port: 0})
if err != nil {
log.Fatal(err)
}
// Set the write buffer on UDP
err = conn.SetWriteBuffer(40 * 1024)
if err != nil {
log.Fatal(err)
}
inputSource := "C:/Users/Administrador/GoglandProjects/CASEncoder/in/teste-4k.mp4"
// Starts ffmpeg capturing input
cmdName := "ffmpeg"
argsPipe1 := []string{
"-hide_banner",
"-loglevel", "panic",
"-re",
"-i",
inputSource,
"-preset",
"superfast",
"-c:v",
"h264",
"-crf",
"0",
"-c",
"copy",
"-f", "mpegts", "pipe:1",
}
cmdPipe1 := exec.Command(cmdName, argsPipe1...)
stdoutPipe1, err := cmdPipe1.StdoutPipe()
if err != nil {
log.Fatal(err)
}
err = cmdPipe1.Start()
if err != nil {
log.Fatal(err)
}
chunk := make([]byte, 40 * 1024)
for {
// reads the output pipe from ffmpeg
nr, err5 := stdoutPipe1.Read(chunk)
fmt.Printf("Readed %d bytes\n", nr)
if nr > 0 {
validData := chunk[:nr]
// write to UDP
nw, err := conn.WriteToUDP(validData, &net.UDPAddr{IP: net.IP{233, 10, 10, 13}, Port: 1234})
fmt.Printf("Writed %d bytes\n", nw)
if err != nil {
log.Fatal(err)
}
}
if err5 != nil {
// end of file
if err5 == io.EOF {
break
}
continue
}
}
} -
Form Analytics for Piwik now available : Find the pain points on your online forms to improve conversions
14 mars 2017, par InnoCraft — CommunityHi, this is Tom from InnoCraft, the company of the makers of Piwik Analytics. Do you hate losing your visitors on your online or intranet forms and leaving revenue on the table ? If you feel like us, we have got you covered. Form Analytics gives you all the insights you possibly need to increase your form conversion rates with 100% data ownership and no limits.
Whether it is a landing page, sign-up form, checkout, cart, squeeze page, feedback form, survey, or a job application form. Online forms have become super critical to all businesses. The problem is, you can only improve what you measure. Otherwise, you never really know what to change on your forms, and whether you make things better or worse.
-> Read the rest of the story on the Form Analytics Marketplace page.
What does the new Form Analytics reports look like ?
Form Analytics adds over 50 new metrics, 15 new reports & widgets, new real time reports, new segments and more to your Piwik.
To see more screenshots check out the Form Analytics preview or have a look at the Form Analytics website
Where do I get Form Analytics ?
Form Analytics is available on the Piwik Marketplace :
Form Analytics is a premium plugin for Piwik and comes with our 14 day money back guarantee and 1-click installation & updates (all product updates come for free).
You can also signup for a free Piwik Cloud-hosted trial to discover the power of Form Analytics !
-
deprecate AV_CODEC_ID_VOXWARE and introduce AV_CODEC_ID_METASOUND instead
6 août 2013, par Kostya Shishkov